Best way to send EIGRP default route to a single router?

tomsettomset Member Posts: 79 ■■□□□□□□□□
Hey guys,

Quick question - I have a hub and spoke network at work and I'm looking for the best way to propagate a default route to my spoke routers running EIGRP. I want to be able to send this default route via EIGRP to the spoke router without other routers learning about this default route. What's the best way to do this?

(I know I could just do a "ip route 0.0.0.0 0.0.0.0 *next hop*" but I'm looking for a way to do this using EIGRP. Also, doesn't the "ip default-network" command propagate the default route to all EIGRP routers?)
Next up:
CCIP

Comments

  • jezg76jezg76 Member Posts: 97 ■■□□□□□□□□
    HUB:
    -if)#ip summary-address eigrp 1 0.0.0.0 0.0.0.0

    SPOKE:
    Gateway of last resort is 10.1.1.1 to network 0.0.0.0

    10.0.0.0/24 is subnetted, 1 subnets
    C 10.1.1.0 is directly connected, Serial1/0
    D* 0.0.0.0/0 [90/2297856] via 10.1.1.1, 00:00:06, Serial1/0

    Would that meet your needs?
    policy-map type inspect TACO
    class type inspect BELL
    drop log
  • tomsettomset Member Posts: 79 ■■□□□□□□□□
    I appreciate the quick reply, it looks like that would work.

    Here's a related question - which is generally regarded as the better method for spoke routers:

    1. Use a default static route (ip route 0.0.0.0 0.0.0.0 *next hop*) and not use any routing protocols on the spoke router. The hub router would be running EIGRP and redistribute the static route going to the spoke router.

    OR

    2. Use EIGRP on the spoke router (assume all other routers are using EIGRP) and reduce the size of the spoke router's routing table with ip summary-address, distribute lists, or ip default-network. Also, use the "EIGRP stub" command on the spoke router.


    Is there an advantage of using one method over the other??

    It seems to me that just using a static default route would be best because the router doesn't have to use CPU/memory resources while running EIGRP. If anyone could give me some advantages of running EIGRP in this instance, I would appreciate it!
    Next up:
    CCIP
  • darkuserdarkuser Member Posts: 620 ■■■□□□□□□□
    this may help

    http://www.cisco.com/warp/public/105/default.html

    the summary-address is and eigrp specific command
    rm -rf /
  • tomsettomset Member Posts: 79 ■■□□□□□□□□
    darkuser wrote:
    this may help

    http://www.cisco.com/warp/public/105/default.html

    the summary-address is and eigrp specific command

    Yeah, I've read through that document before. However, it only describes the various options regarding the configuration of gateways of last resort. There's no discussion on which method is preferred.

    I'd like to keep all of my routers in the EIGRP domain for the sake of consistency, but I'm struggling to find a good reason to do so on my spoke routers when a static default route seems to be the most efficient way to reach the hub routers.
    Next up:
    CCIP
  • Sanis4lifeSanis4life Banned Posts: 60 ■■□□□□□□□□
    I just happen to read about this yesterday. According to the CCIE TCP/IP Routing, using eigrp stub seems to be the method they mention when configuring routers in a hub and spoke environment. The exact reason why one would use stub routing over static routes, or vice versa, is a good question.
  • cisco_troopercisco_trooper Member Posts: 1,441 ■■■■□□□□□□
    Don't forget about the subnets connected to your stub router. How is the rest of your network going to know how to reach these subnets?

    Stub routing allows the stub router to advertise information regarding its connected and summary addresses, but keeps the stub router from being queried, eliminating the possibility that stub router will cause stuck in active conditions or other instabilities throughout the rest of the network.

    Hope that helps. :)
  • cisco_troopercisco_trooper Member Posts: 1,441 ■■■■□□□□□□
    As for the default route, I would configure a static at the hub router and advertise it via EIGRP.

    At your stub routers I would configure a distribute list to accept only the default route.

    If there are any routers connected to your hub that you do not want to receive the default route, configure a distribute list so that they don't accept that default route.

    With this solution you have the benefits of running EIGRP on those stub routers, so you don't have to configure static routes to everything. This should scale better.

    Hope that helps. :)
  • darkuserdarkuser Member Posts: 620 ■■■□□□□□□□
Sign In or Register to comment.