ViewTool Hollong BLE Sniffer Support Linux OS Introduction

1。 Download Software:
http://www.viewtool.com/index.php/en/22-2016-07-29-02-11-32/205-hollong-bluetooth-4-0-4-1-4-2-ble-sniffer-analyzer-software?%20%20%20%20option=com_content
Under Linux,download latest version and copy to working dir.
Before running software, must have:
* Hardware:search "ViewTool Hollong BLE Sniffer" in ebay, amazon, or from this link: 
https://www.amazon.com/ViewTool-Professional-Bluetooth-Protocol-Wireshark/dp/B075K38YT2/ref=sr_1_fkmr0_1_a_it?ie=UTF8&qid=1530462231&sr=8-1-fkmr0&keywords=viewtool+hillsong+ble+sniffer
* software: Wireshark 
After above hardware and software ready,press “ctrl+alt+t”  to enter terminal, authorize super user permission by command “su " , input password, then type: ./start.sh to start up:ble_sniffer

2. On ble_sniffer main page ,click ”start" (top left triangle) , then Wireshark will start running,if pop up message box mentioned "no permission..", please ignore it and click “OK” to continue, then Wireshark will start to run as followling pictures:

3。Here is one example of Wireshark version(2.4.6)working with Ubuntu 18.04

4。BLE SNIFFER will list discovered BLE devices,select one or more device on right box(or click “select" to select all devices),Wireshark willl display captured advertising data(Before Wireshark captured advertising data, please do not have BLE master/slave device connected because BLE Sniffer need advertising data and connection request info to tracking all BLE signals after connection done),after Wireshark shows advertising data correctly, BLE master device could connect with slave device。
Important notice: if found missing data packet or not easy to captured the data after connection, please put master / slave devices closer (suggestion is less than 50cm),and put sniffer between them to improve reliability of capturing data;

5。One example of captured BLE4.2 long package,MTU  = 247 (in one PDU)(type in "btatt" in input box of Wireshark to display ATT package only,to ignore advertising and empty packet), Hollong BLE Sniffer support standard BLE4.2 up to MTU=251 bytes per PDU。

6。NOTIFICATOIN PDU from slave device

7。MTU request PDU(response PDU followed):MTU = 247 bytes

Linux version of ViewTool Hollong BLE Sniffer demo:
https://youtu.be/Dz8VIEYezcc
Example of captured BLE4.2 data (viewed by Wireshark):

参考文档:

1 http://viewtool.com/forum/forum.php?mod=viewthread&tid=144

ViewTool Hollong BLE Sniffer Support Linux OS Introduction的更多相关文章

  1. wchar_t string on Linux, OS X and Windows

    Making wchar_t work on Linux, OS X and Windows for CMarkup release 10.1 I learned a couple of humble ...

  2. Automatic logon configuration on Linux OS

    Automatic logon configuration on Linux OS 1. Regarding to DSA: a) ssh-keygen -t dsa  b) cat ~/.ssh/i ...

  3. Linux OS共享文件

    背景: 相较于windows.unix等OS,Linux因为其开源.安全.稳定.性能优越等优点,已越来越受到互联网的青睐.而我们在学习和使用Linux也就会考虑到Linux机器和我们日常用的windo ...

  4. node js linux / OS 安装

    rm -rf 删除文件夹名字rm -rf 软连接名称 1.安装taryum install -y tar 3. 下载node https://nodejs.org/en/download/ 4. 拷贝 ...

  5. LINUX OS 正常关机失败

    描述:LINUX OS运行命令shutdown now显示:Telling INIT to go to single user mode....   解决方法:运行命令exit重新登录,再运行 hal ...

  6. SQL Server on Linux: How? Introduction: SQL Server Blog

    SQL Server Blog Official News from Microsoft’s Information Platform https://blogs.technet.microsoft. ...

  7. Intel baytrail-t support Linux?

    点击这里查看文章 有空试试---唉... Ubuntu (Linux) on Atom Z3700 Series ASUS Transformer Book T100 is particularly ...

  8. Netty源码细节-accept、read(Linux os层 + Netty层代码细节)(转)

    原文:http://budairenqin.iteye.com/blog/2215899 这篇分析一下accept的细节, 我觉得网络IO相关开发很多时候不能仅仅局限于java层, 尤其从accept ...

  9. 清除Linux OS 缓存

    1.查看内存使用情况 [root@ip---- tpch_2_17_0]# free -m total used free shared buffers cached Mem: -/+ buffers ...

随机推荐

  1. Mysql 事务及其原理

    Mysql 事务及其原理 什么是事务 什么是事务?事务是作为单个逻辑工作单元执行的一系列操作,通俗易懂的说就是一组原子性的 SQL 查询.Mysql 中事务的支持在存储引擎层,MyISAM 存储引擎不 ...

  2. 误区以为父组件render一次,子组件会重新初始化

    初学react的时候我有一个误区,以为父组件render的一次,会将子组件先卸载,再将子组件重新初始化,事实证明不是. 这是对react生命周期函数不太清楚. 父子组件都初始化后,父组件再render ...

  3. JS数组去掉某一个元素

    /**数组去掉某一个元素**/ Array.prototype.remove = function(val) { var index = this.indexOf(val); if (index &g ...

  4. shell中字典的一个用法示例

    1. shell中字典的用法示例, 数组用法同字典 2. 以上使用sell配合字典实现的功能, 使用awk能轻松搞定, 如下: awk '{print $2}' file.txt | sort | u ...

  5. 在ASP.NET中备份数据库以及还原(不成熟)

    using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threa ...

  6. Jedis & spring-data-redis

    当我们了解了redis的五大数据类型,手动去敲一敲每个数据类型对应的命令,无论是再来看jedis,还是spring-data-redis都是很轻松的,他们提供的API都是基于原生的redis命令,可读 ...

  7. Java面试必备:手写单例模式

    面试官:请手写下几种常见的单例模式 我:好的(面带微笑),心里暗喜(送分题). 没成想提笔便写出了如此豪放的代码,不堪回首,请原谅我的不羁! 此篇整理了几种常见的单例模式代码示例,再有面试官让手撕单例 ...

  8. spring boot项目记录--日志处理

    微信点餐用到的日志框架:slf4j(门面)+logback(框架) @RunWith(SpringRunner.class) @SpringBootTest @Slf4j public class L ...

  9. Sql sever DateDiff 函数

    函数: DATEDIFF(datepart,startdate,enddate) 具体实例: --相差年数 结果0 SELECT DATEDIFF(yy,'2008-12-29','2008-12-1 ...

  10. JavaWeb问题记录——SessionIdGeneratorBase.createSecureRandom

    JavaWeb问题记录——SessionIdGeneratorBase.createSecureRandom 摘要:本文主要记录了在启动Tomcat时,出现的一个警告以及解决办法. 部分内容来自以下博 ...