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

ip命令使用(常用)

时间:2016-12-19 00:40:49      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:address   ip   link   

link:

  ip link show  #查看网卡信息

  ip link show eth0 #查看指定网卡信息 使用-s可以查看详细信息

 ip link set eth0 {up,down} #打开或关闭指定的网卡

当想要改变网卡名称时,必须先关闭网卡,以eth0为例

 ip link set eth0 down

  ip link set eth0 name eth100 #改名为eth100

  ip link set eth100 up

使用ip link show 对应mac的eth0以变为eth100,改回来的方式同样


address:

  ip address show

添加虚拟网卡

  ip address add 192.168.1.2/24 broadcast 192.168.1.255 dev eth0 label test

删除虚拟网卡

  ip address del 192.168.1.2/24 dev eth0 

 ip address show eth0  #查看是否已经删除   

     

route:

   ip route show

   ip route add default via 192.168.31.1 dev eth0 #添加默认路由

也可用route add target netmask gw gateway

  ip route add 192.168.40.0/24 dev eth0 via 192.168.31.1

   route add default gw 192.168.31.1 #default 即为 destination


本文出自 “笔记屋” 博客,请务必保留此出处http://plstomato.blog.51cto.com/11994222/1883773

ip命令使用(常用)

标签:address   ip   link   

原文地址:http://plstomato.blog.51cto.com/11994222/1883773

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