码迷,mamicode.com
首页 > 其他好文 > 详细

ip、ifconfig命令与IP(转)

时间:2018-01-29 15:52:12      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:second   cond   strong   ifconfig   ip add   ipa   ip命令   config   div   

Q:问题的要求就是在linux下不重新情况下,如何临时增加一个IP及临时删除一个IP ?

A:该问题除了可以通过ifconfig命令完成外,也可以通过ip命令完成,不过两者是有区别的。ifconfig 要加子接口,ip 不用

我常用的命令:

ip addr add 1.1.1.1/24 dev eth0 

keepalived 我猜 也是引用了这个命令:

(inet 192.168.1.6/24 scope global secondary eth0
inet 192.168.1.7/24 scope global secondary eth0)


virtual_ipaddress {
192.168.1.6/24
192.168.1.7/24

 

也可以是这样:

ifconfig  

ifconfig eth0:1 192.168.10.198 netmask 255.255.255.0 up

2、ip命令删除一个IP
[root@localhost ~]# ip addr del 192.168.10.199/24 dev eth0 


三、路由配置

增加路由

 

 

route add -net 192.168.6.0/24 gw 192.168.101.254
route add default gw 192.168.101.254

http://www.361way.com/ifconfig-ip-ip/1835.html

ip、ifconfig命令与IP(转)

标签:second   cond   strong   ifconfig   ip add   ipa   ip命令   config   div   

原文地址:https://www.cnblogs.com/hixiaowei/p/8376531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!