View Single Post
Posts: 2,154 | Thanked: 8,464 times | Joined on May 2010
#5
Here are commands how to change mac address only with standard linux tools which are installed everywhere now:

Code:
$ ip link set dev "$interface" down
$ ip link set dev "$interface" address "$mac_address"
$ ip link set dev "$interface" up
or

Code:
$ ifconfig "$interface" down
$ ifconfig "$interface" hw ether "$mac_address"
$ ifconfig "$interface" up
 

The Following 9 Users Say Thank You to pali For This Useful Post: