In this part, you will configure a default static route to the internet on R1. R1 will then propagate the default route to other OSPF routers as an external Type 2 OSPF route (i.e., O*E2).
Propagating a default is the most efficient method to provide a consistent default gateway to all OSPF- enabled devices.
a. R1 will be the gateway of last resort for the OSPF internetwork. In our sample topology, the internet is simulated using the Lo0 interface. Configure a static default route out of the Lo0 interface on R1.
Open configuration window
R1(config)# ip route 0.0.0.0 0.0.0.0 lo0 %Default route without gateway, if not a point-to-point interface, may impact performance |
Note: Disregard the informational message. In a production environment, a valid physical interface would be used to provide default gateway services.
b. Enter OSPF router configuration mode and use the default-information originate [always] [metric metric-value] [metric-type type-value] command to enable default route propagation. The always keyword advertises a default route even if a static default route does not exist while the route metric and metric type can be changed. R1 is configured to propagate the default route.
R1(config)# router ospf 123 R1(config-router)# default-information originate R1(config-router)# end |
a. Verify the routing table on R1.
R1# show ip route static | begin Gateway Gateway of last resort is 0.0.0.0 to network 0.0.0.0
S* 0.0.0.0/0 is directly connected, Loopback0 |
b. Verify the routing table on D1 and D2.
D1# show ip route | include Gateway|0/0 Gateway of last resort is 10.10.0.1 to network 0.0.0.0 O*E2 0.0.0.0/0 [110/1] via 10.10.0.1, 00:06:55, GigabitEthernet0/1 |
D2# show ip route | include Gateway|0/0 Gateway of last resort is 10.10.0.1 to network 0.0.0.0 O*E2 0.0.0.0/0 [110/1] via 10.10.0.1, 00:09:36, GigabitEthernet0/2 |