ISIS 与 BFD 联动典型配置举例
组网需求
Router A、Router B 通过二层交换机 switch 互连,在设备上运行ISIS 协议来学习路由,同时使 能允许 ISIS 在双方接口上与 BFD 联动。在 Router B 和二层交换机 swicth 之间的链路发生故障 后,BFD 能够快速检测到链路故障并通告ISIS 协议,触发路由快速收敛。
组网拓扑
[size=13.3333px] 配置要点 [size=13.3333px]
[size=13.3333px]1) 配置 RouterA [size=13.3333px]#在 RouterA 配置 Routed Port 接口、接口 IP、接口的 BFD 会话参数 [size=13.3333px]某公司# configure terminal [size=13.3333px]Enter configuration commands, one per line. End with CNTL/Z. 某公司(config)# interface GigabitEthernet2/1 [size=13.3333px]某公司(config-if)# no switchport [size=13.3333px]某公司(config-if)# ip address 192.168.3.1 255.255.255.0 某公司(config-if)# ip router isis 1 [size=13.3333px]某公司(config-if)# bfd interval 200 min_rx 200 multiplier 5 [size=13.3333px]# 配置 Routed Port 接口 ge1/1 [size=13.3333px]某公司(config-if)# exit [size=13.3333px]某公司(config)# interface GigabitEthernet1/1 某公司(config-if)# no switchport [size=13.3333px]某公司(config-if)# ip address 192.168.1.1 255.255.255.0 某公司(config-if)# ip router isis 1 [size=13.3333px]#启用 ISIS 协议并使能 ISIS 协议关联 BFD 来检测 192.168.3.2 邻居 [size=13.3333px]某公司(config-if)# exit [size=13.3333px]某公司(config)# router isis 1 [size=13.3333px]某公司(config-router)# log-adjacency-changes [size=13.3333px]某公司(config-router)# net 49.0001.0000.0000.0001.00 [size=13.3333px]某公司(config-router)# bfd all-interfaces [size=13.3333px]2) 配置 RouterB [size=13.3333px]#在 RouterB 配置 Routed Port 接口、接口 IP、接口的 BFD 会话参数 [size=13.3333px]某公司# configure terminal [size=13.3333px]Enter configuration commands, one per line. End with CNTL/Z. 某公司(config)# interface GigabitEthernet 2/1 [size=13.3333px]某公司(config-if)# no switchport [size=13.3333px]某公司(config-if)# ip address 192.168.3.2 255.255.255.0 某公司(config-if)# ip router isis 2 [size=13.3333px]某公司(config-if)# bfd interval 50 min_rx 50 multiplier 3 [size=13.3333px]# 配置 Routed Port 接口 ge1/1 [size=13.3333px]某公司(config-if)# exit [size=13.3333px]某公司(config)# interface GigabitEthernet1/1 某公司(config-if)# no switchport [size=13.3333px]某公司(config-if)# ip address 192.168.2.1 255.255.255.0 某公司(config-if)# ip router isis 2 [size=13.3333px]#启用 ISIS 协议并使能 ISIS 协议关联 BFD 来检测 192.168.3.1 邻居 [size=13.3333px]某公司(config-if)# exit [size=13.3333px]某公司(config)# router isis 2 [size=13.3333px] [size=13.3333px]
[size=13.3333px]某公司(config-router)# log-adjacency-changes
[size=13.3333px]某公司(config-router)# net 49.0001.0000.0000.0002.00 某公司(config-router)# bfd all-interfaces |