Linux环境下填加多个IP段在同一网卡

1. 原IP配置文件

[root@UE-LOCAL-126 network-scripts]# cat ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=10.0.0.126
NETMASK=255.255.255.0
GATEWAY=10.0.0.1

2. 新加IP段1

[root@UE-LOCAL-126 network-scripts]# cat ifcfg-eth0-range0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR_START=10.0.1.111
IPADDR_END=10.0.1.115
CLONENUM_START=0
GATEWAY=10.0.1.1
NETMASK=255.255.255.000
NO_ALIASROUTING=yes

3. 新加IP段2

[root@UE-LOCAL-126 network-scripts]# cat ifcfg-eth0-range1
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR_START=10.0.0.116
IPADDR_END=10.0.0.119
CLONENUM_START=5(注意:对应eth0:5)
GATEWAY=10.0.0.1
NETMASK=255.255.255.000
NO_ALIASROUTING=yes

在远程操作时,要用network restart命令。

万不可用如ifdown ifcfg-eth0-range1, 这样会down掉设备eth0,造成断网。 

相关推荐