# Defaults for bluez-utils # This file supersedes /etc/default/bluez-pan. If # that exists on your system, you should use this # file instead and remove the old one. Until you # do so, the contents of this file will be ignored. ############ HIDD # # To have Bluetooth mouse and keyboard support, get the # Linux 2.6.6 patch or better from bluez.org, and set # HIDD_ENABLED to 1. HIDD_ENABLED=0 HIDD_OPTIONS="--server" # to make hidd always use a particular interface, use something # like this, substituting the bdaddr of the interface: # HIDD_OPTIONS="-i AA:BB:CC:DD:EE:FF --server" ############ COMPATIBILITY WITH OLD BLUEZ-PAN # Compatibility: if old PAN config exists, use it # rather than this file. if test -f /etc/default/bluez-pan; then . /etc/default/bluez-pan return fi ############ ############ DUND # # Run dund -- this allows ppp logins. 1 for enabled, 0 for disabled. DUND_ENABLED=1 # Arguments to dund: defaults to acting as a server #DUND_OPTIONS="--listen --persist" # Run dund --help to see the full array of options. # Here are some examples: # # Connect to any nearby host offering access # DUND_OPTIONS="--search" # # Connect to host 00:11:22:33:44:55 # DUND_OPTIONS="--connect 00:11:22:33:44:55" # # Listen on channel 3 # DUND_OPTIONS="--listen --channel 3" # Special consideration is needed for certain devices. Microsoft # users see the --msdun option. Ericsson P800 users will need to # listen on channel 3 and also run 'sdptool add --channel=3 SP' DUND_OPTIONS="--listen --channel 3 call p900-incoming" ############ PAND # # Run pand -- ethernet: creates new network interfaces bnep # that can be configured in /etc/network/interfaces # set to 1 for enabled, 0 for disabled PAND_ENABLED=0 # Arguments to pand # Read the PAN howto for ways to set this up # http://bluez.sourceforge.net/contrib/HOWTO-PAN PAND_OPTIONS="" # example pand lines # # Act as the controller of an ad-hoc network # PAND_OPTIONS="--listen --role GN" # # Act as a network access point: routes to other networks # PAND_OPTIONS="--listen --role NAP" # # Act as a client of an ad-hoc controller with number 00:11:22:33:44:55 # PAND_OPTIONS="--role PANU --connect 00:11:22:33:44:55" # # Connect to any nearby network controller (access point or ad-hoc) # PAND_OPTIONS="--role PANU --search"