diff options
| author | Mike Baker <mbm@openwrt.org> | 2004-05-11 03:02:52 +0000 |
|---|---|---|
| committer | Mike Baker <mbm@openwrt.org> | 2004-05-11 03:02:52 +0000 |
| commit | 9c5ee8b2bb446b1152b37b33f8cf807e93f3ad86 (patch) | |
| tree | 05d6b3ecd9a10059d9ec341b2ac8473272ff86b4 | |
| parent | 737bf41346a164084cc8a7dc7eb1c8fadf174ac6 (diff) | |
| download | upstream-9c5ee8b2bb446b1152b37b33f8cf807e93f3ad86.tar.gz upstream-9c5ee8b2bb446b1152b37b33f8cf807e93f3ad86.tar.bz2 upstream-9c5ee8b2bb446b1152b37b33f8cf807e93f3ad86.zip | |
set the wireless 2 mac addresses higher than ethernet
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rwxr-xr-x | root/etc/functions.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/root/etc/functions.sh b/root/etc/functions.sh index 4e96ad77ca2..8befcde51ec 100755 --- a/root/etc/functions.sh +++ b/root/etc/functions.sh @@ -28,9 +28,13 @@ if_valid () ( return $? ) +mac () { + echo $2|awk -F ":" '{for(x=6,y='$1';x;x--){y+=int("0x"$x);$x=sprintf("%02x",y%256);y/=256}gsub(" ",":");print$0}' +} wifi () ( debug "### wifi $1 ###" if=$(awk 'gsub(":","") {print $1}' /proc/net/wireless) + $DEBUG ifconfig $if hw ether $(mac 2 $(nvram get et0macaddr)) $DEBUG wlconf $if $1 ) |
