Está en la página 1de 2

CONFIGURACION BASICA ROUTER

Nombrar al router
router> enable
router# configure terminal
router(config)# hostname R1
R1(config)#
Desactive la bsqueda DNS
Branch1(config)#no ip domain-lookup
Branch1(config)#exit

Configure un mensaje del da.
r1(config)#banner login #
enter text message. end with the character '#'.
r1: area restringida
#

r1(config)#banner motd #
enter text message. end with the character '#'.
bienvenido a la red,solo acceso autorizado
#

r1(config)#

CONTRASEA PARA LAS CONEXIONES DE VTY.
R1(config)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit

CONTRASEA PARA LAS CONEXIONES DE CONSOLA.
R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit

CONTRASEA DE MODO EXEC.
R1(config)#enable password cisco

CONFIGURACION DE PUERTO FASTETHERNET
R1(config)#interface fastEthernet 0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit

CONFIGURACION DE PUERTO SERIAL Con DTE
R1(config)#interface serial 0/0/0
R1(config-if)#ip address 192.168.2.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#exit

CONFIGURACION DE PUERTO SERIAL Con DCE
R1(config)#interface serial 0/0/0
R1(config-if)#ip address 192.168.2.1 255.255.255.0
R1(config-if)#clock rate 54000
R1(config-if)#no shutdown
R1(config-if)#exit

CONFIGURACION DE LA TABLE DE ENRUTAMIENTO
R1(config)#ip route 192.168.3.0 255.255.255.0 192.168.2.2 + enter luego la siquiente si es el caso

CONFIGURE UN TIEMPO DE ESPERA EXEC DE 15 MINUTOS.
TAREA
Branch1(config)#line console 0
Branch1(config-line)#exec-timeout 15
Branch1(config-line)#
Branch1(config-line)#

R1(config)#line console 0
R1(config-line)#exec-timeout 0 0
R1(config-line)#line vty 0 4
R1(config-line)#exec-timeout 0 0

SINCRONICE LOS MENSAJES NO SOLICITADOS Y EL RESULTADO DE LA DEPURACIN CON EL
RESULTADO
SOLICITADO Y LOS INDICADORES PARA LAS LNEAS DE CONSOLA Y DE TERMINAL VIRTUAL.
Branch1(config)#line 0
Branch1(config-line)#logging synchronous
Branch1(config-line)#
Branch1#

También podría gustarte