I have 3 routers connected in a daisy chain fashion and all 3 are running eigrp.
R1---R2---R3---INTERNET
I'm am going over the methods to inject a default route into EIGRP and all the methods worked as I expected except the default route and network command option.
On router 3 I have the following config and a route is distributed to R1 and R2.
router eigrp 1
network 0.0.0.0
no auto-summary
!
ip route 0.0.0.0 0.0.0.0 fastEthernet 0/1
If I change the default route to point to the next-hop ip address instead of fastEthernet 0/1 the default route is no longer distributed to R1 and R2.
ip route 0.0.0.0 0.0.0.0 1.1.1.2
Just wondering why that happens?