[root@Server001 ~]# cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
[root@Server001 network-scripts]# ifconfig -a
bond0: flags=5123 mtu 1500inet 192.168.30.122 netmask 255.255.255.0 broadcast 192.168.30.255ether a6:ad:e5:84:f0:6e txqueuelen 1000 (Ethernet)RX packets 0 bytes 0 (0.0 B)RX errors 0 dropped 0 overruns 0 frame 0TX packets 0 bytes 0 (0.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0eth0: flags=4163 mtu 1500inet 192.168.3.55 netmask 255.255.255.0 broadcast 192.168.3.255inet6 fe80::2a6e:d4ff:fe89:8720 prefixlen 64 scopeid 0x20ether 28:6e:d4:89:87:20 txqueuelen 1000 (Ethernet)RX packets 2256 bytes 439140 (428.8 KiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 428 bytes 68770 (67.1 KiB)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0eth1: flags=4163 mtu 1500inet6 fe80::2a6e:d4ff:fe8a:3299 prefixlen 64 scopeid 0x20ether 28:6e:d4:8a:32:99 txqueuelen 1000 (Ethernet)RX packets 1617 bytes 386452 (377.3 KiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 7 bytes 586 (586.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0eth2: flags=4163 mtu 1500inet6 fe80::2a6e:d4ff:fe88:f490 prefixlen 64 scopeid 0x20ether 28:6e:d4:88:f4:90 txqueuelen 1000 (Ethernet)RX packets 1617 bytes 386452 (377.3 KiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 7 bytes 586 (586.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0lo: flags=73 mtu 65536inet 127.0.0.1 netmask 255.0.0.0inet6 ::1 prefixlen 128 scopeid 0x10loop txqueuelen 1000 (Local Loopback)RX packets 0 bytes 0 (0.0 B)RX errors 0 dropped 0 overruns 0 frame 0TX packets 0 bytes 0 (0.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
[root@Server001 ~]# cd /etc/sysconfig/network-scripts/
[root@Server001 network-scripts]# ls
ifcfg-bond0 ifdown-eth ifdown-ppp ifdown-tunnel ifup-ippp ifup-post ifup-TeamPort network-functions-ipv6
ifcfg-eth0 ifdown-ippp ifdown-routes ifup ifup-ipv6 ifup-ppp ifup-tunnel
ifcfg-lo ifdown-ipv6 ifdown-sit ifup-aliases ifup-isdn ifup-routes ifup-wireless
ifdown ifdown-isdn ifdown-Team ifup-bnep ifup-plip ifup-sit init.ipv6-global
ifdown-bnep ifdown-post ifdown-TeamPort ifup-eth ifup-plusb ifup-Team network-functions
[root@Server001 network-scripts]# cp ifcfg-eth0 ifcfg-eth1
[root@Server001 network-scripts]# cp ifcfg-eth0 ifcfg-eth2
[root@Server001 network-scripts]# cp ifcfg-eth0 ifcfg-bond0
[root@Server001 network-scripts]# cat ifcfg-bond0
DEVICE=bond0
BOOTPROTO=none
TYPE=bond0
ONBOOT=yes
IPADDR=192.168.30.122
NETMASK=255.255.255.0
[root@Server001 network-scripts]# cat ifcfg-eth1
DEVICE=eth1
BOOTPROTO=none
TYPE=Ethernet
MASTER=bond0
SLAVE=yes
[root@Server001 network-scripts]# cat ifcfg-eth2
DEVICE=eth2
BOOTPROTO=none
TYPE=Ethernet
MASTER=bond0
SLAVE=yes
[root@node network-scripts]# vim /etc/modprobe.d/bonding.conf
[root@node network-scripts]# cat /etc/modprobe.d/bonding.conf
alias bond0 bonding
options bonding mode=1 miimon=100
注:关于mode的说明
mode=0 //平衡循环
mode=1 //主备
mode=3 //广播
mode=4 //链路聚合
systemctl stop NetworkManager
systemctl disable NetworkManage
[root@Server001 network-scripts]# lsmod |grep bonding
[root@Server001 network-scripts]# modprobe bonding
[root@Server001 network-scripts]# lsmod |grep bonding
bonding 152656 0
systemctl restart network
[root@Server001 network-scripts]# ifconfig
bond0: flags=5187 mtu 1500inet 192.168.30.122 netmask 255.255.255.0 broadcast 192.168.30.255inet6 fe80::2a6e:d4ff:fe8a:3299 prefixlen 64 scopeid 0x20ether 28:6e:d4:8a:32:99 txqueuelen 1000 (Ethernet)RX packets 2426 bytes 748394 (730.8 KiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 13 bytes 838 (838.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0eth0: flags=4163 mtu 1500inet 192.168.3.55 netmask 255.255.255.0 broadcast 192.168.3.255inet6 fe80::2a6e:d4ff:fe89:8720 prefixlen 64 scopeid 0x20ether 28:6e:d4:89:87:20 txqueuelen 1000 (Ethernet)RX packets 2853 bytes 740694 (723.3 KiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 478 bytes 75189 (73.4 KiB)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0eth1: flags=6211 mtu 1500ether 28:6e:d4:8a:32:99 txqueuelen 1000 (Ethernet)RX packets 2229 bytes 689858 (673.6 KiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 13 bytes 838 (838.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0eth2: flags=6211 mtu 1500ether 28:6e:d4:8a:32:99 txqueuelen 1000 (Ethernet)RX packets 2243 bytes 690766 (674.5 KiB)RX errors 0 dropped 0 overruns 0 frame 0TX packets 0 bytes 0 (0.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0lo: flags=73 mtu 65536inet 127.0.0.1 netmask 255.0.0.0inet6 ::1 prefixlen 128 scopeid 0x10loop txqueuelen 1000 (Local Loopback)RX packets 0 bytes 0 (0.0 B)RX errors 0 dropped 0 overruns 0 frame 0TX packets 0 bytes 0 (0.0 B)TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
[root@Server001 network-scripts]# cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: eth1
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0Slave Interface: eth1
MII Status: up
Speed: Unknown
Duplex: Unknown
Link Failure Count: 0
Permanent HW addr: 28:6e:d4:8a:32:99
Slave queue ID: 0Slave Interface: eth2
MII Status: up
Speed: Unknown
Duplex: Unknown
Link Failure Count: 0
Permanent HW addr: 28:6e:d4:88:f4:90
Slave queue ID: 0
ping 192.168.30.122
[root@Server001 network-scripts]# ifdown eth1
[root@Server001 network-scripts]#
可以正常ping通
当前活动网卡已经切换到eth2,eth2网卡提供服务
[root@Server001 network-scripts]# cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: eth2
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0Slave Interface: eth2
MII Status: up
Speed: Unknown
Duplex: Unknown
Link Failure Count: 0
Permanent HW addr: 28:6e:d4:88:f4:90
Slave queue ID: 0
[root@Server001 network-scripts]# ifup eth1
[root@Server001 network-scripts]# ifdown eth2
可以正常ping通
当前活动网卡已经切换到eth1,eth1网卡提供服务
[root@Server001 network-scripts]# cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: eth1
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0Slave Interface: eth1
MII Status: up
Speed: Unknown
Duplex: Unknown
Link Failure Count: 0
Permanent HW addr: 28:6e:d4:8a:32:99
Slave queue ID: 0