Viewing OSPF Status with Domain Names
Problem
You would prefer to view proper domain names rather than see the raw IP addresses in the output of your OSPF show commands.
Solution
You can configure OSPF to resolve IP addresses into router names with the following global configuration command:
Router3#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router3(config)#ip ospf name-lookupRouter3(config)#endRouter3#
Discussion
When you configure OSPF name-lookup, the router will use its locally configured host table, if it has one, or DNS to resolve the names. If both are present, the router will check the local host table first. You can enable DNS on a router with the ip domain-lookup and ip name-server commands, as we discussed in Chapter 2.
Enabling name resolution can be useful when displaying information like OSPF neighbor tables. For example, if we look at the neighbor table without name-lookup enabled, we see IP addresses:
Router3#show ip ospf neighborNeighbor ID Pri State Dead Time Address Interface172.20.220.11 FULL/DR 00:00:34 172.20.10.2 Ethernet0172.25.25.11 FULL/ - 00:00:31 172.20.1.1 Serial0.1 Router3#
But with name lookup, the router replaces the router IDs with names:
Router3#show ip ospf neighborNeighbor ID Pri State Dead Time Address InterfaceRouter61 FULL/DR 00:00:37 172.20.10.2 Ethernet0Router11 FULL/ - 00:00:36 172.20.1.1 Serial0.1 Router3#
The output will show an IP address rather than a name if the router can’t resolve the address ...