hciconfig命令来自于英文词组”HCI config“的缩写,其功能是用于配置蓝牙设备。HCI全称为”Host Controller Interface“,中文译为主机控制接口,是蓝牙协议栈的一部分。
语法格式:hciconfig [参数] [设备]
常用参数:
-a | 显示蓝牙设备信息 |
up | 开启蓝牙设备 |
down | 关闭蓝牙设备 |
reset | 重置蓝牙设备 |
pscan | 启用页面扫描,禁用查询扫描 |
参考实例
查看当前系统中全部的蓝牙设备信息:
[root@linuxcool ~]# hciconfig -a
开启指定名称的蓝牙设备:
[root@linuxcool ~]# hciconfig hci0 up
关闭指定名称的蓝牙设备:
[root@linuxcool ~]# hciconfig hci0 down
重置指定名称的蓝牙设备:
[root@linuxcool ~]# hciconfig hci0 reset