December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to run EIGRP on a simple network.
The following commands configure EIGRP on one router in a simple network:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#interfaceRouter1(config-if)#Ethernet0ip addressRouter1(config-if)#192.168.20.1 255.255.255.0exitRouter1(config)#interfaceSerial0.1point-to-pointRouter1(config-subif)#ip addressRouter1(config-subif)#172.25.2.2 255.255.255.252exitRouter1(config)#router eigrpRouter1(config-router)#55networkRouter1(config-router)#172.25.0.0networkRouter1(config-router)#192.168.20.0exitRouter1(config)#endRouter1#
Naturally you would need to configure the other routers in this
network to also exchange routing information using EIGRP process
number 55. For example:
Router2#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router2(config)#interfaceSerial0.1point-to-pointRouter2(config-subif)#ip addressRouter2(config-subif)#172.25.2.1 255.255.255.252exitRouter2(config)#router eigrpRouter2(config-router)#55networkRouter2(config-router)#172.25.0.0exitRouter2(config)#endRouter2#
This example shows how simple the basic EIGRP configuration is.
To get the standard default functionality, you only need to enable
EIGRP and add at least one network
statement. In the example, we have set the EIGRP process ID
numbers on both routers to 55:
Router1(config)#router eigrp55
This process ID number, which ...