您的位置:首页 > 其它

一块网卡绑定多个IP地址

2011-10-23 00:00 197 查看
Ubuntu版本
常常我们有需要一个网卡象windows一样设置多个IP。

下面我们看看在ubuntu下怎么样做.

我们先打开网络接口的文件

sudo gedit /etc/network/interfaces

照上边eth0添加eth0:0

auto eth0
iface eth0 inet static
name Ethernet Lan card
address 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1

auto eth0:0
iface eth0:0 inet static
name Ethernet

address 192.168.1.2
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1

重启服务

sudo /etc/init.d/networking restart
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: