Seguridad y Redes

Tips, Video Tutoriales, Wifislax, VMware, Linux, GNS3, Eve-NG, CCNA, Cisco Routers, Switches

Creando VLANs (Virtual LANs)

By 9:30 , , , , ,

En este post se muestra las configuraciones básicas para crear VLANs (Virtual LANs). Los comandos los realice desde un Switch 2950. Para crear VLANs en el Switch Cisco Catalyst 2950 es de la siguiente manera. Primero creamos tres VLANs (de la vlan 2 a la 4) con el comando "vlan" siguiendo del numero de la vlan, también podemos agregarle un nombre tecleando name y el nombre de la VLAN.
Switch#vlan database
Switch(vlan)#vlan 2 name VLAN2
VLAN 2 added:
Name: VLAN2
Switch(vlan)#vlan 3 name VLAN3
VLAN 3 added:
Name: VLAN3
Switch(vlan)#vlan 4 name VLAN4
VLAN 4 added:
Name: VLAN4
Switch(vlan)#exit
APPLY completed.
Exiting....
Switch#
Ahora para verificar las VLANs creadas, tecleamos el comando "show vlan".
Switch#show vlan
VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/1, Fa0/2, Fa0/3, Fa0/4,
                       Fa0/5, Fa0/6, Fa0/7, Fa0/8,
                       Fa0/9, Fa0/10, Fa0/11, Fa0/12
2    VLAN2                            active
3    VLAN3                            active
4    VLAN4                            active
1002 fddi-default                     active
1003 token-ring-default               active
1004 fddinet-default                  active
1005 trnet-default                    active

VLAN Type  SAID       MTU   Parent RingNo BridgeNo Stp  BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1    enet  100001     1500  -      -      -        -    -        1002   1003
2    enet  100002     1500  -      -      -        -    -        0      0
3    enet  100003     1500  -      -      -        -    -        0      0
4    enet  100004     1500  -      -      -        -    -        0      0
1002 fddi  101002     1500  -      -      -        -    -        1      1003
1003 tr    101003     1500  1005   0      -        -    srb      1      1002
1004 fdnet 101004     1500  -      -      1        ibm  -        0      0
1005 trnet 101005     1500  -      -      1        ibm  -        0      0
Switch#
Asignar el puerto FastEthernet0/2 (fa0/2) a la VLAN 2
Asignar el puerto FastEthernet0/3 (fa0/3) a la VLAN 3
Asignar el puerto FastEthernet0/4 (fa0/4) a la VLAN 4
Switch#config t
Switch(config)#interface f0/2
Switch(config-if)#switchport access vlan 2
Switch(config-if)#interface Fa0/3
Switch(config-if)#switchport access vlan 3
Switch(config-if)#interface Fa0/4
Switch(config-if)#switchport access vlan 4
Switch(config-if)#end
Switch#
Verificamos la configuración de las VLANs.
Switch#show vlan
VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Fa0/1, Fa0/5, Fa0/6, Fa0/7,
                       Fa0/8, Fa0/9, Fa0/10, Fa0/11,
                       Fa0/12
2    VLAN2                            active    Fa0/2
3    VLAN3                            active    Fa0/3
4    VLAN4                            active    Fa0/4
1002 fddi-default                     active
1003 token-ring-default               active
1004 fddinet-default                  active
1005 trnet-default                    active

VLAN Type  SAID       MTU   Parent RingNo BridgeNo Stp  BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1    enet  100001     1500  -      -      -        -    -        1002   1003
2    enet  100002     1500  -      -      -        -    -        0      0
3    enet  100003     1500  -      -      -        -    -        0      0
4    enet  100004     1500  -      -      -        -    -        0      0
1002 fddi  101002     1500  -      -      -        -    -        1      1003
1003 tr    101003     1500  1005   0      -        -    srb      1      1002
1004 fdnet 101004     1500  -      -      1        ibm  -        0      0
1005 trnet 101005     1500  -      -      1        ibm  -        0      0
Switch#
Al teclear el comando "show flash" veremos un fichero llamado "vlan.dat" donde se guarda la información de las vlans.

You Might Also Like

0 comentarios