Default CEF entries
It's interesting that even with an empty routing table, a modern Cisco router has several active CEF entries. Fire up an unconfigured router and issue the command show ip cef to view the default entries. The following output was observed on a 3725 running IOS 12.4(9)T1:
Router# show ip cef Prefix Next Hop Interface 0.0.0.0/0 drop Null0 (default route handler entry) 0.0.0.0/32 receive 224.0.0.0/4 drop 224.0.0.0/24 receive 255.255.255.255/32 receive
I'm going to take a shot at identifying the purpose of each entry, in reverse order:
255.255.255.255/32- This is the local broadcast address for a subnet224.0.0.0/24- The multicast block reserved for local network control traffic224.0.0.0/4- All other multicast traffic (originally Class D space) should be dropped when multicast routing is disabled0.0.0.0/32- Not sure, but assumed to be a reserved link-local address0.0.0.0/0- Default entry matching all other addresses
Thoughts?


Jeremy,
I went to the IANA website and pulled this from RFC 3330
0.0.0.0/8 - Addresses in this block refer to source hosts on "this" network. Address 0.0.0.0/32 may be used as a source address for this host on this network; other addresses within 0.0.0.0/8 may be used to refer to specified hosts on this network [RFC1700, page 4].
I hope this helps.
Kevin