主页 > 新闻中心 > 在centos(linux)中添加单个ip和批量添加多个ip地方法

在centos(linux)中添加单个ip和批量添加多个ip地方法

管理员 新闻中心 2022年03月27日

一、添加单个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重启网络服务即可!

广告位