#\!/bin/sh
gw=212.16.26.253
dev=eth0
newmac="00:00:00:00:00:15"
ifconfig $dev down;
ifconfig $dev hw ether $newmac
ifconfig $dev up
route add default gw $gw

