Options

which routes are forwarded by EIGRP router?

johnifanx98johnifanx98 Member Posts: 329
Say, a router has routes of O(OSPF), D(EIGRP), and S(static). Which routes will be forwarded by the EIGRP router?

I thought EIGRP should forward routes shown in "show ip route eigrp", which include D and S. However, it turns out S is not included in the output.

Comments

  • Options
    networker050184networker050184 Mod Posts: 11,962 Mod
    It sends whatever you tell it to! You can use a network command to have it send local connected networks participating in EIGRP. For other protocols (OSPF, static) you would need to redistribute them in.
    An expert is a man who has made all the mistakes which can be made.
  • Options
    pinkiaiiipinkiaiii Member Posts: 216
    as mod said:redistribute static command or b) using the network 0.0.0.0 command to advertise the default route to internal router(s).

    while static might not appear in your sh ip eigrp route ,but think if you ran sh run or sh ip route it would be there.
  • Options
    johnifanx98johnifanx98 Member Posts: 329
    It sends whatever you tell it to! You can use a network command to have it send local connected networks participating in EIGRP. For other protocols (OSPF, static) you would need to redistribute them in.

    Jee! For years I thought the command "network [x.x.x.x]" means which network interface the EIGRP will use to fwd routes. Thank you!
  • Options
    networker050184networker050184 Mod Posts: 11,962 Mod
    The network statement tells the router which interfaces participate in the protocol. Interfaces participating in the protocol send hellos to form neighbors. The protocol also adds the connected prefixes.
    An expert is a man who has made all the mistakes which can be made.
  • Options
    johnifanx98johnifanx98 Member Posts: 329
    The network statement tells the router which interfaces participate in the protocol. Interfaces participating in the protocol send hellos to form neighbors. The protocol also adds the connected prefixes.

    In a case we use network statements to add directly connected networks as 192.168.1.0 and 10.1.0.0, and then use passive to disable the network interface of 10.1.0.0. I figure the route to 10.1.0.0 will still be forwarded by the EIGRP router right?
  • Options
    networker050184networker050184 Mod Posts: 11,962 Mod
    Yes. Passive interface connected networks are still advertised but do not send/receive hellos.
    An expert is a man who has made all the mistakes which can be made.
Sign In or Register to comment.