Description
This article describes that routes learned from the other OSPF areas will be removed on the ABR router when it has multiple areas and has no backbone connection.
Solution
Diagram.
This article describes that routes learned from the other OSPF areas will be removed on the ABR router when it has multiple areas and has no backbone connection.
Solution
Diagram.
The network 44.44.44.44/32 installed on FGT2 routing table which is advertised from FGT4 and it will be removed from the FG2 routing table when creating another area 0.0.0.2 which has no backbone connection.
FGT2 # show router ospf# config router ospfset router-id 2.2.2.2config areaedit 0.0.0.1nextend# config ospf-interfaceedit "port3"set interface "port3"nextend# config networkedit 1set prefix 20.0.0.0 255.255.255.0set area 0.0.0.1nextend
FGT2 # get router info ospf neighborOSPF process 0, VRF 0:Neighbor ID Pri State Dead Time Address Interface3.3.3.3 1 Full/DR 00:00:33 20.0.0.3 port3
The network 44.44.44.44/32 is installed in the routing table
FGT2 # get router info routing-table ospfRouting table for VRF=0O IA 30.0.0.0/24 [110/2] via 20.0.0.3, port3, 00:01:52O IA 44.44.44.44/32 [110/102] via 20.0.0.3, port3, 00:01:52
Adding another area 0.0.0.2 on FGT2.
FGT2 # show router ospf# config router ospfset router-id 2.2.2.2# config areaedit 0.0.0.1nextedit 0.0.0.2 <-----nextend# config ospf-interfaceedit "port3"set interface "port3" <----- Attached to 0.0.0.1nextedit "port2"set interface "port2" <----- Attached to 0.0.0.2nextend# config networkedit 1set prefix 20.0.0.0 255.255.255.0set area 0.0.0.1nextedit 2set prefix 10.0.0.0 255.255.255.0set area 0.0.0.2nextend
FGT2 # get router info ospf neighborOSPF process 0, VRF 0:Neighbor ID Pri State Dead Time Address Interface1.1.1.1 1 Full/Backup 00:00:35 10.0.0.1 port23.3.3.3 1 Full/DR 00:00:33 20.0.0.3 port3
The OSPF neighbourship is established and the network 44.44.44.44/32 is removed from the routing table. it’s in the database table.
FGT2 # get router info routing-table ospfNo route availableFGT2 # get router info ospf database briefOSPF Router with ID (2.2.2.2) (Process ID 0, VRF 0)Router Link States (Area 0.0.0.1)Link ID ADV Router Age Seq# CkSum Flag Link count2.2.2.2 2.2.2.2 87 80000004 d53c 0021 13.3.3.3 3.3.3.3 92 80000006 9373 0002 1
Net Link States (Area 0.0.0.1)
Link ID ADV Router Age Seq# CkSum Flag20.0.0.3 3.3.3.3 93 80000001 ce54 0002
Summary Link States (Area 0.0.0.1)
Link ID ADV Router Age Seq# CkSum Flag Route10.0.0.0 2.2.2.2 102 80000001 b693 0021 10.0.0.0/2430.0.0.0 3.3.3.3 325 80000001 939e 0002 30.0.0.0/2444.44.44.44 3.3.3.3 300 80000001 1724 0002 44.44.44.44/32 <-----
Router Link States (Area 0.0.0.2)
Link ID ADV Router Age Seq# CkSum Flag Link count1.1.1.1 1.1.1.1 20 80000003 54dd 0002 12.2.2.2 2.2.2.2 20 80000004 1710 0021 1
Net Link States (Area 0.0.0.2)
Link ID ADV Router Age Seq# CkSum Flag10.0.0.2 2.2.2.2 20 80000001 2515 0021
Summary Link States (Area 0.0.0.2)
Link ID ADV Router Age Seq# CkSum Flag Route20.0.0.0 2.2.2.2 102 80000001 340c 0021 20.0.0.0/24
Solution.
Selecting the ABR type compatible with the routers on your network can reduce or eliminate the need for configuring and maintaining virtual links. For more information, see RFC 3509.
FGT2 # show router ospf#cconfig router ospfset abr-type cisco <-----set router-id 2.2.2.2config areaedit 0.0.0.1nextedit 0.0.0.2nextend
FGT2 # get router info routing-table ospfRouting table for VRF=0O IA 30.0.0.0/24 [110/2] via 20.0.0.3, port3, 00:00:00O IA 44.44.44.44/32 [110/102] via 20.0.0.3, port3, 00:00:00 <-----
Labels: