Halo wrote:
At this point, I don't know the packet is getting forwarded out of the interface, it ought to be getting dropped. How about throwing a few more routes into the table so you've got more information to make a forwarding decision from?
I added more loopbacks and made the network converge using RIPv2 but no Cigar. I'm still seeing the classfull routing table use the quad-zero default route..
Code:
Gateway of last resort is 0.0.0.0 to network 0.0.0.0
172.16.0.0/16 is variably subnetted, 7 subnets, 2 masks
C 172.16.5.1/32 is directly connected, Loopback0
C 172.16.7.1/32 is directly connected, Loopback2
C 172.16.6.1/32 is directly connected, Loopback1
C 172.16.1.0/30 is directly connected, Serial0/0
R 172.16.2.0/30 [120/1] via 172.16.1.2, 00:00:17, Serial0/0
R 172.16.100.1/32 [120/1] via 172.16.1.2, 00:00:17, Serial0/0
S* 0.0.0.0/0 is directly connected, Serial0/0
R1#ping 172.16.200.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.200.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 24/51/88 ms
R1#
Project2501 wrote:
Quad four route for the win? You've got a default route in there.
Yes, but it shouldn't be seen by a classfull routing table in this situation.. I'll explain using the new routing table in this post..
- R1 is sending an ICMP echo to the address 172.16.200.1 /32 2 hops away.
- R1 has a classfull routing table enabled using
no ip classless- R1 examines the destination address for a classfull match (172.16.0.0 - Class B)
- R1 finds a parent classfull route for the destination network
- R1 examines each of the child routes within the parent route
- R1 finds no match for the destination 172.16.200.1 packet.
** With a class
less routing table a router will re-examine level 1 routes for a less specific route the what is matched by the 172.16.0.0 classfull parent route. Allowing it to find any summary routes or quad-zero routes.
** With a class
full routing table, once the child routes are examined and no match is found, it will not re-examine the routing table to find a summary or default route..
That's the jist..
I'm getting sick so forgive me..
I just don't understand why these are being routed..