Thursday, March 17, 2016

Configuring and Verifying EIGRP and OSPF on CISCO Routers

Setting up OSPF Routing Protocol
===============================
R1(config)#router ospf 10
R1(config-router)#router-id 1.1.1.1
R1(config-router)#network 10.1.1.1 0.0.0.0 area 0
R1(config-router)#network 11.1.1.1 0.0.0.0 area 0

R2(config)#router ospf 20
R2(config-router)#router-id 2.2.2.2
R2(config-router)#network 10.1.1.2 0.0.0.0 area 0
R2(config-router)#network 12.1.1.1 0.0.0.0 area 0
R2(config-router)#network 13.0.0.1 0.0.0.0 area 0

R3(config)#router ospf 30
R3(config-router)#router-id 3.3.3.3
R3(config-router)#network 13.0.0.2 0.0.0.0 area 0
R3(config-router)#network 14.0.0.1 0.0.0.0 area 0

To restart the OSPF Process
=========================
R1#clear ip ospf process
Reset ALL OSPF processes? [no]: yes
R1#



Verifying Commands
==================
R1# show ip route
R1#show ip ospf neighbor
R1#show interface se0/0/0
==============================================================

Configuring EIGRP Routing Protocol
=================================
R1(config)#router eigrp 200
R1(config-router)#network 10.1.1.1
R1(config-router)#network 11.1.1.1
R1(config-router)#end
R1#
***********************************
R2(config)#router eigrp 200
R2(config-router)#network 13.0.0.1
R2(config-router)#network 10.1.1.2
R2(config-router)#network 12.0.0.1
R2(config-router)#end
R2#
***********************************
R3(config)#router eigrp 200
R3(config-router)#network 13.0.0.2
R3(config-router)#network 14.0.0.1
R3#

***************************************

Verifying Commands
*******************************

show ip eigrp traffic
show ip protocols
 show ip route eigrp
 show ip eigrp topology
 show ip eigrp neighbors

+++++++++++++++++++++++++++++++

No comments:

Post a Comment