HCI命令

HCI 命令

bthci_cmd.opcode == 0x0401 Bluetooth HCI Command - Inquiry

bthci_evt.code == 0x0f

bthci_evt.code == 0x2f Extended Inquiry Result (EIR)

bthci_cmd.opcode == 0x0402 Inquiry Cancel

bthci_evt.code == 0x0e Inquiry Cancel

bthci_evt.code == 0x3e LE Extended Advertising Report | LE Enhanced Connection Complete | LE Read Remote Features Complete

bthci_cmd.opcode == 0x2011 Sent LE Add Device To White List

bthci_cmd.opcode == 0x0c12 Delete Stored Link Key

bthci_cmd.opcode == 0x2043 LE Extended Create Connection

bthci_cmd.opcode == 0x2016 LE Read Remote Features

btsmp.opcode == 0x01 Pairing Request

btsmp.opcode == 0x02 Pairing Response

btsmp.opcode == 0x0c Sent | Rcvd Pairing Public Key

btsmp.opcode == 0x03 Rcvd Pairing Confirm

btsmp.opcode == 0x04 Sent Pairing Confirm

btsmp.opcode == 0x0d Sent | Rcvd Pairing DHKey Check

bthci_cmd.opcode == 0x2019 LE Start Encryption (0x2019)

btsmp.opcode == 0x08 Sent | Rcvd Identity Information

btsmp.opcode == 0x09 Sent | Rcvd Identity Address Information

bthci_cmd.opcode == 0x202d LE Set Address Resolution Enable

bthci_cmd.opcode == 0x2027 LE Add Device to Resolving List

bthci_cmd.opcode == 0x2012 LE Remove Device From White List

bthci_cmd.opcode == 0x204e LE Set Privacy Mode

bthci_cmd.opcode == 0x0405 Create Connection

bthci_evt.code == 0x03 Event Connect Complete

bthci_evt.code == 0x05 Event Disconnect Complete

bthci_cmd.opcode == 0x200e LE Create Connection Cancel

wireshark HCI过滤:

bthci_cmd.opcode == 0x2042 || bthci_cmd.opcode == 0x0c05 || bthci_cmd.opcode.ogf == 0x08 || bthci_cmd.opcode == 0x0405 || bthci_evt.code == 0x03 || bthci_evt.code == 0x05 || bthci_cmd.opcode == 0x2043 || bthci_evt.code == 0x0e || bthci_evt.code == 0x0f || bthci_evt.code == 0x0c || (bthci_evt.code == 0x3e && bthci_evt.bd_addr == 4c:99:92:0a:13:7a) || btsmp || bthci_evt.code == 0x2f || bthci_cmd.opcode == 0x0401 || bthci_cmd.opcode == 0x0402 || bthci_cmd.opcode == 0x0c05|| bthci_cmd.opcode == 0x0c12 || bthci_cmd.opcode == 0x2011

相关推荐
2301_7737303117 小时前
网络编程—TCP传输控制协议
服务器·网络·tcp/ip
云老大TG:@yunlaoda36017 小时前
华为云国际站代理商DAS的跨境合规适配是如何保障数据合规的?
网络·数据库·华为云
TG:@yunlaoda360 云老大17 小时前
华为云国际站代理商DAS的跨境合规适配在游戏出海场景中的应用
服务器·网络·游戏·华为云
没有bug.的程序员18 小时前
熔断、降级、限流:高可用架构的三道防线
java·网络·jvm·微服务·架构·熔断·服务注册
知新坊18 小时前
飞牛NAS 没有公网 IP?使用它让 NAS 访问、文件远程像在局域网
网络·网络协议·tcp/ip
emma羊羊18 小时前
【AWVS】漏扫工具
网络·安全·web安全·awvs
山风wind19 小时前
IP地址、子网掩码与网络连通性:从入门到精通
网络·tcp/ip·php
qq_2546177719 小时前
LLCE、PFE模块,二层交换/桥接的通用学习转发机制
网络
Felven20 小时前
盛科工业千兆网交换机丢包问题解决
网络·交换机·丢包·盛科
fengyue011020 小时前
C++使用epoll实现高并发tcp服务
linux·服务器·网络·c++