码迷,mamicode.com
首页 > 其他好文 > 详细

bond实验

时间:2020-08-27 17:04:16      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:eth0   模式   pts   实验   tar   mode   被占用   work   切换   

实验环境:
centos6
centos7

IP规划:
centos6:
eth0+eth1=bond0
bond0:192.168.16.100

centos7:
        eth0:192.168.16.66

实验目的:
实现centos6的网卡冗错,网卡的高可用

实验步骤:
centos6添加两块网卡:eth0,eth1
分别配置:
vim ifcfg-eth0
NAME=eth0
DEVICE=eth0
ONBOOT=yes
MASTER=bond0
SLAVE=yes
###################
vim ifcfg-eth1
NAME=eth1
DEVICE=eth1
ONBOOT=yes
MASTER=bond0
SLAVE=yes
####################
添加bond0配置
vim ifcfg-bond0
NAME=bond0
DEVICE=bond0
ONBOOT=yes
TYPE=bond
IPADDR=192.168.16.200
PREFIX=24
BONDING_OPTS="model=1 miion=10"
#model=1是主备模式

重启网卡:ifconfig  eth0  down
          ifconfig  eth1  down
          ifconfig  bond0  up

          或者service   network restart
    #可能会出现ip地址被占用的情况,需要更换bond0的IP

检测IP:
    centos7------>192.168.16.200
    可以连通,并切断centos6的bond0的网卡连接,测试切换
    #可能是vmware模拟问题,测试切换没有用

bond实验

标签:eth0   模式   pts   实验   tar   mode   被占用   work   切换   

原文地址:https://blog.51cto.com/13434656/2522841

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!