修改IP地址
#ifconfig eth0 down
#ifconfig eth0 192.168.1.1 netmask 255.255.255.0
以上方法修改IP,重启系统后就失效了。
想永久修改,修改下列文件:
/etc/sysconfig/network-scripts/
将ifcfg-eth0地址修改。
一块网卡添加两个IP地址:
#ifconfig eth0:1 192.168.1.1 netmask 255.255.255.0
#ifconfig eth0:2 192.168.1.2 netmask 255.255.255.0
修改MAC地址
#ifconfig eth0 down
#ifconfig eth0 hw ether 1234567890ab
这也是临时修改,要想永久修改,则在以下文件里加上
/etc/rc.d/rc.local(或者/etc/init.d/network)
ifconfig eth0 down
ifconfig eth0 hw ether 1234567890ab
ifconfig eth0 up
阅读(2444) | 评论(0) | 转发(0) |