Reputation: 39
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?
Upvotes: 1
Views: 2010
Reputation: 18452
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.
Upvotes: 3