学习centos6.8链路聚合

查看机器上有多少张网卡
命令查看:
/sbin/ifconfig -a
centos链路聚合_第1张图片

命令得知,有两个卡槽是插上网卡的,它们分别是:em1和em2。

下面就是通过修改这两个网卡的配置文件,并绑定这两个网卡
[root@localhost network-scripts]# vi ifcfg-em1
修改成以下内容:
centos链路聚合_第2张图片

同理也修改em2网卡
centos链路聚合_第3张图片

添加一个绑定网卡bond0的配置文件:
centos链路聚合
centos链路聚合_第4张图片

修改/etc/modprobe.d/dist.conf文件:
centos链路聚合

在文件末尾添加:
alias bond0 bonding
options bond0 miimon=100 mode=1

修改/etc/rc.local文件:
centos链路聚合

在文件末尾添加:
ifenslave bond0 eth0 eth1

重启网络服务:
centos链路聚合_第5张图片

再次使用ifconfig命令:
centos链路聚合_第6张图片

可以发现,两张网卡已经绑定好了