Los switches de la serie S3900 tienen tres modelos: S3900-24T4S, S3900-24F4S, S3900-48T4S, que son switches gigabit apilables totalmente administrables, equipados con chips Broadcom, compatibles con enlaces ascendentes 10G SFP+, diseñados para redes pymes y campus.
Guía de producto
Casos de éxito
Descarga
Preguntas frecuentes
Una red VLAN (red de área local virtual) se refiere a cualquier dominio de difusión que esté dividido y aislado en una red informática en la capa de enlace de datos. En dicha capa, que se agrupan los dispositivos de diferentes redes de área local físicas en una única red lógica, mejorando la simplicidad, la seguridad, la gestión del tráfico o la economía.
Existen cuatro tipos de configuración VLAN: VLAN basada en interfaz, VLAN basada en direcciones MAC, VLAN basada en subredes IP, VLAN basada en protocolos y VLAN basada en políticas. Dentro de estas configuraciones, la asignación de la red VLAN basada en subredes IP se aplica en aquellos casos en los que se requiere una gran movilidad y una gestión simplificada, aunque con un requisito de seguridad reducido. En este artículo te ofrecemos una guía para que conozcas cómo funciona la VLAN basada en subredes IP para los switches L2+ gama FS S3900.
Un centro de datos dispone de múltiples servicios, los cuales requieren varias subredes IP. Es necesario asignar diferentes servicios a diferentes redes VLAN y distribuirlos a varias redes remotas en función de las identificaciones de las VLAN. Por ejemplo, a continuación se ilustra un switch FS S3900-24T4S con tres puertos configurados para gestionar el tráfico de tres redes VLAN. A partir de la configuración de la red VLAN basada en subredes IP, las tres direcciones IP diferentes se asignan por separado a la red VLAN 10, la red VLAN 20 y la red VLAN 30, de modo que la interfaz ethernet 1/0/5-1/0/7 del switch pueda transmitir paquetes con diferentes identificaciones de VLAN a los dispositivos que se reciben del router.
En este ejemplo, la asignación de una red VLAN basada en subredes IP reduce el tráfico y, por lo tanto, acelera la red. Además, por lo general, cada subred se asocia a una red virtual. El puerto configurado con la red VLAN basada en subredes IP asignará el paquete a dicha red basándose en su dirección de origen de paquete incluso si el puerto cambia, con lo que se evidencia la flexibilidad de la función de la red VLAN basada en subredes IP.
En el siguiente ejemplo, el switch FS S3900-24T4S está configurado para una red VLAN basada en subredes IP. El ordenador-1,2, 3, y así sucesivamente, pertenecen a diferentes subredes IP. La interfaz ethernet 1/1-3 del switch está configurada por puertos híbridos. Los paquetes sin etiquetar en la red VLAN 10, VLAN 20 y VLAN 30 se transmiten y reciben en estos puertos.
Nota:
Las configuraciones de redes VLAN basadas en subredes IP sólo se pueden desplegar en puertos híbridos.
Las configuraciones de redes VLAN basadas en subredes IP sólo se aplican a paquetes sin etiquetar.
Para configurar la red VLAN basada en subredes IP en los switches FS S3900, se deben seguir las siguientes pautas:
Crea una red VLAN en el switch y configura la dirección IP
Configura las interfaces híbridas y asígnalas a las VLAN correspondientes en un modo no etiquetado.
Configura una prueba de gateway pinging en los tres ordenadores respectivamente.
Comprueba la interfaz VLAN en el switch para ver si el ordenador puede hacer ping a la dirección IP de la pasarela.
S3900-24T4S#configure terminal
S3900-24T4S(config)#subnet-vlan subnet 10.1.1.0 255.255.255.0 vlan 10
S3900-24T4S(config)#subnet-vlan subnet 10.1.2.0 255.255.255.0 vlan 20
S3900-24T4S(config)#subnet-vlan subnet 10.1.3.0 255.255.255.0 vlan 30
S3900-24T4S(config)#exit
S3900-24T4S#show subnet-vlan
S3900-24T4S#configure terminal
S3900-24T4S(config)#vlan database
S3900-24T4S(config-vlan)#vlan 10
S3900-24T4S(config-vlan)#vlan 20
S3900-24T4S(config-vlan)#vlan 30
S3900-24T4S(config-if)#exit
S3900-24T4S(config)#interface vlan 10
S3900-24T4S(config-if)#ip add 10.1.1.1/24
S3900-24T4S(config-if)#exit
S3900-24T4S(config)#int vlan 20
S3900-24T4S(config-if)#ip add 10.1.2.1/24
S3900-24T4S(config-if)#exit
S3900-24T4S(config)#interface vlan 30
S3900-24T4S(config-if)#ip add 10.1.3.1/24
S3900-24T4S(config-if)#exit
S3900-48T4S(config)#interface ethernet 1/1
S3900-48T4S(config-if)#switchport mode hybrid
S3900-48T4S(config-if)#switchport hybrid allowed vlan add 10 untagged
S3900-48T4S(config-if)#switchport hybrid allowed vlan add 20 untagged
S3900-48T4S(config-if)#switchport hybrid allowed vlan add 30 untagged
S3900-24T4S(config-if)#exit
S3900-48T4S(config)#int ethernet 1/2
S3900-48T4S(config-if)#switchport mode hybrid
S3900-48T4S(config-if)#switchport hybrid allowed vlan add 30 untagged
S3900-48T4S(config-if)#switchport hybrid allowed vlan add 20 untagged
S3900-48T4S(config-if)#switchport hybrid allowed vlan add 10 untagged
S3900-24T4S(config-if)#exit
S3900-48T4S(config)#int ethernet 1/3
S3900-48T4S(config-if)#switchport mode hybrid
S3900-48T4S(config-if)#switchport hybrid allowed vlan add 10 untagged
S3900-48T4S(config-if)#switchport hybrid allowed vlan add 20 untagged
S3900-48T4S(config-if)#switchport hybrid allowed vlan add 30 untagged
S3900-24T4S(config-if)#exit
C:UsersDell>ping 10.1.1.1
Pinging 10.1.1.1 with 32 bytes of data:
Reply from 10.1.1.1: bytes=32 timeReply from 10.1.1.1: bytes=32 timeReply from 10.1.1.1: bytes=32 timeReply from 10.1.1.1: bytes=32 timePing statistics for 10.1.1.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
C:UsersDell>ping 10.1.2.1
Pinging 10.1.2.1 with 32 bytes of data:
Reply from 10.1.2.1: bytes=32 timeReply from 10.1.2.1: bytes=32 timeReply from 10.1.2.1: bytes=32 timeReply from 10.1.2.1: bytes=32 timePing statistics for 10.1.2.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
C:UsersDell>ping 10.1.3.1
Pinging 10.1.3.1 with 32 bytes of data:
Reply from 10.1.3.1: bytes=32 timeReply from 10.1.3.1: bytes=32 timeReply from 10.1.3.1: bytes=32 timeReply from 10.1.3.1: bytes=32 timePing statistics for 10.1.3.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
S3900-24T4S#show vlan all
VLAN ID : 1
Name : DefaultVlan
Type : Static
Members :
Eth1/ 1(S) Eth1/ 2(S)Eth1/ 3(S) Eth1/ 4(S) Eth1/ 5(S)
Eth1/ 6(S) Eth1/ 7(S) Eth1/ 8(S) Eth1/ 9(S) Eth1/10(S)
Eth1/11(S)Eth1/12(S)Eth1/13(S) Eth1/14(S) Eth1/15(S)
Eth1/16(S) Eth1/17(S) Eth1/18(S) Eth1/19(S) Eth1/20(S)
Eth1/21(S) Eth1/22(S) Eth1/23(S) Eth1/24(S) Eth1/25(S)
Eth1/26(S) Eth1/27(S) Eth1/28(S) Eth1/29(S) Eth1/30(S)
Eth1/31(S) Eth1/32(S) Eth1/33(S) Eth1/34(S) Eth1/35(S)
Eth1/36(S) Eth1/37(S) Eth1/38(S) Eth1/39(S) Eth1/40(S)
Eth1/41(S) Eth1/42(S) Eth1/43(S) Eth1/44(S) Eth1/45(S)
Eth1/46(S) Eth1/47(S) Eth1/48(S) Eth1/49(S) Eth1/50(S)
Eth1/51(S) Eth1/52(S)
VLAN ID : 10
Name :
Type : Static
Members : Eth1/ 1(S) Eth1/ 2(S) Eth1/ 3(S)
VLAN ID : 20
Name :
Type : Static
Members : Eth1/ 1(S) Eth1/ 2(S) Eth1/ 3(S)
VLAN ID : 30
Name :
Type : Static
Members : Eth1/ 1(S) Eth1/ 2(S) Eth1/ 3(S)
por FS en
Tengo un proyecto en el cual requiero pasar 5Gb de internet a 16 kilómetros de distancia y repartir con una OLT esos 5Gb. La pregunta es si con dos switch S3900-24TS y un par de de módulos Transceptor SFP-10GER-55 podría realizar mi proyecto con éxito? por David.Hernández en 13 de marzo de 2021
Muchas gracias por su consulta. No puede usar el switch S3900 para completar estas conexiones, lo que necesita es el equipo ONT que coincida con el OLT. por FS en 17 de marzo de 2021
We have one Server with a NIC Card HP NC522SFP Dual Port 10GbE. This switch can be used with this Nic card? What tranceiver we need to bougth too? por Jose Santamaria en 20 de noviembre de 2018
1. Nuestro switch S3900-24T4S # 72944 se puede usar con tarjetas Nic HP NC522SFP. 2. Necesitamos confirmar sus necesidades de transmisión específicas para recomendar los transceptores. por FS en 22 de noviembre de 2018
Can a port group be a downlink port if the group is a trunk? por Chavers en 1 de mayo de 2022
Yes, if the port group is trunk type, it can also be used as a downlink port. por FS en 2 de mayo de 2022
How loud is it? I plan to use it in a homelab office and need to know if I will be able to sit next to it all day. Thanks por Harlan en 14 de marzo de 2022
It is fanless, so it's suitable for deployment in work areas or home scenes. por FS en 15 de marzo de 2022
Does this switch requires liscensing like the cisco types? por Aaron Laymon en 14 de marzo de 2022
It does not require a license, all the features listed are available directly on the switch. por FS en 14 de marzo de 2022
What are the dimensions? por Kilby en 10 de marzo de 2022
Physical dimensions 44 x 440 x 280mm(1.73'' x 17.32'' x 11.02''), this fits a standard19"rack slot with a minimum of 1U height. por FS en 11 de marzo de 2022
Does this switch come with rack mount ears and screws? por Herbert en 9 de marzo de 2022
Mine come with the ears and screws for the ears. por FS en 11 de marzo de 2022
Does the 10G Uplink port of this switch support the electrical interface module of FS? What happens to the rate? por Colby en 1 de enero de 2022
The 10G port of S3900-24T4S switch can use FS electrical interface module, which has no impact on the rate. It only says that the electrical interface module is used with network cables, and the optical module is used with fiber optic cables. por FS en 1 de enero de 2022
Does the switch support other operating systems besides FSOS? por Keith Carter en 30 de diciembre de 2021
S3900-24T4S is a hardware and software integrated switch. It cannot be installed and adapted to other operating systems. por FS en 30 de diciembre de 2021