liunx双网卡绑定
Posted dengcongcong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了liunx双网卡绑定相关的知识,希望对你有一定的参考价值。
[email protected] /etc/sysconfig/network-scripts]# cat ifcfg-bond0
TYPE=Ethernet
BOOTPROTO=static
DEVICE=bond0
ONBOOT=yes
IPADDR=172.30.1.201
NETMASK=255.255.255.0
GATEWAY=172.30.1.254
DNS1=172.30.1.254
BONDING_OPTS="miimon=100 mode=1" //mode=0 表示双网卡负载,mode=1,表示主备冗余
[[email protected] /etc/sysconfig/network-scripts]# cat ifcfg-ens33
TYPE=Ethernet
BOOTPROTO=none
DEVICE=ens33
ONBOOT=yes
MASTER=bond0
SLAVE=yes
[[email protected] /etc/sysconfig/network-scripts]# cat ifcfg-ens34
TYPE=Ethernet
BOOTPROTO=none
DEVICE=ens34
ONBOOT=yes
MASTER=bond0
SLAVE=yes
[[email protected] /etc/sysconfig/network-scripts]#
以上是关于liunx双网卡绑定的主要内容,如果未能解决你的问题,请参考以下文章