3-双网卡的网络配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3-双网卡的网络配置相关的知识,希望对你有一定的参考价值。
#####双网卡网络配置######
*链路聚合
*作用:主动备份模式 一次只能只能使用一个接口,如果接口故障,另一个会接替它
命令:nmcli connection add con-name bond0 ifname bond0 type bond mode active-backup ip4 172.25.254.162/24 ##添加主动备份模式的bond0,ip为172.25.254.162
命令:watch -n 1 cat /proc/net/bonding/bond0 ##监控网络bond0
命令:nmcli connection add con-name eth0 ifname eth0 type bond-slave master bond0
##给bond0网络添加eth0网卡
命令:nmcli connection add con-name eth1 ifname eth1 type bond-slave master bond0
##给bond0网络添加eth1网卡
命令:ifconfig eth1 down ##当网卡eth1故障网卡eth0工作
命令:ifconfig eth1 up ##当网卡eth1启动后网卡eth0还在工作直到eth0故障
命令:ifconfig eth0 down ##当网卡eth0故障切换到网卡eth1工作
以上是关于3-双网卡的网络配置的主要内容,如果未能解决你的问题,请参考以下文章