配置ubuntu16 配置多网卡负载均衡

匿名 (未验证) 提交于 2019-12-03 00:15:02

ip: 192.168.0.100

安装ifenslave

 sudo apt-get install ifenslave 

设置开机启动时加载bonding module

 echo "bonding" >>/etc/modules

内核加载bonding module

 modprobe bonding

ifconfig -a 看看,这时应该有块名为bond0的网卡

配置/etc/network/interfaces

 auto eno1 iface eno1 inet manual bond-master bond0 bond-primary eno1  auto eno2 iface eno2 inet manual bond-master bond0 bond-primary eno2  auto bond0 iface bond0 inet static address 192.168.0.100 netmask 255.255.255.0 gateway 192.168.0.67 bond-slaves eno1 eno2 bond-lacp-rate 1 bond-mode 1 bond-miimon 100

重启网络

 systemctl restart networking

526855734

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!