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