Spring中的aware接口详情
289
2022-09-26
分发列表实现路由(OSPF)过滤控制(OSPF路由过滤)
interface FastEthernet1/0ip address 200.1.1.1 255.255.255.0no shutdownrouter ospf 1network 10.1.1.0 0.0.0.255 area 10network 172.16.1.0 0.0.0.255 area 10network 172.16.2.0 0.0.0.255 area 10network 200.1.1.0 0.0.0.255 area 0
R2的基本配置interface Ethernet0/0ip address 200.1.2.1 255.255.255.0no shutdowninterface FastEthernet1/0ip address 200.1.1.2 255.255.255.0no shutdown
router ospf 1network 200.1.1.0 0.0.0.255 area 0network 200.1.2.0 0.0.0.255 area 0
R3基本配置interface Loopback0ip address 192.168.1.1 255.255.255.0! interface Ethernet0/0ip address 200.1.2.2 255.255.255.0no shutdown
router ospf 1
network 192.168.1.0 0.0.0.255 area 0network 200.1.2.0 0.0.0.255 area 0
R2上配置分发列表路由过滤第一步创建需要控制的路由;access-list 10 deny 172.16.1.0 0.0.0.255access-list 10 permit any第二步应用分发列表调用10号列表router ospf 1distribute-list 10 in FastEthernet1/0
在R2查看路由信息,看不到172.16.1.0的路由R2#show ip route C 200.1.1.0/24 is directly connected, FastEthernet1/0C 200.1.2.0/24 is directly connected, Ethernet0/0172.16.0.0/32 is subnetted, 1 subnetsO IA 172.16.2.1 [110/2] via 200.1.1.1, 00:08:15, FastEthernet1/010.0.0.0/32 is subnetted, 1 subnetsO IA 10.1.1.1 [110/2] via 200.1.1.1, 00:08:15, FastEthernet1/0192.168.1.0/32 is subnetted, 1 subnetsO 192.168.1.1 [110/11] via 200.1.2.2, 00:08:15, Ethernet0/0R2#在R3查看路由信息,可以看到172.16.1.0的路由,R3#show ip route O 200.1.1.0/24 [110/11] via 200.1.2.1, 00:09:09, Ethernet0/0C 200.1.2.0/24 is directly connected, Ethernet0/0172.16.0.0/32 is subnetted, 2 subnetsO IA 172.16.1.1 [110/12] via 200.1.2.1, 00:09:09, Ethernet0/0O IA 172.16.2.1 [110/12] via 200.1.2.1, 00:09:09, Ethernet0/010.0.0.0/32 is subnetted, 1 subnetsO IA 10.1.1.1 [110/12] via 200.1.2.1, 00:09:09, Ethernet0/0C 192.168.1.0/24 is directly connected, Loopback0
结论:说明了OSPF的分发列表应用的IN方向是由本地数据库到路由表的方向,R3和其他路由器的链路状态数据库是同步FULL状态的。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~