centos批量设置 多个ip

一个网卡多个ip
第一个ip的配置如
ifcfg-eth13

DEVICE=eth13
TYPE=Ethernet
ONBOOT=yes
IPADDR=218.16.123.28
NETMASK=255.255.252.224
GATEWAY=218.16.123.1

绑定的多个ip如:
ifcfg-eth13:2

DEVICE=eth13:2
TYPE=Ethernet
ONBOOT=yes
NETMASK=255.255.252.224
GATEWAY=218.16.123.1

以此类推
之后开机启动
ifconfig eth13:2 218.16.123.23 255.255.255.224

 

或者写个shell脚本:

#!/bin/bash
ifconfig eth0:3 123.249.80.3
ifconfig eth0:4 123.249.80.4
ifconfig eth0:5 123.249.80.5
ifconfig eth0:6 123.249.80.6
ifconfig eth0:7 123.249.80.7
ifconfig eth0:8 123.249.80.8
ifconfig eth0:9 123.249.80.9
ifconfig eth0:10 123.249.80.10

……

文章分类 shell

发表评论

邮箱地址不会被公开。 必填项已用*标注

*