- Code: Select all
R0 ------------------------- R1
| |
| Area 0 |
| |
R2-------------------------- R3
All Routers run OSPF in area 0.
R0 Loop0 : 1.1.1.1
R1 Loop0 : 2.2.2.2
R2 Loop0 : 3.3.3.3
R3 Loop0 : 4.4.4.4
R2 and R3 have a static default route and use default information originate which makes them ASBRs.
Goal is to achieve loadbalancing on R0 and R1 and have both default routes in RT.
OSPF database on R0 and R1 looks like :
Type-5 AS External Link States
- Code: Select all
Link ID ADV Router Age Seq# Checksum Tag
0.0.0.0 3.3.3.3 626 0x80000004 0x00DAC8 1
0.0.0.0 4.4.4.4 492 0x80000004 0x00BCE2 1
But RT only includes one default route :
O*E2 0.0.0.0/0 [110/1] via 20.20.20.2, 00:06:02, FastEthernet0/1
R0#
O*E2 0.0.0.0/0 [110/1] via 30.30.30.2, 00:06:32, FastEthernet0/1
R1#
both have E2 Metrik Type, no internal cost is added (default).
Looking at the ASBRs :
R0#sh ip ospf border-routers
OSPF Process 1 internal Routing Table
Codes: i - Intra-area route, I - Inter-area route
i 4.4.4.4 [2] via 10.10.10.2, FastEthernet2/0, ASBR, Area 0, SPF 14
i 4.4.4.4 [2] via 20.20.20.2, FastEthernet0/1, ASBR, Area 0, SPF 14
i 3.3.3.3 [1] via 20.20.20.2, FastEthernet0/1, ASBR, Area 0, SPF 14
R1#sh ip ospf border
OSPF Process 1 internal Routing Table
Codes: i - Intra-area route, I - Inter-area route
i 4.4.4.4 [1] via 30.30.30.2, FastEthernet0/1, ASBR, Area 0, SPF 14
i 3.3.3.3 [2] via 10.10.10.1, FastEthernet2/0, ASBR, Area 0, SPF 14
i 3.3.3.3 [2] via 30.30.30.2, FastEthernet0/1, ASBR, Area 0, SPF 14
In this internal routing table only one ASBR has better path, metric, cost,
hop count, or whatever the value in [ ] is?
Is there a way to manipulate this value ?
Is there a way to have two default routes in the RT of R0 and R1 in this scenario ?
