Path: blob/main/usr.sbin/bluetooth/hcsecd/hcsecd.conf
103499 views
# $Id: hcsecd.conf,v 1.1 2003/05/26 22:50:47 max Exp $1#2# HCI security daemon configuration file3#4# Format:5#6# device {7# option value ;8# }9#10# Possible options and values11#12# Options Values13# ----------------------------------14# bdaddr xx:xx:xx:xx:xx:xx ; - remote device BD_ADDR15# name "any char" ; - to set user friendly device name16# key 0x11223344 | nokey ; - to set link key for the device17# pin "secret" | nopin ; - to PIN code for the device18#19# Notes:20#21# Currently there is no way to select keys/PIN code based on which22# local device received the request. Everything is based on remote23# device BD_ADDR.24#25# "nokey" means that no link key has been defined and we should26# send Link_Key_Negative_Reply command to the device.27#28# "nopin" means that no PIN code has been defined and we should29# send PIN_Code_Negative_Reply command to the device30#3132# Default entry is applied if no better match found33# It MUST have 00:00:00:00:00:00 as bdaddr34device {35bdaddr 00:00:00:00:00:00;36name "Default entry";37key nokey;38pin nopin;39}4041device {42bdaddr 00:01:02:03:04:05;43name "Dummy";44key nokey;45pin "0000";46}4748device {49bdaddr 00:11:22:33:44:55;50name "Dummy";51key 0x00112233445566778899aabbccddeeff; # 16 bytes key (hex string)52pin nopin;53}54555657