vi /etc/network/interfaces
会显示如下:
Java代码
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 207.210.118.56 netmask 255.255.255.224 broadcast 207.210.118.63 network 207.210.118.32 gateway 207.210.118.33
添加新行
Java代码
auto eth0:1
在这行下面
Java代码
auto eth0
添加新的interface信息
Java代码
iface eth0:1 inet static address 207.210.118.58 netmask 255.255.255.224 broadcast 207.210.118.63 network 207.210.118.32 gateway 207.210.118.33
检查MASK和网关是否正确
添加完毕, 会显示如下
Java代码
auto lo iface lo inet loopback auto eth0 auto eth0:1 iface eth0 inet static address 207.210.118.56 netmask 255.255.255.224 broadcast 207.210.118.63 network 207.210.118.32 gateway 207.210.118.33 iface eth0:1 inet static address 207.210.118.58 netmask 255.255.255.224 broadcast 207.210.118.63 network 207.210.118.32 gateway 207.210.118.33
之后重启网络
/etc/init.d/networking restart
本文URL地址:http://www.bianceng.cn/OS/Linux/201410/45338.htm
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索代码
, auto
, broadcast
, network
eth0
ubuntu添加ip、ubuntu重新获取ip、ubuntu 重新分配ip、ubuntu如何添加新用户、ubuntu 添加新用户,以便于您获取更多的相关知识。
时间: 2024-10-03 19:21:51