Linux下多网卡冗余的实现(4)

[root@linuxidc network-scripts]# lsmod | grep bonding bonding 128245 0 8021q 25349 1 bonding ipv6 317340 282 bonding,ip6t_REJECT,nf_conntrack_ipv6,nf_defrag_ipv6

说明网卡冗余已经起效了。

最后再把这个配置做到rc.local下,开机启动:

#!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in here if you don't # want to do the full Sys V style init stuff. touch /var/lock/subsys/local ifensalve bond0 eth0 eth1 eth2 #添加

四、总结

如果是在物理机上面做测试是非常方便的,比如绑定4个网卡eth0-3

那么4跟网线都接上了,然后ping着网关。你只要不是4跟网线都拔完,随机的拔掉3根都不会影响它的连通性。

这就是冗余容错的效果,1根网线100M的话。插上4根就是400M的出口流量了。

注意:配置的时候看清楚参数

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/13105.html