2.1 CASO 3 - ENRUTAMIENTO DE VLAN - ROUTER - Docente

Descargar como docx, pdf o txt
Descargar como docx, pdf o txt
Está en la página 1de 7

CASO 3

ENRUTAMIENTO DE VLAN – ROUTER

DOCENTE

1. Ingresar los equipos solicitados

2. Crear las VLAN ESTUDIANTES Y DOCENTE en los Switchs 1 y 3, VLAN GESTIÓN en el


SW3

VLAN Nombre
VLAN10 ESTUDIANTES
VLAN20 DOCENTES
VLAN90 GESTIÓN

Configuración en el SW1
Switch>
Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname SW1
SW1(config)#vlan 10
SW1(config-vlan)#name ESTUDIANTES
SW1(config-vlan)#exit
SW1(config)#vlan 20
SW1(config-vlan)#name DOCENTES
SW1(config-vlan)#EXIT
SW1(config)#vlan 90
SW1(config-vlan)#name GESTION
SW1(config-vlan)#exit
SW1(config)#

Configuración en el SW2
Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#host SW2
SW2(config)#vlan 10
SW2(config-vlan)#name ESTUDIANTES
SW2(config-vlan)#exit
SW2(config)#vlan 20
SW2(config-vlan)#name DOCENTES
SW2(config-vlan)#exit
SW2(config)#vlan 90
SW2(config-vlan)#name GESTION
SW2(config-vlan)#exit

Configuración en el SW3
Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#host SW3
SW3(config)#vlan 10
SW3(config-vlan)#name ESTUDIANTES
SW3(config-vlan)#exit
SW3(config)#vlan 20
SW3(config-vlan)#name DOCENTES
SW3(config-vlan)#EXIT
SW3(config)#vlan 90
SW3(config-vlan)#name GESTION
SW3(config-vlan)#exit

3. Configurar la IP para la VLAN de GESTION en los 3 SWITCHs

Vlan 90 192.168.90.10 /24

Configuración en el SW1
SW1(config)#int vlan 90
SW1(config-if)#ip add 192.168.90.10 255.255.255.0
SW1(config-if)#exit
%LINK-5-CHANGED: Interface Vlan90, changed state to up

Configuración en el SW2
SW2(config)#int vlan 90
SW2(config-if)#ip add 192.168.90.10 255.255.255.0
SW2(config-if)#exit
%LINK-5-CHANGED: Interface Vlan90, changed state to up
Configuración en el SW3
SW3(config)#int vlan 90
SW3(config-if)#ip add 192.168.90.10 255.255.255.0
SW3(config-if)#exit
%LINK-5-CHANGED: Interface Vlan90, changed state to up

4. Configurar los puertos de enlace troncal para los Switches

SWITCH PUERTO
SW1 Fa0/7
SW2 Fa0/7, Fa0/8, fa0/9
SW3 Fa0/8

Configuración en el SW1
SW1(config)#int f0/7
SW1(config-if)#sw mode trunk

SW1(config-if)#switchport trunk native vlan 1


SW1(config-if)#switchport trunk allowed vlan 10,20,90,1
SW1(config-if)#exit
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/7, changed state
to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/7, changed state
to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan90, changed state to up

Configuración en el SW2
SW2(config)#int f0/7
SW2(config-if)#sw mode trunk
SW2(config-if)#switchport trunk native vlan 1
SW2(config-if)#switchport trunk allowed vlan 10,20,90,1
SW2(config-if)#exit
SW2(config)#int f0/8
SW2(config-if)#sw mode trunk
SW2(config-if)#switchport trunk native vlan 1
SW2(config-if)#switchport trunk allowed vlan 10,20,90,1
SW2(config-if)#exit
SW2(config)#int f0/9
SW2(config-if)#sw mode trunk
SW2(config-if)#switchport trunk native vlan 1
SW2(config-if)#switchport trunk allowed vlan 10,20,90,1
SW2(config-if)#exit
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/8, changed state
to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/8, changed state
to up

Configuración en el SW3
SW3(config)#int f0/8
SW3(config-if)#sw mode trunk
SW3(config-if)#switchport trunk native vlan 1
SW3(config-if)#switchport trunk allowed vlan 10,20,90,1
SW3(config-if)#exit

5. Configurar el acceso para cada VLAN en sus respectivos puertos

SWITCH VLAN PUERTO


SW1 VLAN10 F0/10
VLAN20 F0/11
SW3 VLAN10 F0/10
VLAN20 F0/11

Configuración en el SW1
SW1(config)#int f0/10
SW1(config-if)#sw mode access
SW1(config-if)#sw access vlan 10
SW1(config-if)#exit
SW1(config)#int f0/11
SW1(config-if)#sw mode access
SW1(config-if)#sw access vlan 20
SW1(config-if)#exit

Configuración en el SW3
SW3(config)#int f0/10
SW3(config-if)#sw mode access
SW3(config-if)#sw access vlan 10
SW3(config-if)#exit
SW3(config)#int f0/11
SW3(config-if)#sw mode access
SW3(config-if)#sw access vlan 20
SW3(config-if)#exit

6. Configurar la puerta de enlace 192.168.90.1 /24 y la seguridad en los 3 Switches

Configuración en el SW1
SW1(config)#ip default-gateway 192.168.90.1
SW1(config)#line console 0
SW1(config-line)#pass cisco
SW1(config-line)#login
SW1(config-line)#exit
SW1(config)#line vty 0 4
SW1(config-line)#pass cisco
SW1(config-line)#login
SW1(config-line)#exit
SW1(config)#enable secret class
SW1(config)#end
Configuración en el SW2
SW2(config)#ip default-gateway 192.168.90.1
SW2(config)#line console 0
SW2(config-line)#pass cisco
SW2(config-line)#login
SW2(config-line)#exit
SW2(config)#line vty 0 4
SW2(config-line)#pass cisco
SW2(config-line)#login
SW2(config-line)#exit
SW2(config)#enable secret class
SW2(config)#end

Configuración en el SW3
SW3(config)#ip default-gateway 192.168.90.1
SW3(config)#line console 0
SW3(config-line)#pass cisco
SW3(config-line)#login
SW3(config-line)#exit
SW3(config)#line vty 0 4
SW3(config-line)#pass cisco
SW3(config-line)#login
SW3(config-line)#exit
SW3(config)#enable secret class
SW3(config)#end

7. En el R1, crear las subinterfaces para cada VLAN

Subinterfa Dirección IP
z
F0/0.10 192.168.10.1 /24
F0/0.20 192.168.20.1 /24
F0/0.90 192.168.90.1 /24

Para guía se les comparte el comando para la primera subinterfaz, usted tendrá que
desarrollarlo para las otras dos.
int f0/0.10
description PE for vlan 10
encapsulation dot1q 10
ip add 192.168.10.1 255.255.255.0
exit
*/ NO OLVIDAR ENCENDER EL PUERTO F0/0

Configuración en R1
Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R1
R1(config)#int f0/0.10
R1(config-subif)#description PE for vlan 10
R1(config-subif)#encapsulation dot1q 10
R1(config-subif)#ip add 192.168.10.1 255.255.255.0
R1(config-subif)#exit
R1(config)#int f0/0.20
R1(config-subif)#description PE for vlan 20
R1(config-subif)#encapsulation dot1q 20
R1(config-subif)#ip add 192.168.20.1 255.255.255.0
R1(config-subif)#exit
R1(config)#int f0/0.90
R1(config-subif)#description PE for vlan 90
R1(config-subif)#encapsulation dot1q 90
R1(config-subif)#ip add 192.168.90.1 255.255.255.0
R1(config-subif)#exit
R1(config)#int f0/0
R1(config-if)#no shut

R1(config-if)#end
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state
to up
%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.20, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.20, changed
state to up
%LINK-5-CHANGED: Interface FastEthernet0/0.90, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.90, changed
state to up

8. Asignar las direcciones de IP, a cada ordenador, con la respectiva puerta de enlace
creadas en el R1.

9. Verificar la conectividad entre distintas VLAN

También podría gustarte