Skip to content

Instantly share code, notes, and snippets.

@devwolf75
Created November 11, 2015 22:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devwolf75/8f8478b801d5fe3b5785 to your computer and use it in GitHub Desktop.
Save devwolf75/8f8478b801d5fe3b5785 to your computer and use it in GitHub Desktop.
Configuración de Routers para packet tracer CCNA 4

ROUTER R1

en
conf t

CONFIGURACION BÁSICA

hostname R1
no ip domain-lookup
enable secret class
banner motd #WELCOME TO ROUTER R1!#
line con 0
logging synchronous
password cisco
login
exit
line vty 0 4
logging synchronous
password cisco
exit

CONFIGURAR INTERFACES

int fa0/1
ip add 172.16.0.1 255.255.255.128
no shut
exit
int s0/0/0
ip add 192.168.0.1 255.255.255.252
clock rate 64000
no shut
exit
int s0/0/1
ip add 192.168.0.9 255.255.255.252
no shut
exit

CONFIGURAR RIP

router rip
version 2
network 172.16.0.0
network 192.168.0.0
network 192.168.0.8
passive-interface fa0/1
exit

CONFIGURAR PPP

int s0/0/0
encapsulation ppp
exit

CONFIGURAR CHAP

username R2 password cisco
int s0/0/0
ppp authentication chap
exit

CONFIGURAR FRAME-RELAY

int s0/0/1
encapsulation frame-relay
no keepalive
frame-relay map ip 192.168.0.10 101 broadcast cisco
frame-relay interface-dlci 101
exit

FINALMENTE

do copy run start


ROUTER R2

en
conf t

CONFIGURACION BÁSICA

hostname R2
no ip domain-lookup
enable secret class
banner motd #WELCOME TO ROUTER R1!#
line con 0
logging synchronous
password cisco
login
exit
line vty 0 4
logging synchronous
password cisco
exit

CONFIGURAR INTERFACES

int Lo0
ip add 209.165.200.161 255.255.255.224
no shut
exit
int s0/0/0
ip add 192.168.0.2 255.255.255.252
no shut
exit
int s0/0/1
ip add 192.168.0.5 255.255.255.252 #HDLC VIENE POR DEFECTO
clock rate 64000
no shut
exit

CONFIGURAR RIP

router rip
version 2
network 192.168.0.0
network 192.168.0.4
exit

CONFIGURAR PPP

int s0/0/0
encapsulation ppp
exit

CONFIGURAR CHAP

username R1 password cisco
int s0/0/0
ppp authentication chap
exit

FINALMENTE

do copy run start


ROUTER R3

en conf t

CONFIGURACION BÁSICA

hostname R3
no ip domain-lookup
enable secret class
banner motd #WELCOME TO ROUTER R1!#
line con 0
logging synchronous
password cisco
login
exit
line vty 0 4
logging synchronous
password cisco
exit

CONFIGURAR INTERFACES

int fa0/1
ip add 172.16.0.129 255.255.255.128
no shut
exit
int s0/0/0
ip add 192.168.0.10 255.255.255.252
clock rate 64000
no shut
exit
int s0/0/1
ip add 192.168.0.6 255.255.255.252
clock rate 64000
no shut
exit

CONFIGURAR RIP

router rip
version 2
network 172.16.0.128
network 192.168.0.4
network 192.168.0.8
passive-interface fa0/1 exit

CONFIGURAR FRAME-RELAY

int s0/0/0
encapsulation frame-relay
no keepalive
frame-relay map ip 192.168.0.9 101 broadcast cisco
frame-relay interface-dlci 101
exit

FINALMENTE

do copy run start

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment