You are on page 1of 3

BASIC ROUTER CONFIGURATIONS:

router#reload
//////////////////////////////////////////////////////////
R1
ena
erase startup-config
config t
no ip domain-lookup
hostname R1
ena sec class
line con 0
pass cisco
login
logg synch
exit
line vty 0 4
pass cisco
login
logg synch
exit
int fa0/1
ip add 192.168.10.3 255.255.255.0
no shutdown
exit
int s0/2/0
ip add 10.1.1.1 255.255.255.252
clock rate 64000
no shutdown
exit
.......................
EIGRP
router eigrp 101
network 192.168.10.0 0.0.0.255
network 10.1.1.0 0.0.0.3
no auto-summary
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
R2
config t
no ip domain-lookup
hostname R5
ena sec class
line con 0
pass cisco
login
logg synch
exit
line vty 0 4
pass cisco
login
logg synch
exit
int s0/0
ip add 10.1.1.2 255.255.255.252
no shutdown
exit
int s0/1
ip add 10.2.2.2 255.255.255.252
clock rate 64000
no shutdown
exit
############################################
EIGRP
router eigrp 101
network 10.1.1.0 0.0.0.3
network 10.2.2.0 0.0.0.3
no auto-summary

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""
R3
config t
no ip domain-lookup
hostname R4
ena sec class
line con 0
pass cisco
login
logg synch
exit
line vty 0 4
pass cisco
login
logg synch
exit
int fa0/1
ip add 192.168.20.3 255.255.255.0
no shutdown
exit
int s0/1
ip add 10.2.2.1 255.255.255.252
no shutdown
exit
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
EIGRP
router eigrp 101
network 192.168.20.0 0.0.0.255
network 10.2.2.0 0.0.0.3
no auto-summary
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
configuring minimum password:

##############################################

APPLAYING STATIC AND DEFAULT ROUTE:


ip route 0.0.0.0 0.0.0.0 [exit intface goes here]
ip route 192.168.3.0 255.255.255.0 s0/0

You might also like