发布网友 发布时间:2022-04-23 10:16
共1个回答
热心网友 时间:2023-10-11 06:45
这里要主意,不要指定单个网卡的IP 地址、子网掩码或网卡 ID。将上述信息指定到虚拟适配器(bonding)中即可。
[root@rhas-13 network-scripts]# cat ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=dhcp
[root@rhas-13 network-scripts]# cat ifcfg-eth1
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=dhcp
vi /etc/moles.conf
加入下列两行
alias bond0 bonding
options bond0 miimon=100 mode=1追问我之前就有修改,没用,而且你写错了,是modprobe.conf
追答试试关闭iptables和selinux
我改的是/etc/modprobe.d/dist.conf
还修改了/etc/rc.local 增加了 ifenslave bond0 eth0 eth1
以下是我的配置,我只在vmware11里测试centos6.6 x86_成功了
cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=none
IPV6INIT=no
USERCTL=no
MASTER=bond0
SLAVE=yes
cat /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=none
IPV6INIT=no
USERCTL=no
MASTER=bond0
SLAVE=yes
cat /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=none
IPADDR=192.168.1.98
GATEWAY=192.168.1.1
DNS1=8.8.8.8
DNS2=114.114.114.114
NETMASK=255.255.255.0
IPV6INIT=no
USERCTL=no