目前情况是上行链路断开切换正常,可是当连接交换机的下行链路断开之后数据回包还是去往主路由器,不去备路由器,导致无法通行
(0)
最佳答案
如果要实现VRRP和转发流量网桥同时切换,可以在R1和R3之间运行BFD进行二层检测,实现VRRP与其联动。
(0)
左边的路由器时主路由器 ,右边是备路由,您说的是让主路由器和上面连接的路由器做BFD检测吗?
对的,因为R1和R3之间的链路正常,备份根桥是不会成为根桥的,两者的角色不变
如图1-2所示,通过在Device B上配置接口组联动功能,使得Device B的接口GigabitEthernet1/0变为DOWN时,Device B的接口GigabitEthernet2/0也无法传输报文,从而加快转发表更新和流量切换速度。同理,Device B的接口GigabitEthernet2/0变为DOWN时,Device B的接口GigabitEthernet1/0也无法传输报文。
(1) 配置路由,优先使用Device B转发Device A和Device D之间的流量,以配置静态路由为例
# 配置各接口的IP地址(略)。
# 在Device A上配置四条静态路由。
<DeviceA> system-view
[DeviceA] ip route-static 1.1.5.0 255.255.255.0 1.1.2.2
[DeviceA] ip route-static 1.1.7.0 255.255.255.0 1.1.2.2 preference 50
[DeviceA] ip route-static 1.1.6.0 255.255.255.0 1.1.3.2
[DeviceA] ip route-static 1.1.7.0 255.255.255.0 1.1.3.2 preference 70
# 在Device B上配置两条静态路由。
<DeviceB> system-view
[DeviceB] ip route-static 1.1.4.0 255.255.255.0 1.1.2.1
[DeviceB] ip route-static 1.1.7.0 255.255.255.0 1.1.5.2
# 在Device C上配置四条静态路由。
<DeviceC> system-view
[DeviceC] ip route-static 1.1.2.0 255.255.255.0 1.1.5.1
[DeviceC] ip route-static 1.1.4.0 255.255.255.0 1.1.5.1 preference 50
[DeviceC] ip route-static 1.1.3.0 255.255.255.0 1.1.6.2
[DeviceC] ip route-static 1.1.4.0 255.255.255.0 1.1.6.2 preference 70
# 在Device D上配置两条静态路由。
<DeviceD> system-view
[DeviceD] ip route-static 1.1.4.0 255.255.255.0 1.1.3.1
[DeviceD] ip route-static 1.1.7.0 255.255.255.0 1.1.6.1
(2) 配置接口组联动
# 在Device B上全局开启Monitor Link协议(缺省开启)。
<DeviceB> system-view
[DeviceB] undo monitor-link disable
# 创建联动组1。
[DeviceB] collaboration-group 1
# 将接口GigabitEthernet1/0和GigabitEthernet2/0加入联动组1。
[DeviceB-collaboration-group1] port gigabitethernet 1/0
[DeviceB-collaboration-group1] port gigabitethernet 2/0
(1) 验证接口组联动的上行接口对下行接口的影响
# 查看Device C的静态路由信息。
[DeviceC] display ip routing-table protocol static
Summary count : 3
Static Routing table status : <Active>
Summary count : 3
Destination/Mask Proto Pre Cost NextHop Interface
1.1.2.0/24 Static 60 0 1.1.5.1 GE1/0
1.1.3.0/24 Static 60 0 1.1.6.2 GE2/0
1.1.4.0/24 Static 50 0 1.1.5.1 GE1/0
Static Routing table status : <Inactive>
Summary count : 0
可以看到,Device C到Device A间生效的路由为Device C->Device B->Device A。
# 在Device B的接口GigabitEthernet1/0上执行shutdown命令,查看联动组1及其接口的状态。
[DeviceB] display collaboration-group 1 verbose
Collaboration group protocol status: Enabled
Collaboration group 1 information:
Group status : DOWN
Member up delay : 0 seconds
Last up time : 16:55:34 2017/04/05
Last down time : 16:57:22 2017/04/05
Member Status
GE1/0 DOWN
GE2/0 Collaboration-down
可以看到,联动组1为DOWN状态;接口GigabitEthernet1/0为DOWN状态;接口GigabitEthernet2/0为Collaboration-down状态。
# 再查看Device C的静态路由信息。
[DeviceC] display ip routing-table protocol static
Summary count : 2
Static Routing table status : <Active>
Summary count : 2
Destination/Mask Proto Pre Cost NextHop Interface
1.1.3.0/24 Static 60 0 1.1.6.2 GE2/0
1.1.4.0/24 Static 70 0 1.1.6.2 GE2/0
Static Routing table status : <Inactive>
Summary count : 0
可以看到,Device C到Device A间生效的路由为Device C->Device D->Device A。
(2) 验证接口组联动的下行接口对上行接口的影响
# 查看Device A的静态路由信息。
[DeviceA] display ip routing-table protocol static
Summary count : 3
Static Routing table status : <Active>
Summary count : 3
Destination/Mask Proto Pre Cost NextHop Interface
1.1.5.0/24 Static 60 0 1.1.2.2 GE1/0
1.1.6.0/24 Static 60 0 1.1.3.2 GE2/0
1.1.7.0/24 Static 50 0 1.1.2.2 GE1/0
Static Routing table status : <Inactive>
Summary count : 0
可以看到,Device A到Device C间生效的路由为Device A->Device B->Device C。
# 在Device B的接口GigabitEthernet2/0上执行shutdown命令,查看联动组1及其接口的状态。
[DeviceB] display collaboration-group 1 verbose
Collaboration group protocol status: Enabled
Collaboration group 1 information:
Group status : DOWN
Member up delay : 0 seconds
Last up time : 17:11:47 2017/04/05
Last down time : 17:14:37 2017/04/05
Member Status
GE1/0 Collaboration-down
GE2/0 DOWN
可以看到,联动组1为DOWN状态;接口GigabitEthernet1/0为Collaboration-down状态;接口GigabitEthernet2/0为DOWN状态。
# 再查看Device A的静态路由信息。
[DeviceA] display ip routing-table protocol static
Summary count : 2
Static Routing table status : <Active>
Summary count : 2
Destination/Mask Proto Pre Cost NextHop Interface
1.1.6.0/24 Static 60 0 1.1.3.2 GE2/0
1.1.7.0/24 Static 70 0 1.1.3.2 GE2/0
Static Routing table status : <Inactive>
Summary count : 0
可以看到,Device A到Device C间生效的路由为Device A->Device D->Device C。
(0)
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
对的,因为R1和R3之间的链路正常,备份根桥是不会成为根桥的,两者的角色不变