
hciconfig の機能の下にリストされている 16 進コードが何を意味するのか、どこにも見つけることができません。どの機能がどの 16 進コードに対応するかを示すリストがどこにあるか知っている人はいませんか?
Output:
$ hciconfig -a hci0 features
hci0: Type: BR/EDR Bus: USB
BD Address: 00:0E:8E:49:38:9D ACL MTU: 820:8 SCO MTU: 255:16
Features page 0: 0xff 0xfb 0xff 0xfe 0xdb 0xff 0x7b 0x87
<3-slot packets> <5-slot packets> <encryption> <slot offset>
<timing accuracy> <role switch> <hold mode> <sniff mode>
<park state> <RSSI> <SCO link> <HV2 packets> <HV3 packets>
<u-law log> <A-law log> <CVSD> <paging scheme> <power control>
<transparent SCO> <broadcast encrypt> <EDR ACL 2 Mbps>
<EDR ACL 3 Mbps> <enhanced iscan> <interlaced iscan>
<interlaced pscan> <inquiry with RSSI> <extended SCO>
<EV4 packets> <EV5 packets> <AFH cap. slave>
<AFH class. slave> <LE support> <3-slot EDR ACL>
<5-slot EDR ACL> <sniff subrating> <pause encryption>
<AFH cap. master> <AFH class. master> <EDR eSCO 2 Mbps>
<EDR eSCO 3 Mbps> <3-slot EDR eSCO> <extended inquiry>
<LE and BR/EDR> <simple pairing> <encapsulated PDU>
<err. data report> <non-flush flag> <LSTO> <inquiry TX power>
<EPC> <extended features>
Features page 1: 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x00
答え1
例えば次のようになります:http://exploiterz.blogspot.com/2013/08/how-to-anonymize-bluetooth-devices-on.html
hci0 または hci(x) は Bluetooth デバイスの名前であり、コマンドを使用して利用可能なすべてのデバイスを取得できます。$ hciconfig
ただし、そのうちの 1 つを選択した場合は、次のコマンドを使用してそのデバイスの情報を表示できますhciconfig -a hcix
。また、質問で入力したコマンドを使用して、$ hciconfig hci0 features
Bluetooth デバイスでサポートされているすべての機能を表示する機能も表示できます。
たとえば、「3 スロット パケット」や「インターレース pscan」の意味を知りたい場合、これらはデバイスでサポートされている機能ですが、これらの機能の詳細を知るには、Bluetooth 開発者向けのフォーラムがあります。https://developer.bluetooth.org/Pages/default.aspx
さらに詳しい情報が得られます。