Author

Christopher Marshall (christopherlmarshall@yahoo.com)

Raw Notes on Bluetooth

# procedure for PC-to-PC bluetooth networking
# I am not sure what the difference between GN and NAP is
A:
   hciconfig hci0 up
   hcid
   sdpd
   modprobe bnep
   pand --listen --master --role GN 
B:
   hciconfig hci0 up
   hcid
   sdpd
   modprobe bnep
   hcitool scan
   (note BT address)
   pand --connect $BT
A: 
   ifconfig bnep0 10.2.0.1 netmask 255.255.255.0 up
B:
   ifconfig bnep0 10.2.0.2 netmask 255.255.255.0 up
   ping 10.2.0.1
# shutdown procedure
B:
   pand --killall
A:
   (cntl-C pand command)

hopeless_linux: RawNotes/bluetooth (last modified 2007-07-01 16:01:00)