Orbit-Computer Solutions.Com

Computer Training & Networking Solutions
Chika Nwokeoma, EzineArticles.com Basic Author < <
 
IP
 
 
 
Add to Favorite

 EIGRP Configuration

On this page, we look at:
 
 
 
 EIGRP Configuration
To configure EIGRP on a network use the following command:

 
R1>enable

R1#configure terminal

R1(config)# router eigrp 100

R1(config-router)#network 192.168.3.0

R1(config-router)#network 172.16.1.0
R1(config-router)#end

 
From the command above, we used the command router eigrp 100 to turn on the protocol, all other routers on the network must be configured the same way, each router must declare its directly connected network to be seen by other routers on the network, and most importantly, all routers on the same network running EIGRP must be configured with the same process number 100
 
 
 
 
 
 
You want to redistribute routes that were learned by the router into the EIGRP routing process.
using the redistribute command:
 
Redistributing Routes into EIGRP
HQ#configure terminal
HQ(config)#ip route 192.168.2.0 255.255.255.0 172.16.1.5
HQ(config)#router eigrp 100
HQ(config-router)#redistribute static
HQ(config-router)#end

HQ#

 
 
 
Setting the properties of the routes that are redistributed from another routing protocol with the default-metric command:
 
HQ#configure terminal
HQ(config)#router eigrp 100
HQ(config-router)#redistribute rip
HQ(config-router)#default-metric 1000 100 250 100 1500
HQ(config-router)#end
 
Use the show ip protocols command to view your route redistribution.
 
 
Creating a Default Route in EIGRP
 
You want to propagate a default route within EIGRP.
 
Configuring EIGRP to propagate a default route is by simply redistributing a static route to 0.0.0.0/0,
 
Use the following commands;
 
HQ#configure terminal
HQ(config)#ip route 0.0.0.0 0.0.0.0 172.16.1.5
HQ(config)#access-list 7 permit 0.0.0.0
HQ(config)#router eigrp 100
HQ(config-router)#redistribute static
HQ(config-router)#distribute-list 7 out static
HQ(config-router)#end
Router1#
 
If you log on to other routers, you will see that EIGRP is forwarding this route, and that it is accepted as a candidate default route. Use the following command to view:
Router2#show ip route 0.0.0.0
 
 
 
 
 
 
 
 
 
 
 

        

  

 
Copyright 2009 - 2011. Orbit-Computer-Solutions.Com. All rights reserved.   Web Links  Privacy Policy  
 
The information provided on this website is for informational purposes only. Orbit-computer-solutions.com makes no warranties, either expressed or implied,
 with respect to any information contained on this website.
Orbit computer solutions.com reserves the right to change this policy at any time without prior notice.
Cisco and All related product mentioned in any portion of this website are the registered trademarks of Cisco.com their respective owners.
Microsoft Windows and All related products mentioned in any portion of this website are registered trademark of Microsoft Corporation.