Di Posting Oleh : Simple Learning
Kategori : Core Technologies OSPF Routing
Prerequisites: CCNP level skills.
Note!
Routers use OSPF configuration from the lab 6.
One thing to remember is that all routers within the same OSPF area share the EXACT same LSA database! This will affect how we can filter OSPF updates.
There are a few filtering methods:
- Ingress filtering using a 'distribute-list'.
- Ingress filtering using a 'distribute-list' with a 'route-map'.
- Ingress filtering by changing the Administrative Distance of the prefixes to UNKNOWN (255).
- Type 3 LSA filtering using 'area area-number range' command (applied on ABR).
- Type 3 LSA filtering using 'filter-list' command.
- LSA Flooding Filtering.
The last three methods (4-6) are inter-area filters preventing LSAs from entering LSDB.
Topology
Pic. 1 - OSPF Multi-Area Topology.
Icons designed by: Andrzej Szoblik - http://www.newo.pl
Task List
Task 1
On R3, check the routing table. Make sure that it shows prefixes: 172.16.101.0/24 and 172.16.102.0/24.
Task 2
Configure R3 so prefixes 172.16.101.0/24 and 172.16.102.0/24 do not show in the routing table but show in the LSDB. Do not use distribute-list to accomplish this. Make sure that you match on the router-id of advertising routers.
Task 3
Check the results. Both prefixes in question should be removed from the routing table but should be still seen in the LSDB.
Task 1
On R3, check the routing table. Make sure that it shows prefixes: 172.16.101.0/24 and 172.16.102.0/24.
Pic. 2 - R3's Routing Table.
Task 2
Configure R3 so prefixes 172.16.101.0/24 and 172.16.102.0/24 do not show in the routing table but show in the LSDB. Do not use distribute-list to accomplish this.Make sure that you match on the router-id of advertising routers.
R3 Configuration:
!
ip access-list standard FILTER
permit 172.16.101.0 0.0.0.255
permit 172.16.102.0 0.0.0.255
!
router ospf 1
router-id 3.3.3.3
log-adjacency-changes
network 0.0.0.0 255.255.255.255 area 0
distance 255 1.1.1.1 0.0.0.0 FILTER
distance 255 2.2.2.2 0.0.0.0 FILTER
!
router-id 3.3.3.3
log-adjacency-changes
network 0.0.0.0 255.255.255.255 area 0
distance 255 1.1.1.1 0.0.0.0 FILTER
distance 255 2.2.2.2 0.0.0.0 FILTER
!
Task 3
Check the results. Both prefixes in question should be removed from the routing table but should be still seen in the LSDB.
R3#show ip ospf database router
Pic. 3 - R3's Routing Table with Filter.
Pic. 4 - LSDB with the Filter (172.16.101.0/24).
Pic. 4 - LSDB with the Filter (172.16.102.0/24).
0 Response to "Lab 10 - OSPF Filtering with Distance"
Post a Comment