Está en la página 1de 9

INF-166 ► TELEPROCESO I ► REDES JERÁRQUICAS Y SERVICIOS EN VLANs

LABORATORIO FINAL DE ASIGNATURA: DISEÑO DE 03 CAPAS


Profesor: Ing. Mario Luciano Recio ► ISC, MCE ► mluciano@unapec.edu.do

ORIGINAL NETWORK ADDRESS: 178.100.0.0

NUMBER OF NEEDED USABLE SUBNETS: 2000

NUMBER OF NEEDED USABLE HOST: 15

VLAN 10 ► DATA CENTER ► 178.100.0.32/27 ► SERVICIOS [DHCP, DNS, HTTP, SMTP, PoP3]

VLAN 11 ► MANAGEMENT ►178.100.0.64/27 ► SERVER DHCP POOL

VLAN 12 ► FINANCE ► 178.100.0.96/27 ► ROUTER DHCP POOL

VLAN 13 ► OPERATIONS ► 178.100.0.128/27 ► OPTIONAL

INSTRUCCIONES:
►En compañía del Maestro Mario Luciano en la sesión práctica de Redes Jerárquicas y
Servicios en VLANs, simular un diseño jerárquico de tres capas haciendo uso de Router CISCO
1841 y Switches de Acceso Cisco 2960-24TT.
►El Servicio DHCP se configura en el server para la VLAN MANAGEMENT. Para la VLAN FINANCE,
el DHCP Pool se configura en el Router Cisco 1841.
►Conectar 05 hosts a cada Switch de Acceso y organizarlos en un clúster.
►Coloque nombres a los equipos haciendo uso del comando hostname e incluya un banner
informativo de acceso restringido. Credenciales de consola, enable secret y telnet serán
configuradas en el core.
►Consulte en nuestra Biblioteca Virtual UNAPEC el libro referencia que contiene las sentencias
de comando que usamos en el Laboratorio Final:
Ariganello, E. (2014). Técnicas de configuración de routers Cisco. RA-MA Editorial.
https://elibro.net/es/lc/unapec/titulos/106398

En la siguiente página se encuentra la documentación profesional de Laboratorio Final.

Si tiene alguna pregunta, consúlteme: mluciano@unapec.edu.do | +1 849 869 1985

Ing. Mario Antonio Luciano Recio


Octubre de 2021

INF-166: LABORATORIO FINAL DE ASIGNATURA ► PROF. MARIO LUCIANO


CONSULTE NUESTRA BIBLIOTECA ONLINE: https://biblioteca.unapec.edu.do/
CONFIGURANDO SERVICIOS EN RED: DHCP

INF-166: LABORATORIO FINAL DE ASIGNATURA ► PROF. MARIO LUCIANO


CONSULTE NUESTRA BIBLIOTECA ONLINE: https://biblioteca.unapec.edu.do/
CONFIGURANDO SERVICIOS EN RED: DNS

INF-166: LABORATORIO FINAL DE ASIGNATURA ► PROF. MARIO LUCIANO


CONSULTE NUESTRA BIBLIOTECA ONLINE: https://biblioteca.unapec.edu.do/
CONFIGURANDO SERVICIOS EN RED: HTTP

INF-166: LABORATORIO FINAL DE ASIGNATURA ► PROF. MARIO LUCIANO


CONSULTE NUESTRA BIBLIOTECA ONLINE: https://biblioteca.unapec.edu.do/
CONFIGURANDO SW AC DATACENTER:

Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname DATACENTER
DATACENTER(config)#vlan 10
DATACENTER(config-vlan)#name datacenter
DATACENTER(config-vlan)#exit
DATACENTER(config)#interface range fastethernet 0/1-23
DATACENTER(config-if-range)#switchport mode access
DATACENTER(config-if-range)#switchport access vlan 10
DATACENTER(config-if-range)#exit
DATACENTER(config)#interface fastethernet 0/24
DATACENTER(config-if)#switchport mode trunk
DATACENTER(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to
down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to up
DATACENTER(config-if)#do wr
Building configuration...
[OK]
DATACENTER(config-if)#
CONFIGURANDO SW AC MANAGEMENT:

Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname MANAGEMENT
MANAGEMENT(config)#vlan 11
MANAGEMENT(config-vlan)#name management
MANAGEMENT(config-vlan)#exit
MANAGEMENT(config)#interface range fastethernet 0/1-23
MANAGEMENT(config-if-range)#switchport mode access
MANAGEMENT(config-if-range)#switchport access vlan 11
MANAGEMENT(config-if-range)#exit
MANAGEMENT(config)#interface fastethernet 0/24
MANAGEMENT(config-if)#switchport mode trunk
MANAGEMENT(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to
down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to up
MANAGEMENT(config-if)#do wr
Building configuration...
[OK]
MANAGEMENT(config-if)#

INF-166: LABORATORIO FINAL DE ASIGNATURA ► PROF. MARIO LUCIANO


CONSULTE NUESTRA BIBLIOTECA ONLINE: https://biblioteca.unapec.edu.do/
CONFIGURANDO SW AC FINANCE:

Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname FINANCE
FINANCE(config)#vlan 12
FINANCE(config-vlan)#name finance
FINANCE(config-vlan)#exit
FINANCE(config)#interface range fastethernet 0/1-23
FINANCE(config-if-range)#switchport mode access
FINANCE(config-if-range)#switchport access vlan 12
FINANCE(config-if-range)#exit
FINANCE(config)#interface fastethernet 0/24
FINANCE(config-if)#switchport mode trunk
FINANCE(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to
down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to up
FINANCE(config-if)#do wr
Building configuration...
[OK]
FINANCE(config-if)#
CONFIGURANDO SW TRUNK:

Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname TRUNK
TRUNK(config)#vlan 10
TRUNK(config-vlan)#name datacenter
TRUNK(config-vlan)#vlan 11
TRUNK(config-vlan)#name management
TRUNK(config-vlan)#vlan 12
TRUNK(config-vlan)#name finance
TRUNK(config-vlan)#exit
TRUNK(config)#interface range fastethernet 0/1-5
TRUNK(config-if-range)#switchport mode trunk
TRUNK(config-if-range)#exit
TRUNK(config)#interface fastethernet 0/24
TRUNK(config-if)#switchport mode trunk
TRUNK(config-if)#do wr
Building configuration...
[OK]
TRUNK(config-if)#

INF-166: LABORATORIO FINAL DE ASIGNATURA ► PROF. MARIO LUCIANO


CONSULTE NUESTRA BIBLIOTECA ONLINE: https://biblioteca.unapec.edu.do/
CONFIGURANDO CORE: POOLS DHCP

Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname CORE
CORE(config)#ip dhcp pool 10
CORE(dhcp-config)#network 178.100.0.32 255.255.255.224
CORE(dhcp-config)#default-router 178.100.0.33
CORE(dhcp-config)#dns-server 178.100.0.35
CORE(dhcp-config)#exit
CORE(config)#ip dhcp excluded-address 178.100.0.33 178.100.0.37
CORE(config)#ip dhcp pool 12
CORE(dhcp-config)#network 178.100.0.96 255.255.255.224
CORE(dhcp-config)#default-router 178.100.0.97
CORE(dhcp-config)#dns-server 178.100.0.35
CORE(dhcp-config)#exit
CORE(config)#ip dhcp excluded-address 178.100.0.97 178.100.0.101
CORE(config)#do wr
Building configuration...
[OK]
CORE(config)#
CONFIGURANDO CORE: SUBINTERFACES VIRTUALES

CORE>enable
CORE#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
CORE(config)#interface fastethernet 0/0.10
CORE(config-subif)#encapsulation dot1q 10
CORE(config-subif)#ip address 178.100.0.33 255.255.255.224
CORE(config-subif)#exit
CORE(config)#interface fastethernet 0/0.11
CORE(config-subif)#encapsulation dot1q 11
CORE(config-subif)#ip address 178.100.0.65 255.255.255.224
CORE(config-subif)#ip helper-address 178.100.0.34
CORE(config-subif)#exit
CORE(config)#interface fastethernet 0/0.12
CORE(config-subif)#encapsulation dot1q 12
CORE(config-subif)#ip address 178.100.0.97 255.255.255.224
CORE(config-subif)#exit
CORE(config)#interface fastethernet 0/0
CORE(config-if)#no shutdown

CORE(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

INF-166: LABORATORIO FINAL DE ASIGNATURA ► PROF. MARIO LUCIANO


CONSULTE NUESTRA BIBLIOTECA ONLINE: https://biblioteca.unapec.edu.do/
%LINK-5-CHANGED: Interface FastEthernet0/0.10, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.10, changed state to up

%LINK-5-CHANGED: Interface FastEthernet0/0.11, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.11, changed state to up

%LINK-5-CHANGED: Interface FastEthernet0/0.12, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.12, changed state to up

CONFIGURANDO CONTRASEÑAS: ENABLE SECRET

CORE>enable
CORE #configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
CORE(config)#enable password teleproceso
CORE(config)#enable secret cisco
CORE(config)#exit
CORE#
%SYS-5-CONFIG_I: Configured from console by console
CONFIGURANDO CONTRASEÑAS: CONSOLE

CORE>enable
Password:
CORE#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
CORE(config)#line console 0
CORE(config-line)#login
% Login disabled on line 0, until 'password' is set
CORE(config-line)#password inf166
CORE(config-line)#exit
CORE(config)#exit
CORE#
%SYS-5-CONFIG_I: Configured from console by console

CORE#copy running-config startup-config


Destination filename [startup-config]?
Building configuration...
[OK]

INF-166: LABORATORIO FINAL DE ASIGNATURA ► PROF. MARIO LUCIANO


CONSULTE NUESTRA BIBLIOTECA ONLINE: https://biblioteca.unapec.edu.do/
CONFIGURANDO CONTRASEÑAS: TELNET

CORE>enable
Password:
CORE#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
CORE(config)#line vty 0 4
CORE(config-line)#login
% Login disabled on line 194, until 'password' is set
% Login disabled on line 195, until 'password' is set
% Login disabled on line 196, until 'password' is set
% Login disabled on line 197, until 'password' is set
% Login disabled on line 198, until 'password' is set
CORE(config-line)#password cisco1
CORE(config-line)#exit
CORE(config)#exit
CORE#
%SYS-5-CONFIG_I: Configured from console by console
copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
CORE#

INF-166: LABORATORIO FINAL DE ASIGNATURA ► PROF. MARIO LUCIANO


CONSULTE NUESTRA BIBLIOTECA ONLINE: https://biblioteca.unapec.edu.do/

También podría gustarte