|
|
2006-11-30
, 03:29
|
|
Posts: 14 |
Thanked: 1 time |
Joined on Jan 2006
@ Hamburg, Germany
|
#11
|
|
|
2006-11-30
, 05:55
|
|
|
Posts: 103 |
Thanked: 31 times |
Joined on Sep 2006
@ US
|
#12
|
|
|
2006-11-30
, 11:25
|
|
|
Posts: 3,220 |
Thanked: 326 times |
Joined on Oct 2005
@ "Almost there!" (Monte Christo, Count of)
|
#13
|
|
|
2006-11-30
, 11:42
|
|
Posts: 162 |
Thanked: 3 times |
Joined on Jun 2006
|
#14
|
It worked, but don't expect the kind of range you get from a router (I used a USB WiFi adapter): the connection was only marginally better than typical Bluetooth ranges.
|
|
2006-11-30
, 13:59
|
|
|
Posts: 3,220 |
Thanked: 326 times |
Joined on Oct 2005
@ "Almost there!" (Monte Christo, Count of)
|
#15
|
Ah, so I was right about the range? I was kinda wondering how that turned out for you.
|
|
2006-11-30
, 14:06
|
|
Posts: 20 |
Thanked: 0 times |
Joined on Nov 2006
|
#16
|
|
|
2006-11-30
, 14:25
|
|
|
Posts: 11,700 |
Thanked: 10,045 times |
Joined on Jun 2006
@ North Texas, USA
|
#17
|
|
|
2006-11-30
, 16:37
|
|
|
Posts: 103 |
Thanked: 31 times |
Joined on Sep 2006
@ US
|
#18
|
Not that this relates to the original problem, but someone mentioned bridging two network cards in Linux.
I use a free firewall program called Firestarter. It's GUI based and makes bridging cards in Linux a point-and-click experience. I use it to get my 770 on the internet thru a USB Bluetooth device on a Linux box that's hard wired to a LAN.
|
|
2006-12-01
, 15:14
|
|
Posts: 20 |
Thanked: 0 times |
Joined on Nov 2006
|
#19
|
slax nokia # cat ./dinoBluecomputer.sh
#!/bin/sh
hciconfig hci0 up
sleep 5
pand -s -r NAP
echo "Start the Nokia and hit a key to continue."
read key
./dinoBluecomputer2.sh
echo "Now run firestarter."
slax nokia # cat dinoBluecomputer2.sh
#!/bin/sh
ifconfig bnep0 192.168.2.1 netmask 255.255.255.0 broadcast 192.168.2.255
slax nokia # cat ./dinoBlueUp.sh
#!/bin/sh
# use gainroot to become root and relaunch itself
if [ `id -u` != 0 ] ; then
#if not already root, call itself as root
sudo gainroot <<EOF
$0 $*
EOF
exit
fi
# real script follows
BTADDR='xx:xx:xx:xx:xx:xx'
IP=192.168.2.2
GW=192.168.2.1
NS=192.168.2.1
IFACE=bnep0
#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
slax nokia # cat ./dinoBlueDown.sh
#!/bin/sh
# use gainroot to become root and relaunch itself
if [ `id -u` != 0 ] ; then
#if not already root, call itself as root
sudo gainroot <<EOF
$0 $*
EOF
exit
fi
# real script follows
echo -n '' >/tmp/resolv.conf.lo
pand -K
sleep 1
rmmod bnep
|
|
2007-01-29
, 22:13
|
|
Posts: 72 |
Thanked: 8 times |
Joined on Jan 2007
|
#20
|
The reason is probably that WiFi cards/USB sticks are geared towards reception, as uploads are generally less important to the typical user.
The problem is the antenna. There's not really anything about a wireless card that can be done to make it prefer reception or sending, but cards tend to have more craptastic antennas that routers.