Master CCNA

How to Master CCNA Ebook

 

 

My book will help you Master CCNA

Master CCNP SWITCH

How to master CCNP SWITCH ebook

 

 

My book will help you Master CCNP SWITCH

Master CCNP ROUTE

How to master CCNP ROUTE Ebook

 

 

My book will help you Master CCNP ROUTE

Print

EIGRP Hybrid Bandwidth Pacing

Written by Rene Molenaar on . Posted in EIGRP

Scenario:

A large international ISP has hired you as one of their network engineers. The ISP still has a fairly large customer that is using an older frame-relay network. All of your colleagues are too busy working with MPLS and you are the only one who is capable of fixing frame-relay problems.  The ISP wants you to look at the frame-relay network because there have been some congestion problems with EIGRP. It's up to you to configure the most optimal settings!

Goal:

  • The frame-relay switch has been preconfigured for you.
  • Router Tilburg is the Hub router and all other routers are the spoke routers.
  • Router NewDelhi, Berlin and Paris each have a PVC with a CIR of 256kbps.
  • Router NewYork has a PVC with a CIR of 128kbps.
  • Every router has a loopback0 interface:
    Tilburg: 1.1.1.1 /24
    NewDelhi: 2.2.2.2 /24
    Berlin: 3.3.3.3 /24
    Paris: 4.4.4.4 /24
    NewYork: 5.5.5.5 /24
  • Configure frame-relay and EIGRP AS 1 on all routers with the most optimal settings for this network.

IOS:

c3640-jk9s-mz.124-16.bin

Topology:

EIGRP Hybrid Bandwidth Pacing Network Topology

You need to register to download the GNS3 Topology File. (Registration is Free!)

Related Articles
Only registered users can write comments!

Comments (8)

  • avatar
    pestebogdan

    Hi Rene,

    I'm actually going to take my CCNP ROUTE in a couple of weeks, and I remember seeing this type of question in a practice test. So, just want to check that my belief if correct..aside from setting the obvious CIR bandwidth on the spokes, the hub Bw should be set on the physical interface, and the value is 512 ?

    Great labs by the way, really Cisco exam style.

  • avatar
    ReneMolenaar

    Hello Bogdan,

    Thanks for your comment, glad you like the labs! :D

    About EIGRP and frame-relay bandwidth...it depends on your setup:

    1. Point-to-point sub-interfaces
    2. Point-to-multipoint interfaces
    3. A hybrid solution (this lab) where you mix point-to-point and point-to-multipoint.

    I would highly suggest taking a look at this Cisco article that describes all methods:

    http://www.cisco.com/en/US/tech/tk365/technologies_tech_note09186a0080094063.shtml

    Let me know if that helps you ok?

    Rene

  • avatar
    breland_101

    Would it be possible to to come up with a video solution? I understand that we are using both point to multi-point and point to point configuration since we have a spoke with a different speed, however router Tillburg I assume has a dedicated T1. so what do we do with the left over bandwidth?

  • avatar
    ReneMolenaar

    I think I will record them this week...stay tuned :)

  • avatar
    fey9999

    Hoi Rene,

    Can you come with the video solution or final configs?

    Alvast bedankt,

    Marco

  • avatar
    ReneMolenaar

    Hoi Marco,

    Als het een beetje meezit neem ik ze deze week op :)

    Groeten Rene

  • avatar
    Bougrine

    Enable EIGRP on all routers:
    !
    router eigrp 1
    network 0.0.0.0
    no auto-summary
    !
    Tilburg
    interface Serial0/0
    ip address 192.168.1.1 255.255.255.0
    encapsulation frame-relay
    no ip split-horizon eigrp 1
    serial restart-delay 0
    frame-relay map ip 192.168.1.2 102 broadcast
    frame-relay map ip 192.168.1.3 103 broadcast
    frame-relay map ip 192.168.1.4 104 broadcast
    frame-relay map ip 192.168.1.5 105 broadcast
    !
    Paris
    interface Serial0/0
    ip address 192.168.1.4 255.255.255.0
    encapsulation frame-relay
    serial restart-delay 0
    frame-relay map ip 192.168.1.1 401 broadcast
    !

    NewDelhi
    interface Serial0/0
    ip address 192.168.1.2 255.255.255.0
    encapsulation frame-relay
    serial restart-delay 0
    frame-relay map ip 192.168.1.1 201 broadcast
    !
    etc....

  • avatar
    Dardoufa

    If we decide to go with point-to-multipoint, as I understand the bandwidth set on Tilburg will have to be 128*4 (where 128 is the lowest bandwidth).
    On each of the spoke routers we can set the correct bandwidth, given by the exercise, but we also have to limit the actual bandwidth used by eigrp. This value should be the same in both directions. The bandwidth used for eigrp on Tilburg is 128*0.50 = 64K ( 50% of bandwidth is used for eigrp, I always thought it was 75%, but never mind).
    So If we set the bandwidth on Paris to be 256, then in order to use 64K for eigrp we need to use the bandwidth-percent command set to 25 (64/256=25).

    Please correct me if I am wrong, because I always find these exercises confusing.