Dear MikroTik Gurus;
I have successfully made 3 VLANs on an HP Procurve Managed Switch and RB750GL.
HP Procurve Switch:
VLAN1 - Default Management
VLAN2
VLAN3
VLAN4
MikrotTik RB750GL:
WAN x.x.x.x
LAN 10.2.0.1/24
VLAN2 - 192.168.2.1/24
VLAN3 - 192.168.3.1/24
VLAN4 - 192.168.4.1/24
They all work and have DHCP Servers on each subnet that work.
In the firewall filter rules I have setup FORWARD rules that goes something like this
add action=drop chain=forward dst-address=192.168.2.0/24 src-address=10.2.0.0/24
add action=drop chain=forward dst-address=192.168.3.0/24 src-address=10.2.0.0/24
add action=drop chain=forward dst-address=192.168.2.0/24 src-address=10.2.0.0/24
This blocks any traffic from the VLANS trying to get to anything on the MikroTik LAN subnet but now I have to make DROP rules so that each subnet cant talk to each other for security.
Example:
192.168.2.0/24 not allowed access to 192.168.3.0/24 or 192.168.4.0/24
192.168.3.0/24 not allowed access to 192.168.2.0/24 or 192.168.4.0/24
192.168.4.0/24 not allowed access to 192.168.2.0/24 or 192.168.3.0/24
This could be very complicated if I had 500 VLANs.
Is there an easier way to make sure each VLAN can get to the internet via 10.2.0.1 but cannot see any other subnet???
Thank you in advance.