给网卡绑定多个ip的两种方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给网卡绑定多个ip的两种方法相关的知识,希望对你有一定的参考价值。
1,通过ifconfig命令
绑定:
ifconfig eth0:1 172.31.21.224 broadcast 172.31.31.255 netmask 255.255.240.0
查看:
ifconfig
解绑:
ifconfig eth0:1 del 172.31.21.224
2,ip命令
绑定:
ip addr add 172.31.21.224/20 dev eth0
查看:
ip addr
解绑:
ip addr delete 172.31.21.224/20 dev eth0
提示:通过ip命令绑定的ip通过ifconfig查看不到
本文出自 “一直在路上” 博客,请务必保留此出处http://chenql.blog.51cto.com/8732050/1910984
以上是关于给网卡绑定多个ip的两种方法的主要内容,如果未能解决你的问题,请参考以下文章