Chinaunix首页 | 论坛 | 博客
  • 博客访问: 782921
  • 博文数量: 143
  • 博客积分: 2077
  • 博客等级: 大尉
  • 技术积分: 2393
  • 用 户 组: 普通用户
  • 注册时间: 2012-09-28 12:57
文章存档

2016年(2)

2015年(3)

2014年(3)

2013年(41)

2012年(94)

分类: LINUX

2014-09-23 15:35:54

修改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) |
给主人留下些什么吧!~~