Un switch
de capa 3 es un dispositivo que hace dos funciones primarias, ejecuta las
funciones de capa 2 de un switch y le agrega las funciones de “routing” de capa
3.
Recordemos
que el switch de capa 2 envía tramas dentro de una VLAN únicamente , no entre
múltiples VLANs.
La capa 3
agrega la funcionalidad de “routing” lo que permite enviar tráfico entre
diferentes VLANs.
La
configuración del switch de capa 3 , es muy similar a configurar un switch
común.
El switch
de capa 3 necesita una interfaz virtual
conectada a cada VLAN.
Esas interfaces actúan como las interfaces del router ,
con una dirección IP y mascara.
El Switch
capa 3 cuenta con una tabla de ruteo , basado en esas interfaces conectadas
directamente.
Esas interfaces son
conocidas como SVI (Switched Virtual interface)
Algunos
switches de cisco , especialmente los de gama media-baja por ejemplo un Cisco
Catalyst 2960 , necesitan activar la habilidad de rutear paquetes y luego de
eso ser reiniciados , antes de que los podamos configurar.
Procedimiento
para habilitar un Switch de capa 3 cisco en un 2960.
1. Configure el comando “sdm prefer lanbase-routing” en modo
global.
2. Reiniciamos el Switch
3. Verificamos que el comando se haya
aplicado con el comando “show sdm prefer”
4. Habilitamos el comando “ip routing”
en modo global.
5.
Creamos las interfaces VLAN para cada VLAN que queremos enrutar , con el
comando “interface vlan #”
6.
Configuramos una dirección IP y mascara a la interfaz
7.
Habilitamos la interfaz con el comando “no shutdown”
Ejemplo de la configuración:
SwitchA(config)#sdm
prefer lanbase-routing
Changes to the running
SDM preferences have been stored, but cannot take effect until the next reload.
Use ‘show sdm prefer’
to see what SDM preference is currently active.
SwitchA(config)#exit
SwitchA#reload
System configuration
has been modified. Save? [yes/no]: y
Proceed with reload?
[confirm]
SwitchA#show sdm
prefer
The current template
is “lanbase-routing” template.
The selected template optimizes the resources
in the switch to support this level of features for 8 routed interfaces and 255
VLANs.
number of unicast mac addresses: 4K
number of IPv4 IGMP groups + multicast
routes: 0.25K
number of IPv4 unicast routes: 4.25K
number of directly-connected IPv4 hosts: 4K
number of indirect
IPv4 routes: 0.25K
number of IPv4 policy based routing aces: 0
number of IPv4/MAC qos
aces: 0.125k
number of IPv4/MAC security aces: 0.375k
SwitchA#conf t
SwitchA(config)#ip
routing
SwitchA(config)#interface
vlan 20
SwitchA(config-if)#ip
add 192.168.15.1 255.255.255.0
SwitchA(config-if)#interface
vlan 30
SwitchA(config-if)#ip
add 192.168.25.1 255.255.255.0
SwitchA#sh ip route
…
C 192.168.15.0/24 is directly connected,
Vlan20
C 192.168.25.0/24 is directly connected,
Vlan30
Con la
configuración anterior el switch se encuentra listo para enviar paquetes entre
la VLAN 20 y VLAN 30.
Espero sea
de ayuda.
- -Randy
-
No hay comentarios:
Publicar un comentario