1.一块网卡分配多个IP
vim ifcfg-eth2-range0
DEVICE=eth2
IPADDR_START=192.168.0.1
IPADDR_END=192.168.0.10
NETMASK=255.255.255.0
CLONENUM_START="1"
2.路由信息:route -n
netstat -rn
写入配置文件
vim route_ethx
ADDRESS0=
NETMASK0=
GATEWAY0=
ADDRESS1=
NETMASK1=
GATEWAY1=
3.多块网卡公用一个IP
modeprobe bonging
alias bond0 bonding
vim ifcfg-bond0
DEVICE=bond0
IPADDR=
NETMASK=
GATEWAY=
ONBOOT=YES
BOOTPROTO=static
BONDING_OPTS="mode=1 miimon=50"
接下来,配置网卡
vim ifcfg-eth1
DEVICE=eth1
MASTER=bond0
SLAVE=YES
ONBOOT=YES
vim ifcfg-eth2
DEVICE=eth2
MASTER=bond0
SLAVE=YES
ONBOOT=YES
阅读(974) | 评论(0) | 转发(0) |