实训目的
- 掌握配置直连BFD与浮动静态路由联动的方法。
实训背景
BFD(Bidirectional Forwarding Detection,双向转发检测)协议提供一种轻负载、快速检测两台邻接路由器之间转发路径连通状态的方法。邻居通过该方式可以快速检测到转发路径的连通故障,加快启用备份转发路径,提升现有网络性能。
BFD提供的检测机制与所应用的接口介质类型、封装格式、以及关联的上层协议如OSPF、BGP、RIP等无关。BFD在两台路由器之间建立会话,通过快速发送检测故障消息给正在运行的路由协议,以触发路由协议重新计算路由表,大大减少整个网络的收敛时间。BFD本身没有发现邻居的能力,需要上层协议通知与哪个邻居建立会话。
实训拓扑
直连BFD与浮动静态路由联动-聚星云学院实验所需设备:
设备类型 | 设备型号 | 数量 |
---|---|---|
路由器 | RSR20 | 2 |
实训步骤
步骤1:基本配置。
R1:
Ruijie>enable
Ruijie#configure terminal
Ruijie(config)#hostname R1
R1(config)#
R2:
Ruijie>enable
Ruijie#configure terminal
Ruijie(config)#hostname R2
R2(config)#
步骤2:配置浮动静态路由。
R1(config)#interface fastEthernet 0/0
R1(config-FastEthernet 0/0)#ip address 192.168.10.1 255.255.255.0
R1(config-FastEthernet 0/0)#exit
R1(config)#interface fastEthernet 0/1
R1(config-FastEthernet 0/1)#ip address 192.168.20.1 255.255.255.0
R1(config-FastEthernet 0/1)#exit
R1(config)#ip route 0.0.0.0 0.0.0.0 fastEthernet 0/0 192.168.10.2
R1(config)#ip route 0.0.0.0 0.0.0.0 192.168.20.2 200
R2(config)#interface fastEthernet 0/0
R2(config-FastEthernet 0/0)#ip address 192.168.10.2 255.255.255.0
R2(config-FastEthernet 0/0)#exit
R2(config)#interface fastEthernet 0/1
R2(config-FastEthernet 0/1)#ip address 192.168.20.2 255.255.255.0
R2(config-FastEthernet 0/1)#exit
R2(config)#interface loopback 0
R2(config-if-Loopback 0)#ip address 192.168.1.2 255.255.255.0
R2(config-if-Loopback 0)#eixt
R2(config)#ip route 192.168.1.0 255.255.255.0 fastEthernet 0/0 192.168.10.1
R2(config)#ip route 192.168.1.0 255.255.255.0 192.168.20.1 200
步骤3:配置BFD与静态路由联动。
R1(config)#interface fastEthernet 0/0
R1(config-FastEthernet 0/0)#bfd interval 500 min_rx 500 multiplier 3
R1(config-FastEthernet 0/0)#no bfd echo
R1(config-FastEthernet 0/0)#exit
R1(config)#ip route static bfd fastEthernet 0/0 192.168.10.1 source 192.168.10.2
R2(config)#interface fastEthernet 0/0
R2(config-FastEthernet 0/0)#bfd interval 500 min_rx 500 multiplier 3
R2(config-FastEthernet 0/0)#no bfd echo
R2(config-FastEthernet 0/0)#exit
R2(config)#ip route static bfd fastEthernet 0/0 192.168.10.2 source 192.168.10.1
步骤4:通过show bfd neighbers命令查询BFD邻居状态。
R1#show bfd neighbors
直连BFD与浮动静态路由联动-聚星云学院
R1#show ip route
直连BFD与浮动静态路由联动-聚星云学院
网友评论