首页 > 代码库 > bond

bond

 1.bond 网络

    *链路聚合

    *作用:主动备份模式 一次只能只能使用一个接口,如果接口故障,另一个会接替它

    命令:nmcli connection add con-name bond0 ifname bond0 type bond mode active-backup ip4 172.25.254.100/24   ##添加主动备份模式的bond0,ip为172.25.254.100

技术分享

     命令:nmcli connection add con-name eth0 ifname eth0 type bond-slave master bond0 ##给bond0网络添加接口


    测试

    观测命令:watch -n 1 cat /proc/net/bonding/bond0 

           ifconfig eth0 down ##让eth0故障

技术分享

     eth1接替eth0工作,且网络没断

技术分享

技术分享

  


bond