HELLO, I AM NEW TO ROUTER OS. CAN ANYONE TELL ME HOW TO CONFIGURE PORT ISOLATION/ PRIVATE VLAN ROUTER OS. I NEED TO CONFIGURE ISOLATED PORTS AND COMMUNITY PORTS.
PRASANTA
HELLO, I AM NEW TO ROUTER OS. CAN ANYONE TELL ME HOW TO CONFIGURE PORT ISOLATION/ PRIVATE VLAN ROUTER OS. I NEED TO CONFIGURE ISOLATED PORTS AND COMMUNITY PORTS.
PRASANTA
Bridge Filter can provide such functionality.
For example, ether2 is promiscous port, ether3 is isolated port, ether4 and ether5 belong to one community.
/interface bridge
add name=bridge1
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5
/interface bridge filter
add action=accept chain=forward in-interface=ether2 out-interface=ether3
add action=accept chain=forward in-interface=ether2 out-interface=ether4
add action=accept chain=forward in-interface=ether2 out-interface=ether5
add action=accept chain=forward in-interface=ether3 out-interface=ether2
add action=accept chain=forward in-interface=ether4 out-interface=ether2
add action=accept chain=forward in-interface=ether4 out-interface=ether5
add action=accept chain=forward in-interface=ether5 out-interface=ether2
add action=accept chain=forward in-interface=ether5 out-interface=ether4
add action=drop chain=forward
hello,
my routeros version is 6.5. I dont know the basics. i would like to configure ether6 as wan and ether7 to10 as vlan of which ether7 as promiscous prot, ether8 isolated port and ether9 and ether10 as community ports. My router by default showing that ether6 as master and ether7-10 as slave. should i have to refresh them as all master or all slave? please help me.
prasanta
In this setup ether7-ether10 ports should have master-port=none and they should be added to the same bridge.