一、添加单个ip地址:
在/etc/sysconfig/network-scripts/中新建文件ifcfg-eth0:*,*为数字序号,多个ip则依次增大
以0为例,建立文件ifcfg-eth0:0
cd /etc/sysconfig/network-scripts/
vi ifcfg-eth0:0
输入内容格式:
device=eth0:0
type=ethernet
onboot=yes
bootproto=static
ipaddr=要添加绑定的ip地址
netmask=子网掩码
gateway=网关地址
二、批量添加多个ip地址:
在/etc/sysconfig/network-scripts/中新建文件ifcfg-eth0-range0
vi /etc/sysconfig/network-scripts/ifcfg-eth0-range0
输入以下文件内容格式:
device=eth0
onboot=yes
bootproto=static
ipaddr_start=起始ip地址
ipaddr_end=结束ip地址
clonenum_start=0
gateway=网关地址
netmask=子网掩码
no_aliasrouting=yes
保存后,运行service network restart重启网络服务即可!