温厚谦和
me09
全部博文(408)
技术动态(2)
2011年(1)
2010年(2)
2009年(1)
2008年(3)
2007年(7)
2006年(394)
AYK
三月的木
Wxy09020
cynthia
Bsolar
浪花小雨
powerriv
Anzyfly
hechen97
silverwo
分类: LINUX
2006-07-21 09:29:19
一、修改MAC地址方法linux环境下:需要用 #ifconfig eth0 down 先把网卡禁用 再用ifconfig eth0 hw ether 1234567890ab 这样就可以改成功了
要想永久改就这样在/etc/rc.d/rc.local里加上这三句(也可以在/etc/init.d/network里加下面三行)ifconfig eth0 downifconfig eth0 hw ether 1234567890ab ifconfig eht0 up
二、修改IP地址的方法#ifconfig ethe0 down#ifconfig ethe0 192.168.169.245 netmask 255.255.255.0以上的方法下次启动时就无效了如果要以后每次都生效则加入到以下文件里面在/etc/sysconfig/network-scripts/下修改ifcfg-eth0地址
三、一块网卡添加两个ip地址
ifconfig eth0:1 192.168.1.1 netmask 255.255.255.0ifconfig eth0:2 192.168.1.2 netmask 255.255.255.0
以上是对网卡eth0修改了两个IP地址的方法
上一篇:非常经典的UNIX系统调优的文章-强烈推荐
下一篇:如何保护自己编写的shell程序
登录 注册