I want to sniff packets between bluetooth keyboard and computer and analyse with wireshark.What setup I need to have to see the packet transfer via bluetooth/ble?
Asked
Active
Viewed 846 times
1 Answers
3
You have some different options.
Use an air sniffer such as https://www.nordicsemi.com/Products/Development-tools/nrf-sniffer-for-bluetooth-le. See their documentation for more info.
If you are on Windows, you can use USBPcap (https://desowin.org/usbpcap/). That will sniff usb traffic to/from your Bluetooth controller which includes the hci packets, which will indicate what's being sent over Bluetooth.
If you're on Linux, just run "sudo btmon" to print all hci packets to the console. Not really Wireshark based though.

Emil
- 16,784
- 2
- 41
- 52
-
1There's also the [Adafruit Bluetooth LE Sniffer](https://www.adafruit.com/product/2269). – Christopher Maynard Aug 11 '22 at 15:04