Just want a quick check on an EIGRP routing question and the CISCO site is a pain in the ass so thought I’d check here first.
Here’s the situation. There is a core backbone networks of routers attached via T1’s, so that router A is connected to routers B and C via separate T1’s (picture a triangle with each let a T1). I’m obviously simplifying here. This backbone is set up using a series of /30 bit subnet masks, so, on the first leg you’d have 10.10.10.0 /30 (with the routers host addresses bring 10.10.10.1 /30 and 10.10.10.2 /30), 10.10.10.4 /30 (.5 /30 and .6/30) on the second leg and 10.10.10.8 /30 (.9 /30 and .10 /30) on the third leg.
First question: In the EIGRP table, wouldn’t it make sense to do:
router eigrp 10
10.10.10.0 0.0.0.255
On all 3 core routers, instead of:
router eigrp 10
10.10.10.0 0.0.0.3
10.10.10.8 0.0.0.3
On router A and so on (to lazy to write out the others, but hopefully whoever is reading this is following along)? The backbone addressing (i.e. 10.10.10.x /30) is only used on the backbone, so there aren’t any other 10.10.10 networks elsewhere.
Next question. Attached to each network is a layer 3 switch which is also part of the EIGRP network. Each switch represents a different facility, and each one uses a convention like this:
Routing switch A off Router A: 10.11.B.X /24, where B is a building VLAN number (i.e. building 10 would be VLAN 10, so the address for the building would be 10.11.10.0 /24).
Routing Switch B off of Router B: 10.12.B.X /24
Routing Switch C off of Router C: 10.13.B.X /24
Ok, the question is, wouldn’t it make more sense to simplify the EIGRP tables on the routing switches to be:
Routing Switch A:
router eigrp 10
10.11.0.0 0.0.255.255
Instead of (what they currently have)
router eigrp 10
network 10.11.10.0 0.0.0.255
network 10.11.20.0 0.0.0.255
network 10.11.30.0 0.0.0.255
network 10.11.40.0 0.0.0.255
network 10.11.50.0 0.0.0.255
network 10.11.60.0 0.0.0.255
network 10.0.0.0
Seems simple to me, but the network engineer here insists that you can’t do what I’m proposing (of course, he also insists that their system needs all these weird static routes, even when I showed him that taking them out doesn’t effect the system traffic). Anyway, if someone who knows CISCO routing would check me on this I’d appreciate it…I’ve been doing more with HP in the last 4 years, so my CISCO is a bit rusty.
ETA: Screwed up the second octet on in the second example…should have been 11 instead of 12
-XT