1# 2# $Id: hcsecd.conf,v 1.1 2002/11/24 20:22:39 max Exp $ 3# $FreeBSD$ 4# 5# HCI security daemon configuration file 6# 7# Format: 8# 9# device { 10# option value ; 11# } 12# 13# Possible options and values 14# 15# Options Values 16# ---------------------------------- 17# bdaddr xx:xx:xx:xx:xx:xx ; - remote device BD_ADDR 18# name "any char" ; - to set user friendly device name 19# key 0x11223344 | nokey ; - to set link key for the device 20# pin "secret" | nopin ; - to PIN code for the device 21# 22# Notes: 23# 24# Currently there is no way to select keys/PIN code based on which 25# local device received the request. Everything is based on remote 26# device BD_ADDR. 27# 28# "nokey" means that no link key has been defined and we should 29# send Link_Key_Negative_Reply command to the device. 30# 31# "nopin" means that no PIN code has been defined and we should 32# send PIN_Code_Negative_Reply command to the device 33# 34 35# Default entry applied if no better match found 36# It MUST have 00:00:00:00:00:00 as bdaddr 37device { 38 bdaddr 00:00:00:00:00:00; 39 name "Default entry"; 40 key nokey; 41 pin nopin; 42} 43 44device { 45 bdaddr 00:80:37:5e:4d:d4; 46 name "Ericsson T68 phone"; 47 key nokey; 48 pin "0000"; # PIN code (string up to 16 character) 49} 50 51device { 52 bdaddr 00:01:03:fc:6e:ec; 53 name "3COM PCCARD"; 54 key nokey; 55 pin "0000"; 56} 57 58device { 59 bdaddr 00:11:22:33:44:55; 60 name "Dummy"; 61 key 0x00112233445566778899aabbccddeeff; # 16 bytes key (hex string) 62 pin nopin; 63} 64 65