route-map简析

route-map简析 Route-map 可以控制路由条目,可以控制路由学不学的到路由。  如上图所示: R1(config)#int e0/0R1(config-if)#ip add 12.12.12.1 255.255.255.0R1(config-if)#no sh还有四个环回口1.1.1.12.2.2.23.3.3.34.4.4.4 R2(config)#int e0/0R2(config-if)#ip add 12.12.12.2 255.255.255.0R2(config-if)#no shR2(config-if)#int e0/1R2(config-if)#ip add 23.23.23.1 255.255.255.0R2(config-if)#no sh R3(config)#int e0/1R3(config-if)#ip add 23.23.23.2 255.255.255.0R3(config-if)#no sh  然后在r1上运行ripR1(config)#router ripR1(config-router)#no auR1(config-router)#ver 2R1(config-router)#net 12.12.12.0R1(config-router)#net 1.1.1.0R1(config-router)#net 2.2.2.0R1(config-router)#net 3.3.3.0R1(config-router)#net 4.4.4.0 R3上运行ospfR3(config)#router ospf 111R3(config-router)#net 23.23.23.0 0.0.0.255 area 0 R2上 R2(config)#router ripR2(config-router)#no auR2(config-router)#ver 2R2(config-router)#net 12.12.12.0  R2(config)#router ospf 111R2(config-router)#net 23.23.23.0 0.0.0.255 area 0R2(config-router)#ex 接着在r2上运行重分布R2(config)#router ospf 111R2(config-router)#redistribute rip subnets R2(config)#router ripR2(config-router)#redistribute ospf 111 metric 1  我们的实验关键是route-map 施行路由条目的控制 例如:我们只让r3学习到1.1.1.1   和 2.2.2.2  步骤如下: 我们先写下aclR2(config)#access-list 1 permit 1.1.1.0 0.0.0.255R2(config)#access-list 1 permit 2.2.2.0 0.0.0.255     只允许1网段和2网段R2(config)#route-map  AAA  permit  10   /route-map 的名字是AAA    permit 10意思是 指,如果下述match命令后面指定的条件成立的话,则其动作为允许。R2(config-route-map)#match ip address 1  /1指的是acl的关键字   R2(config)#router ospf 111R2(config-router)#redistribute rip metric 10 route-map AAA  /在路由重布时,引用刚才配置route-map对重发布的路由进行过滤。  这时候我们show下r3 R3#show ip routeCodes: C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static route Gateway of last resort is not set      1.0.0.0/24 is subnetted, 1 subnetsO E2    1.1.1.0 [110/10] via 23.23.23.1, 00:22:50, Ethernet0/1     2.0.0.0/24 is subnetted, 1 subnetsO E2    2.2.2.0 [110/10] via 23.23.23.1, 00:22:50, Ethernet0/1     23.0.0.0/24 is subnetted, 1 subnetsC       23.23.23.0 is directly connected, Ethernet0/1 只有1和2的网段了。 

推荐阅读