Está en la página 1de 3

ESTRUCTURA DE RED PARA CONFIGURACIÓN DE UNA VLANS

Puertos
Inicio Fin
VLAN5
5 14
(Sistemas)
VLAN15
15 23
(Programación)

NOMBRE DIR IP FASTETHERNET FASTETHERNET


VLANS
PC PC PC SWITCH
VLAN5 PC1 192.192.20.20 Fa0 Fa0/5
VLAN5 PC2 192.192.20.21 Fa0 Fa0/6
VLAN5 PC3 192.192.20.22 Fa0 Fa0/7
VLAN5 PC4 192.192.20.23 Fa0 Fa0/8
VLAN15 PC5 192.192.20.24 Fa0 Fa0/15
VLAN15 PC6 192.192.20.25 Fa0 Fa0/16
VLAN15 PC7 192.192.20.26 Fa0 Fa0/17
VLAN15 PC8 192.192.20.27 Fa0 Fa0/18
COMANDOS DE CREACIÓN DE VLAN
1. Ingresa al modo de configuración global >>>
Switch> enable
Switch# configure terminal

2. Cree una VLAN con un número de ID válido (los ID válidos para rangos normales es
desde 1 hasta 1005, pero solo tenemos disponibles desde la vlan 2 hasta 1001. Los ID 1 y
1002 a 1005 se crean automáticamente y no se pueden eliminar.) >>>
Las creaciones de las Vlan se hacen en modo Configuración
Switch> enable
Switch# configure terminal
Switch (config)# vlan 5
Switch (config-vlan)# name Sistemas
Switch (config-vlan)# exit

Switch (config)# vlan 15


Switch (config-vlan)# name Programacion
Switch (config-vlan)# exit
Switch (config)#

En modo privilegiado, comprobamos la creación de la Vlans


Switch# show vlan
Presiona Ctrl C

Asignar puertos a las Vlans


Switch> enable
Switch# configure terminal
Switch (config)# interface range fastEthernet 0/5-14
Switch (config-if-rangue)# switchport mode access
Switch (config-if-rangue)# switchport access vlan 5
Switch (config-if-rangue)# exit
Switch (config)#

Switch> enable
Switch# configure terminal
Switch (config)# interface range fastEthernet 0/15-23
Switch (config-if-rangue)# switchport mode access
Switch (config-if-rangue)# switchport access vlan 15
Switch (config-if-rangue)# exit
Switch (config)#exit
Switch #exit
Switch>
Realizar Pruebas de conectividad, mediante el comando ping
Resultado>>>
Origen Destino
Failed/Successfull
192.192.20.20 192.192.20.22 Successfull
192.192.20.21 192.192.20.23 Successfull
192.192.20.24 192.192.20.26 Successfull
192.192.20.27 192.192.20.25 Successfull
192.192.20.21 192.192.20.24 Failed
192.192.20.26 192.192.20.23 Failed

Practica:

Puertos
Inicio Fin
VLAN3 (Sala1) 3 9
VLAN10 (Sala2) 10 19
VLAN20 (Sala3) 20 23

NOMBRE DIR IP FASTETHERNET FASTETHERNET


VLANS
PC PC PC SWITCH
VLAN3 PC1 192.192.1.31 Fa0 Fa0/4
VLAN3 PC2 192.192.1.32 Fa0 Fa0/8
VLAN10 PC4 192.192.2.38 Fa0 Fa0/12
VLAN10 PC5 192.192.2.39 Fa0 Fa0/13
VLAN20 PC6 192.192.3.42 Fa0 Fa0/21
VLAN20 PC7 192.192.3.52 Fa0 Fa0/22

También podría gustarte