Friday, May 21, 2010

CCNP - ENTERPRISE - EIGRP configuration review

Configure EIGRP:
R1(config)#router eigrp 1
R1(config-router)#no auto-summary
R1(config-router)#network 172.16.30.0 0.0.0.255
Where 1 = The EIGRP AS number which must match with adjacency neighbors
           no auto-summary = prevents route summarisation and advertises subnets
            Network = states which network to advertise AND which interface to advertise it out of

Verify EIGRP:
#sh ip eigrp neighbors
    -displays status of neighbor relationships

#sh ip eigrp topology
    - displays the topology of the eigrp AS
Where - P=Passive, network is available and installed in the routing table
    A = Active, network is currently unavailable and EIGRP is working to source a new route
    U = Update, network is being updated
    Q = Query, applied if an outstanding packet query exists for the network i.e. waiting for an ACK
    R = Reply, router is generating a reply for this network or waiting on an ACK to a reply packet
    SIA = Stuck-In-Active, signifies EIGRP convergence issue.
    *SIA status must be reset when one or more queries to a neighbor do not return before the Active timer expires (usually 3 minutes)

No comments:

Post a Comment