We're starting to move from an all static routes setup to dynamic routing using EIGRP across our WAN. I've enabled EIGRP on all of our spokes (remote offices) and now we're getting ready to enable on the hub (home office). I've got it working with this config:
router eigrp 64
redistribute static
network 10.0.0.0
network 192.168.1.0
distribute-list 60 out
no auto-summary
access-list 60 permit 10.1.1.0 0.0.0.255
access-list 60 permit 172.30.1.0 0.0.0.255
Here is the routing table on the hub router:
172.30.0.0/24 is subnetted, 1 subnets
S 172.30.1.0 [1/0] via 192.168.1.242
10.0.0.0/24 is subnetted, 1 subnets
S 10.1.1.0 [1/0] via 192.168.1.242
192.168.1.0/30 is subnetted, 1 subnets
C 192.168.1.240 is directly connected, FastEthernet0/1
Everything looks good.... until I check the routing table on the spokes. It is showing as an EX route instead of a redistributed static route:
172.30.0.0/24 is subnetted, 1 subnets
D EX 172.30.1.0 [170/30720] via 192.168.1.241, 00:15:27, FastEthernet0/0
10.0.0.0/24 is subnetted, 1 subnets
D EX 10.1.1.0 [170/30720] via 192.168.1.241, 00:15:27, FastEthernet0/0
192.168.1.0/30 is subnetted, 1 subnets
C 192.168.1.240 is directly connected, FastEthernet0/0
Any help would be greatly appreciated. Thanks!