1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-11-22 16:00:36 +02:00

nanonote-fiels: wpan add command config another ben

This commit is contained in:
Xiangfu Liu 2011-11-08 23:37:55 +08:00
parent 19577b0918
commit 649037ab6e

View File

@ -10,13 +10,22 @@ insmod spi_atben.ko
cd ${HOME}
iz add wpan-phy0
ip link set wpan0 address de:ad:be:af:ca:fe:ba:be
if [ "$1" == "2" ]; then
ip link set wpan0 address de:ad:be:af:ca:fe:ba:b2
else
ip link set wpan0 address de:ad:be:af:ca:fe:ba:b1
fi
ifconfig wpan0 up
rm -f /tmp/lease
izcoordinator -d 1 -l /tmp/lease -i wpan0 -p 0x777 -s 1 -c 11
if [ "$1" == "2" ]; then
iz assoc wpan0 777 1 11 short
izchat 777 1 8001
#dirtpan 777 1 8001 'ifconfig tun0 10.8.0.1 dstaddr 10.8.0.2 up'
izchat 777 8001 1
#dirtpan 777 8001 1 'ifconfig tun0 10.8.0.2 dstaddr 10.8.0.1 up' &
else
rm -f /tmp/lease
izcoordinator -d 1 -l /tmp/lease -i wpan0 -p 0x777 -s 1 -c 11 &
izchat 777 1 8001
#dirtpan 777 1 8001 'ifconfig tun0 10.8.0.1 dstaddr 10.8.0.2 up' &
fi