You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
361 B
6 lines
361 B
CONFIG_PARTITION="$(grep "VCTL" /proc/mtd | cut -d: -f1)"
|
|
MAC1="$(strings /dev/$CONFIG_PARTITION |grep MAC|cut -d: -f2|cut -c3-14|sed -e 's,\(..\),:\1,g' -e 's,^:,,')"
|
|
MAC2="$(strings /dev/$CONFIG_PARTITION |grep MAC|cut -d: -f8|cut -c3-14|sed -e 's,\(..\),:\1,g' -e 's,^:,,')"
|
|
|
|
ifconfig eth0 hw ether $MAC1 2>/dev/null
|
|
ifconfig eth1 hw ether $MAC2 2>/dev/null
|
|
|