diff options
Diffstat (limited to 'docs/idevicebtlogger.1')
-rw-r--r-- | docs/idevicebtlogger.1 | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/docs/idevicebtlogger.1 b/docs/idevicebtlogger.1 new file mode 100644 index 0000000..98a723f --- /dev/null +++ b/docs/idevicebtlogger.1 | |||
@@ -0,0 +1,60 @@ | |||
1 | .TH "idevicebtlogger" 1 | ||
2 | .SH NAME | ||
3 | idevicebtlogger \- Capture HCI traffic of a connected device. | ||
4 | .SH SYNOPSIS | ||
5 | .B idevicebtlogger | ||
6 | [OPTIONS] | ||
7 | <FILE> | ||
8 | |||
9 | .SH DESCRIPTION | ||
10 | |||
11 | Capture HCI traffic of a connected device. Requires Bluetooth logging profile to be installed on device with iOS 13 or higher. See https://www.bluetooth.com/blog/a-new-way-to-debug-iosbluetooth-applications/ for iOS device configuration. | ||
12 | |||
13 | The HCI traffic can be stored in Apple's native PacketLogger format or converted into PCAP format for live feedback in Wireshark. | ||
14 | |||
15 | .SH OPTIONS | ||
16 | .TP | ||
17 | .B \-u, \-\-udid UDID | ||
18 | target specific device by UDID | ||
19 | .TP | ||
20 | .B \-n, \-\-network | ||
21 | connect to network device | ||
22 | .TP | ||
23 | .B \-f, \-\-format FORMAT | ||
24 | set log format: PacketLogger (default), or pcap | ||
25 | .TP | ||
26 | .B \-x, \-\-exit | ||
27 | exit when device disconnects | ||
28 | .TP | ||
29 | .B \-d, \-\-debug | ||
30 | enable communication debugging | ||
31 | .TP | ||
32 | .B \-h, \-\-help | ||
33 | prints usage information | ||
34 | .TP | ||
35 | .B \-v, \-\-version | ||
36 | prints version information. | ||
37 | |||
38 | .SH EXAMPLES | ||
39 | .TP | ||
40 | .B idevicebtlogger \-u 00008030\-0000111ABC000DEF | ||
41 | Capture HCI traffic of device with UDID 00008030-0000111ABC000DEF. | ||
42 | .TP | ||
43 | .B idevicebtlogger \-x | ||
44 | Capture HCI traffic of device and exit when the device is unplugged. | ||
45 | .TP | ||
46 | .B idevicebtlogger \-f pcap | ||
47 | Capture HCI traffic of device in PCAP format. | ||
48 | .TP | ||
49 | .B idevicebtlogger -f pcap - | wireshark -k -i - | ||
50 | Capture HCI traffic and pipe it into Wireshark for live feedback. | ||
51 | |||
52 | .SH AUTHORS | ||
53 | Geoffrey Kruse | ||
54 | |||
55 | Matthias Ringwald | ||
56 | |||
57 | .SH ON THE WEB | ||
58 | https://libimobiledevice.org | ||
59 | |||
60 | https://github.com/libimobiledevice/libimobiledevice | ||