RHEL 5.11
我运行重新启动命令:/etc/init.d/networking restart
然后它就坐在那里,直到我不得不强制退出:
15:09:11 # /etc/init.d/network restart
Shutting down interface bond0:
地位:
15:08:40 # /etc/init.d/network status
Configured devices:
lo bond0 eth0 eth1 eth2 eth3
Currently active devices:
lo eth0 eth1 eth2 eth3 bond0
唯一的变化是我复制ifcfg-bond0
到三个新的子接口bond0:0
,bond0:1
和bond0:2
答案1
您需要编辑/etc/modprobe.conf
以加载绑定模块:
vi /etc/modprobe.conf
添加以下行
alias bond0 bonding
alias bond1 bonding
配置您的以太网接口(4 个配置文件)
vi /etc/sysconfig/network-scripts/ifcfg-ethX
就像下面的例子:
DEVICE=ethX
USERCTL=no
ONBOOT=yes
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
替换ethX
为eth0
, ...eth3
配置绑定
您需要创建两个绑定接口 bond0(eth0 和 eth2)和 bond1(eth1、eth3)
/etc/sysconfig/network-scripts
在与以太网接口相同的情况下创建 bond0 和 bond1 脚本。
touch /etc/sysconfig/network-scripts/ifcfg-bond0
touch /etc/sysconfig/network-scripts/ifcfg-bond1
类型:vi /etc/sysconfig/network-scripts/ifcfg-bond0
像这样:
DEVICE=bond0
BOOTPROTO=none
ONBOOT=yes
USERCTL=no
BONDING_OPTS=”max_bonds=2 miimon=100 mode=2 primary=eth0″
NETMASK=255.255.255.0
IPADDR=192.168.0.1
编辑bond1
vi /etc/sysconfig/network-scripts/ifcfg-bond1
就像下面的例子:
DEVICE=bond1
BOOTPROTO=none
ONBOOT=yes
TYPE=Ethernet
USERCTL=no
BONDING_OPTS=”max_bonds=2 miimon=100 mode=2 primary=eth1″
NETMASK=255.255.255.0
IPADDR=192.168.0.2
重新启动初始化
/etc/init.d/network restart
答案2
您可以使用:
/etc/init.d/networking force-reload