Showing posts with label CCNP. Show all posts
Showing posts with label CCNP. Show all posts

Saturday, September 12, 2009

CCNP Advance EIGRP Features

Route summarization
EIGRP has the ability to auto summarize networks. However, if the networks are limited, you may want to disable automatic summarization. In order to do this enter the following command:
Router(config) # no auto-summary.
The limitation with auto summarization is that EIGRP is only capable of summarizing networks which are part of the network. Therefore, for these cases you have to input an auto summarization which the following command:

ip summary-address eigrp 100
subnet

Load balancing in Equal Cost Path


In an equal cost path, the links in the network have are symmetric which means they use the same circuit type and the same same bandwidth capacity, so the same cost is assigned to the each link.
Since both link have the same distance as well, the metrics for its destination is available, through these links which are equal. When EIGRP chooses the successor route, it wants to choose a link which is at the lowest cost. When it sees that the 2 path ways have the same metric then it chooses them as its successors. After this EIGRP will then be able to share the traffic loads across the multiple links, which is known as load balancing.

Load Balancing in Unequal Cost Path
Unequal cost load balancing is when traffic across multiple routes is balanced withing different metric routes. This load balance is done through the variance command.

Router(config-router) #
variance multiplier

In load balancing, the multiplier parameter the values from 1-128 are used. 1 is the default value where there is an equal cost for load balancing


Suppose we have a network with 3 path way
Path 1 has a metric of 10
Path 2 has a metric of 15
Path 3 has a metric of 30
The path which will be selected will be the first path since the metric is lowest in path 1. With EIGRP you have to select that path, and configure it with a variance of 2.
Once you multiply by path and variance then you will get a minimum variance of 20.
10 metric * 2 variance value = 20 minimum metric
EIGRP will includes all routes that have a metric of less than 20 and satisfy the workable condition. EIGRP will take both path one and two since their metric distance is less than 20. The 3rd path will not be taken since 20< 25.
Therefore, the load balancing will occur between path one and path two.
Bandwidth Utilization

Bandwidth needs to saved within networks, so the network performance can be enhanced. By default EIGRP is set to use up to 50 % of bandwidth within an interface for routing traffic. However, this can be changed by using the following command:
ip bandwidth-percent eigrp as-number percentage the as number is AS number and percent is percentage you want to input.

When configuring multipoint interfacess such as Frame Relay it is important to to set the bandwidth to equal to share it across the neighbors.

Monday, September 7, 2009

CCNP Basic EIGRP commands

The EIGRP process is identified by an autonomous system number. If the autonomous system numbers are the same within the routing domain, the routers will be able to exchange information. Otherwise, if the autonomous system numbers do not match then the routers will not be able to exchange information.

To Enable EIGRP the following command needs to be entered

Router (config) #
router eigrp autonomous-system-number

ie router eigrp 10

Next the network need to inputted

Router (config) #
network network number [wildcard mask]
i.e network 172.16.0.0 0.0.0.255
network 172.16.1.0 0.0.0.255

*A wildcard mask is used to connect a router to external router which is outside the autonomous system.



Next the bandwidth need to be set up. By default it is set at the speed of T1
If there are serial links then the bandwidth needs to be set up. The bandwidth is measure in kbps.


Router (config) #
bandwidth kilobytes


EIGRP default route can be enabled with the following command.

ip default-network ip address



Troubleshooting.

show – the show command can be used to trouble shoot

show ip eigrp neighbors

This command shows you if the neighbors within the routers are recognized



show ip route eigrp

shows all EIGRP routes


show ip protocols
shows all dynamic routing protocols enabled on the router

show ip eigrp interfaces
Thie command shows all the interfaces configured for EIGRP.

Fast Ethernet
Fa0/0
Serial
S0/0


show ip eigrp topology

This shows the status of the network.
P (passive) – Network is available
A(active) - Network is not available
U(update) Network is being updated
Q(Query) Requesting information from a neighbor
R(reply) Got a reply or needs a reply
S(struck in active status) There is a problem with the network


show ip eigrp traffic
To see if the packets are sent or received



For more options you can put a question mark after the show command

show ?

Sunday, September 6, 2009

CCNP EIGRP Components

EIGRP Tables
DUAL uses the EIGRP tables, which are provided. Within the EIGRP tables you will find a neighbor table, a topology table and a routing table.

Here are functions each table performs.
Neighbours Table - shows all neighbours adjacent to router
Topology Table - shows all route entries learned by the router
Routing Table – shows the best route to get to other points on the network


EIGRP Packets


Uses Five Packet Types

Hello
Check if the neighbor is up
Update
Used to send routing updates
Query
Finds out information from neighbors regarding routing updates
Reply
This is where the neighbors give a response
Acknowledgement
If you send a message, it must be acknowledged by the person who receives it. This packet is used to acknowledge a reliable packet.
The above are five main packets EIGRP uses. However, EIGRP can also use a packet called request.

Request – This packet is used to get information for a specific route. The information is received from one or more neighbors. Therefore the methods to send a request can either be through a unicast or a multicast process.




EIGRP Metric

EIGRP uses the metric component.
Metric is a Calculation done by the Routing protocol to determine the best path through a network. Since EIGRP uses 32 bits for its calculation it is metric is multiplied by 256. Metric consists of 5 components which are bandwidth, delay, reliability, loading, MTU.

EIGRP Metric Calculation
Metric = bandwidth + delay


EIGRP uses two of the components of metric which are bandwidth and delay. In the bandwidth, the measurement is based on the smallest amount of consumed data between the source and destination. In delay the delays in the path is measured.

Saturday, September 5, 2009

CCNP EIGRP Fundamentals

Enhanced Interior Gateway Routing Protocol (EIGRP) is an advanced distance vector protocol. However, it also has a hybrid routing protocol capability since it combines the best of a distance vector protocol with link state algorithms by using partial updates and neighbor discovery. From other distance vector protocols it offers improvements such as reduction of bandwidth use, fast convergence, support for classless subnets which use CIDR and VLSM, and support for multiple routed protocols like Apple Talk, IP and IPX.


Among the key feature of EIGRP the following are included:
1)Fast Convergence
2)VLSM Subnetting
3)Partial Update
4)Multiple Network Layer Protocol Support

Fast Convergence: EIGRP stores its neighbours routing table so it can take alternatives routes if it original route is gone. Also, it has the ability to ask its neighbours for alternative routes if needed.

VLSM Support: EIGRP uses classless subnets within it routing network. For classful major networks it automatically summarizes routes on the attached interfaces. EIGRP also support manual summarization, and for this it uses VLSM to force a summary route from an interface.

Partial Updates: Partial Updates contain information about the change routes, and they are sent when route need a change in its metric or path. They are handled by multicast or unicast packet instead of broadcast packets since it reduces the use of bandwidth.

Multiple Network Layer Protocol: EIGRP can support IP, IPX, and AppleTalk routed protocols which enable EIGRP to have good stability and high performance networks.


EIGRP has four unique key components.



  1. Protocol-dependent modules: Responsible for requirements within the network layer protocols.
  2. Reliable Transport Protocol (RTP) : Support Unicast and Multicast transmission. RTP's main role is to guarantee a a timely, reliable and efficiently. EIGRP reliable transport protocol (RTP) guarantees timely, reliable, and efficient exchange of routing data between EIGRP neighbours.
  3. Neighbor Discovery and Recovery: Discovery and Recovery allow routers about the other routers that are attached on the network neighbor discovery and recovery enables routers to dynamically learn about other routers on their directly attached network . It does this by allowing EIGRP to build a neighbor table which shows all neighbors adjacent to the router, to a topology table which discovers routes and routing table which choses the best path.


4. Diffusing Update Algorithm (DUAL): DUAL is the heart of EIGRP. It relies on
protocols and data structures to provide all the routers in a network to lead up to the final route.

Friday, September 4, 2009

Routers

Layer 3 Routing

  • Single broadcast domain per interface
  • Every router is its own broadcast domain
  • ACLs can be applied between segments

Issues

  • High per-port cost
  • Layer 3 processing required
  • High latency over layer 2 switching
  • Layers 3 processing happens in software

Nonhierchical Networks Issues

What wrong with Nonhierchical Networks ?

They have:

  • Large collision domain
  • Large broadcast domain
  • High Latency- There is high latency because everyone of the repeaters is repeating the same packet
  • Difficult to troubleshoot

Intelligent Information Network CCNP Module 1

IIN (Intelligent Information Network)

Integrates Network resources and information assets

Three phases in building in IIN are

1) Integrated Transport- All traffic which includes voice, data and video is put together into one IP address, so data which is sent can be secured on the network.

2) Integrated Services- After all the network resources have been gathered, the resources can be shared across the network.

3) Integrated Applications-In the third phase, the networks make the application active, so network capablities such load balancing, application level security, content caching makes the delievery and performnce more efficient for the users.