01-17-2006 04:26 PM - edited 03-03-2019 01:28 AM
interface Vlan110
ip address 136.160.196.1 255.255.255.0
!
interface Vlan310
ip address 136.160.197.1 255.255.255.192
!
interface Vlan610
ip address 192.168.180.1 255.255.255.0
!
interface Vlan710
ip address 192.168.150.1 255.255.255.0
!
interface Vlan910
ip address 192.168.254.84 255.255.255.248
!
router eigrp 411
network 136.160.0.0
network 192.168.0.0
no auto-summary
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.254.81
=======================================
Core-SC1#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is 192.168.254.81 to network 0.0.0.0
136.160.0.0/16 is variably subnetted, 2 subnets, 2 masks
C 136.160.196.0/24 is directly connected, Vlan110
C 136.160.197.0/26 is directly connected, Vlan310
C 192.168.150.0/24 is directly connected, Vlan710
C 192.168.180.0/24 is directly connected, Vlan610
192.168.254.0/29 is subnetted, 1 subnets
C 192.168.254.80 is directly connected, Vlan910
S* 0.0.0.0/0 [1/0] via 192.168.254.81
Core-SC1#sh ip eigrp top
IP-EIGRP Topology Table for AS(411)/ID(192.168.254.84)
Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
r - reply Status, s - sia Status
P 136.160.196.0/24, 1 successors, FD is 2816
via Connected, Vlan110
P 136.160.197.0/26, 1 successors, FD is 2816
via Connected, Vlan310
=======================================
Why wouldn't subnets in 192.168.0.0 network show up in the "sh ip eigrp top"?
Solved! Go to Solution.
01-17-2006 04:40 PM
Hi,
Try replacing your 'network 192.168.0.0' statement under router eigrp with 'network 192.168.0.0 0.0.255.255'.
By default, if a mask is not specified, the network statement is treated as a classful network and in your case, the mask would default to 0.0.0.255
Hope that helps - pls rate the post if it does.
Regards,
Paresh
01-17-2006 04:40 PM
Hi,
Try replacing your 'network 192.168.0.0' statement under router eigrp with 'network 192.168.0.0 0.0.255.255'.
By default, if a mask is not specified, the network statement is treated as a classful network and in your case, the mask would default to 0.0.0.255
Hope that helps - pls rate the post if it does.
Regards,
Paresh
01-17-2006 06:14 PM
I think that the answer given by Paresh is one correct alternative. Another alternative is to replace the one network statement for 192.168.0.0 with two network statements, one for each of the class C 192.168 networks on the interfaces.
Another way to understand the impact of the original configuration is to do the command show ip eigrp interface. If you do this you will see that neither of the 192.168 interfaces are currently included in EIGRP since they do not match the 192.168.0.0 network statement.
HTH
Rick
01-17-2006 08:20 PM
That's it! Thank a lot!!!
I couldn't believe I missed something this simple...
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide