Note!
Routers use OSPF configuration from the lab 6.
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 first three methods (1-3) prevent prefixes from entering the routing table. The LSAs are still going to be present in the LSDB since all routers in OSPF area must be synchronized (the same LSDB). These methods are the intra-area filters.
The last three methods (4-5) are inter-area filters preventing LSAs from entering LSDB.
Topology
Task 1
On R3, check the routing table. It should receive all prefixes from area 1.
Task 2
Configure router(s) so R3 does not receive any prefixes from R1 and R2. Prefixes advertised by R3 should be learned in R1 and R2 and propagated to R4. Do not use access-list, distribute-list or any other command in the router ospf context.
Task 3
Verify the results.
Lab Solution
Task 2
Configure router(s) so R3 does not receive any prefixes from R1 and R2. Prefixes advertised by R3 should be learned on R1 and R2 and propagated to R4. Do not use access-list, distribute-list or any other command in the router ospf context.
R1 Configuration:
ip address 10.1.13.1 255.255.255.0
ip ospf database-filter all out
R2 Configuration:
ip address 10.1.23.2 255.255.255.0
ip ospf database-filter all out
Note!
Note!
Note!
Task 3
R4 learns prefixes advertised by R3.