Improved the enable correct wifi fix for dir300 and set fixed mac address on wrt54gs mesh bridge

This commit is contained in:
floh1111 2011-11-05 11:46:07 +00:00
parent dabde80ecf
commit 0cce4f911d
3 changed files with 11 additions and 4 deletions

View File

@ -4,6 +4,8 @@ config 'wifi-device' 'wifi0'
option 'channel' '6'
option 'bgscan' '0'
option 'diversity' '1'
#enable correct wifi led https://forum.openwrt.org/viewtopic.php?id=29714
option 'softled' '0'
config 'wifi-iface'
option 'device' 'wifi0'

View File

@ -23,7 +23,7 @@ net.bridge.bridge-nf-call-arptables=0
net.bridge.bridge-nf-call-ip6tables=0
net.bridge.bridge-nf-call-iptables=0
#Enable the correct wifi led on dir300 (only apply this to dir300!)
#Enable the correct wifi led on dir300 (only apply this to dir300!) https://forum.openwrt.org/viewtopic.php?id=29714
dev.wifi0.ledpin=2
dev.wifi0.softled=1

View File

@ -2,9 +2,14 @@
# the system init finished. By default this file does nothing.
#set fixed mac address on br-mesh so that the ipv6 addres does not change after every reboot
HARDWARE_MACADDR=`ifconfig -a br-mesh | grep 'HWaddr' | awk '{ print $5}'`
uci set network.mesh.macaddr=$HARDWARE_MACADDR
uci commit
HARDWARE_MACADDR_ETH0=`ifconfig -a eth0 | grep 'HWaddr' | awk '{ print $5}'`
HARDWARE_MACADDR_MESH=`ifconfig -a br-mesh | grep 'HWaddr' | awk '{ print $5}'`
if [[ "$HARDWARE_MACADDR_ETH0" != "$HARDWARE_MACADDR_MESH" ]]; then
uci set network.mesh.macaddr=$HARDWARE_MACADDR_ETH0
uci commit
reboot
fi
ifconfig br-mesh down
ifconfig br-mesh up