-rwxr-xr-x | bin/NS2SetMac.sh | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/bin/NS2SetMac.sh b/bin/NS2SetMac.sh index 51810ae..e6111c7 100755 --- a/bin/NS2SetMac.sh +++ b/bin/NS2SetMac.sh | |||
@@ -1,2 +1,6 @@ | |||
1 | # store/set MAC address for given interface | 1 | # this script is part of networksettings2 package |
2 | # purpose : set fixed MAC address for network devices that | ||
3 | # have random addresses (like usb) | ||
4 | # | ||
5 | |||
2 | NS2MacStore=/etc/NS2 | 6 | NS2MacStore=/etc/NS2 |
@@ -6,3 +10,3 @@ NS2MacStore=/etc/NS2 | |||
6 | if [ -z "$1" ] | 10 | if [ -z "$1" ] |
7 | then | 11 | then |
8 | exit 0 | 12 | exit 0 |
@@ -10,6 +14,10 @@ fi | |||
10 | 14 | ||
11 | if [ -f ${NS2MacStore}/$1.mac ] | 15 | if [ -f ${NS2MacStore}/$1.mac ] |
12 | then | 16 | then |
13 | # set this mac | 17 | # set this mac |
14 | /sbin/ifconfig $1 hw ether `cat ${NS2MacStore}/$1.mac` | 18 | X=`cat ${NS2MacStore}/$1.mac` |
19 | if [ ! -z "$X" ] | ||
20 | then | ||
21 | /sbin/ifconfig $1 hw ether $X | ||
22 | fi | ||
15 | else | 23 | else |
@@ -19,3 +27,7 @@ else | |||
19 | X=${X%% *} # remove trailing spaces | 27 | X=${X%% *} # remove trailing spaces |
20 | echo ${X} > ${NS2MacStore}/$1.mac | 28 | if [ ! -z "$X" ] |
29 | then | ||
30 | # valid mac address | ||
31 | echo ${X} > ${NS2MacStore}/$1.mac | ||
32 | fi | ||
21 | fi | 33 | fi |