I just got a CRS326 to learn on, and I’m trying to set up VLANs. I appear to have that part working. I can get connected from various computers on the appropriate VLAN. I pretty much used this tutorial, which was great. Also relied some on this and the examples there.
But whenever I’m on a computer connected on one of the VLAN ports, I can not for the life of me figure out how to connect to the switch. Winbox won’t connect, the WebGUI doesn’t work. I’ve tried MAC and IP addresses. I’ve turned off all firewalls. Nothing. I’m sure it’s some simple setting I’m missing, can anyone point me in the right direction?
Still no connection when on ether9. I tried following this section, using the bullet point “In case VLAN filtering is used and access from trunk and/or access ports with tagged traffic is desired”.
I think(?) that the issue might be the fact that that section says it should be ‘tagged’ traffic. But I have my /interface bridge vlan setup as ‘tagged=ether2 untagged=ether9’.
But in the next bullet point on that page for the “untagged traffic” it wants you to set the ports to pvid=1. But I want them to be access ports, so I don’t think that’s right.
Thanks for the help, I read those links and things are making more sense, but I’m clearly still not quite understanding something.
All of the /interface bridge vlan settings, plus the pvid= settings under /interface bridge and /interface bridge port have no effect unless vlan-filtering=yes
You have also still omitted the bridge-to-CPU interface from /interface bridge vlan so packets are unable to pass from the switch-like role of the bridge to any services provided by the CPU, it should be:
add bridge=bridge1 tagged=bridge1,ether2 untagged=ether9 vlan-ids=111
The untagged= settings are unnecessary, if omitted they will be added dynamically based on the port pvid= settings, and it prevents you manually creating a mismatch leading to communication problems.
Thank you so much for your patience. That made it work, and I get what you mean now by the bridge-to-CPU. That wasn’t really clicking until now, or at least clicking better. Seriously thank you again, I had spent so many hours trying to figure that out.