Let's say that some routing tier has been allocated the 10.10.0.0/16 network block. Because only some of that space is actually in use, a null route has been added so that traffic for unused portions of the space doesn't wander the network aimlessly:
Dist-A#show ip route 10.10.0.0 255.255.0.0
Routing entry for 10.10.0.0/16
Known via "static", distance 1, metric 0 (connected)
Redistributing via ospf 1
Advertised by ospf 1 subnets
Routing Descriptor Blocks:
* directly connected, via Null0
Route metric is 0, traffic share count is 1
Dist-A#
Dist-B#show ip route 10.10.0.0 255.255.0.0
Routing entry for 10.10.0.0/16
Known via "ospf 1", distance 110, metric 20, type extern 2, forward metric 1
Last update from 10.10.0.0 on FastEthernet0/0, 00:24:56 ago
Routing Descriptor Blocks:
* 10.10.0.0, from 10.10.0.0, 00:24:56 ago, via FastEthernet0/0
Route metric is 20, traffic share count is 1
Dist-B#
Dist-B#show run | include ip route
ip route 10.10.0.0 255.255.0.0 Null0 254
Dist-B#
I'm sure it works fine, but I don't understand why the floatiness is useful. Someone had to design this and type it in. I would like to understand the motivation behind it. Why not just add a normal (AD of 1) null route to both distribution routers?
Is there an advantage to doing things this way? What is it?
 
 
By having all the invalid traffic (during normal operations) head to the same place it gives you a single point to monitor if you want to look at what is heading towards that IP space?
ReplyDeleteBGP routing involved? That would require an active IIGP-route for a prefix to be considered to be anounced over BGP...
ReplyDeleteAnon's suggestion is a reasonable one. I don't think that's what was going on, but it's a reason somebody might choose to configure things this way.
ReplyDeleteRoman, no BGP involved. Even if it were, BGP doesn't care whether the route comes from an IGP or from OSPF, it only cares that the route exist in the IP routing table.