![]() |
2007-07-16
, 00:43
|
Posts: 2 |
Thanked: 0 times |
Joined on Jul 2007
|
#12
|
![]() |
2007-07-16
, 01:14
|
Posts: 83 |
Thanked: 3 times |
Joined on Feb 2007
|
#13
|
![]() |
2007-07-16
, 03:30
|
|
Posts: 5,478 |
Thanked: 5,222 times |
Joined on Jan 2006
@ St. Petersburg, FL
|
#14
|
![]() |
2007-07-16
, 03:36
|
|
Posts: 729 |
Thanked: 19 times |
Joined on Mar 2007
|
#15
|
![]() |
2007-07-16
, 12:03
|
Posts: 107 |
Thanked: 4 times |
Joined on Apr 2007
|
#16
|
I thought I read somewhere that the script for the 770 can be used to tether the PAN for the 800 but you don't need to use ins mod line because it was already compiled into the kernel.
Everything I read was that out of the box neither the 770 nor the 800 can tether via PAN without running this script posted on this board.
This is the script I am using w/ the 770:
#!/bin/sh
PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11'
BTADDR='Cingular Blackjack Bluetooth Mac Address'
IP=192.168.0.170
GW=192.168.0.1
NS=192.168.0.1
IFACE=bnep0
hciconfig hci0 up
#insmod just to be sure
insmod /mnt/initfs/lib/modules/current/bnep.ko
#start PAN Bluetooth connection
pand --connect $BTADDR
# wait for the interface created by pand
s=60
echo -n "Waiting $s secs for $IFACE"
while [ $s -gt 0 ] ; do
ifconfig $IFACE >/dev/null 2>&1 && break
s=$((s-1))
echo -n "."
sleep 1
done
echo
if ifconfig $IFACE >/dev/null 2>&1 ; then
# bring it up
echo "OK, bringing $IFACE up"
ifconfig $IFACE $IP up
route add default gw $GW
echo "nameserver $NS" >/tmp/resolv.conf.lo
else
echo "Error: $IFACE not available."
fi
![]() |
2007-07-24
, 17:40
|
|
Posts: 51 |
Thanked: 7 times |
Joined on Jul 2007
@ Powell, OH
|
#17
|
![]() |
2007-07-25
, 20:07
|
Posts: 28 |
Thanked: 4 times |
Joined on Jun 2007
|
#18
|
![]() |
2007-07-25
, 22:06
|
|
Posts: 51 |
Thanked: 7 times |
Joined on Jul 2007
@ Powell, OH
|
#19
|
How did you convert it to Quad band? I got one, and it's three band..
Thanks!
![]() |
2007-07-25
, 22:13
|
Posts: 28 |
Thanked: 4 times |
Joined on Jun 2007
|
#20
|
thanks!