11-16-2023 12:42 AM
help, i just start learning networking. How to connect 2 or more vlan, for example i make 3 vlan (10, 20 and 30)
vlan 10 is from port 1 - 5, vlan 20 is from port 6 - 10 and vlan 30 is from port 11 - 15
and i want to access port 7 from vlan 20 when LAN cable from PC connect to port 1 from vlan 10
how to configure in web gui Summit X430
thank you
Solved! Go to Solution.
11-16-2023 05:49 AM - edited 11-16-2023 07:02 AM
EDIT: the X430 cannot do routing. You need either another switch, router, firewall or server to do the routing for you or you can perhaps try private VLANs, but I'm not sure the X430 can do that either.
What you need to do in a case like this is to enable routing between the VLANs. For that to work, you need to set an IP address on each VLAN too. If you want the switch itself to do the routing, you can use this:
configure vlan v10 ipaddress 10.0.10.1 255.255.255.0
configure vlan v20 ipaddress 10.0.20.1 255.255.255.0
enable ipforwarding vlan v10
enable ipforwarding vlan v20
https://extreme-networks.my.site.com/ExtrArticleDetail?an=000083610&q=exos%20vlan%20forwarding
Another approach is to have a firewall do the routing between the VLANs.
11-16-2023 06:30 AM
BIJIKADAL,
I think the X430 is a Layer 2 switch, and don't think it does any routing...
You may need to connect those VLANs to a router to pass the traffic between them....
Thanks,
Bill
11-17-2023 12:02 AM
Thanks for the reply Bill_Handler
11-16-2023 05:49 AM - edited 11-16-2023 07:02 AM
EDIT: the X430 cannot do routing. You need either another switch, router, firewall or server to do the routing for you or you can perhaps try private VLANs, but I'm not sure the X430 can do that either.
What you need to do in a case like this is to enable routing between the VLANs. For that to work, you need to set an IP address on each VLAN too. If you want the switch itself to do the routing, you can use this:
configure vlan v10 ipaddress 10.0.10.1 255.255.255.0
configure vlan v20 ipaddress 10.0.20.1 255.255.255.0
enable ipforwarding vlan v10
enable ipforwarding vlan v20
https://extreme-networks.my.site.com/ExtrArticleDetail?an=000083610&q=exos%20vlan%20forwarding
Another approach is to have a firewall do the routing between the VLANs.
11-17-2023 12:04 AM
FredrikB-NN2,
okay i will try it, thanks for the reply