You are on page 1of 2

-------------------------------------------------------------------

COLOCAR UN MENSAJE DE BIENVENIDA


Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#banner motd #Este es un dispositivo seguro#
Router(config)#
En resumen
Router>enable
Router#configure terminal
Router(config)#banner motd #Este es un dispositivo seguro#
enable
configure terminal
banner motd #Este es un dispositivo seguro#
exit
--------------------------------------------------------------------
CONFIGURAR LA INTERFACE FASTETHERNET Fa0/0

Router>enable
Router#configure terminal
ROUTER_LIMA(config-if)#interface fastethernet 0/0
ROUTER_LIMA(config-if)#description Esta Interface pertenece a la LAN 01
ROUTER_LIMA(config-if)#ip address 172.16.1.30 255.255.255.224
ROUTER_LIMA(config-if)#no shutdown
ROUTER_LIMA(config-if)#exit
ROUTER_LIMA(config)#
COPIAR Y PEGAR
enable
configure terminal
interface fastethernet 0/0
description Esta Interface pertenece a la LAN 01
ip address 172.16.1.30 255.255.255.224
no shutdown
exit

-----------------------------------------------------------------------
CAMBIAR DE NOMBRE A UN DISPOSITIVO
Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname ROUTER_LIMA
ROUTER_LIMA(config)#
COPIAR Y PEGAR
enable
configure terminal
hostname ROUTER_LIMA
exit
----------------------------------------------------------------------------
CONFIGURAR LA CLAVE LINE VTY
ROUTER_LIMA>enable
ROUTER_LIMA#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
ROUTER_LIMA(config)#line vty 0 4
ROUTER_LIMA(config-line)#password cisco
ROUTER_LIMA(config-line)#login
ROUTER_LIMA(config-line)#end
ROUTER_LIMA#
%SYS-5-CONFIG_I: Configured from console by console
ROUTER_LIMA#
COPIAR Y PEGAR
enable
configure terminal
line vty 0 4
password cisco
login
end
--------------------------------------------------------------------------------
--
CONFIGURAR LA CLAVE PARA INGRESAR AL MODO PRIVILEGIADO
ROUTER_LIMA>enable
ROUTER_LIMA#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
ROUTER_LIMA(config)#enable secret cisco
ROUTER_LIMA(config)#end
ROUTER_LIMA#
%SYS-5-CONFIG_I: Configured from console by console
ROUTER_LIMA#exit
COPIAR Y PEGAR
enable
configure terminal
enable secret ciscoo
end
--------------------------------------------------------------------------------
------

You might also like