mzinz wrote: » Got it, that makes sense. For some reason, though, I still can't get it to work, even with redistributing static: router eigrp 55 redistribute static route-map Static-Routes-ACL passive-interface GigabitEthernet0/0 passive-interface GigabitEthernet0/1 network 10.0.202.0 0.0.0.255 network 10.10.1.0 0.0.0.255 <...> #sh access-list Static-Routes-ACL Standard IP access list Static-Routes-ACL 10 permit 10.10.59.0, wildcard bits 0.0.0.255 (3 matches) 20 permit 10.10.50.0, wildcard bits 0.0.0.255 <...> When I go onto a router that has a neighbor relationship, all networks show up except the ones in the Static-Routes-ACL... Any idea why?
BURDY53 wrote: » When configuring EIGRP, do the network commands pertain only to the ip addresses only on the router its configured on? Or do they include networks on other routers within the same AS? Thanks!
Forsaken_GA wrote: » Where this gets a little fuzzy is when you use static routes. Static routes that are pointed towards directly connected interfaces will match, as those routes are associated with an interface. If the next hop is specified as an IP, and not an interface, then it won't match: Example - router eigrp 1 network 192.168.50.0 No interfaces are configured with an IP that matches, but I have a static route like so - ip route 192.168.50.0 255.255.255.0 fa0/0 Since the static route is pointed at fa0/0, then the EIGRP logic matches, and the router will announce the route. If the static route had been defined thusly: ip route 192.168.50.0 255.255.255.0 10.0.0.1 Then it would not have matched, and the router will not announce the route.
MrBrian wrote: » Interesting stuff! So it propagates the first ip route example you gave because the "fa0/0" argument is the local interface out which you're telling the router to forward packets out of to get to the 192.168.50.0 net, correct? Which is why with (I think) in ios 12.3 and above, you can enable the routing protocol as an interface subcommand (at least with ospf you can). So the EIGRP routing logic will check its local interfaces, against its network/wildcard commands, I get that. However, its possible that it has no interfaces with that net (like 192.168.50.0 in your example), but it has that net mapped in a static route to one of its outgoing interfaces (fa0/0 in your example), and it will end up propagating it this way? I'm gonna have to lab all this to verify, sounds cool though.. I just started reading 'ROUTE' so please excuse me if I'm off base a little lol