相信自己,只有不想做的,没有做不到的。
分类: LINUX
2013-12-13 10:36:01
//配置MAC
ifconfig eth0 down
ifconfig eth0 hw ether D6:53:5D:EA:1C:09 //更改MAC地址
ifconfig eth0 up
//配置IP-GW-DNS
ifconfig eth0 192.168.1.8 netmask 255.255.255.0 up //配置IP地址
ifconfig eth0 up //激活,关闭设备eth0
route add default gw 192.168.1.1 //配置默认网关
暂时配置dns解析
echo "nameserver 192.168.1.1">> /etc/resolv.conf