RB450 an VLAN

Hello,

  • I have a 450 router and want to setup this:

VLAN1, VLAN2, VLAN3 on ETH2, ETH3, ETH4, ETH5 how do I do this - in the simplest of ways?

  • I know i can just “add” vlans but i also need to setup the bridge also - got stuck somewhere here when testing - would appreciate a “how to”.. .

Thanks for help,

Best regards,
Johan

If you are wanting to use a bridge you just bridge together ether2, 3, 4, and 5 and the and your VLANs to that bridge.

… or set ether2 as master port for ether3,4,5. maybe it works.

http://wiki.mikrotik.com/wiki/Manual:Switch_Chip_Features#Vlan_Table

hi
you can do this:

/interface vlan
add arp=enabled disabled=no interface=ether2 mtu=1500 name=vlan1
use-service-tag=no vlan-id=1
add arp=enabled disabled=no interface=ether3 mtu=1500 name=vlan2
use-service-tag=no vlan-id=2
add arp=enabled disabled=no interface=ether4 mtu=1500 name=vlan3
use-service-tag=no vlan-id=3

/interface bridge
add admin-mac=00:00:00:00:00:00 ageing-time=5m arp=enabled auto-mac=yes
disabled=no forward-delay=15s l2mtu=65535 max-message-age=20s mtu=1500
name=bridge1 priority=0x8000 protocol-mode=none transmit-hold-count=6
/interface bridge port
add bridge=bridge1 disabled=no edge=auto external-fdb=auto horizon=none
interface=vlan1 path-cost=10 point-to-point=auto priority=0x80
add bridge=bridge1 disabled=no edge=auto external-fdb=auto horizon=none
interface=vlan2 path-cost=10 point-to-point=auto priority=0x80
add bridge=bridge1 disabled=no edge=auto external-fdb=auto horizon=none
interface=vlan3 path-cost=10 point-to-point=auto priority=0x80
/interface bridge settings
set use-ip-firewall=no use-ip-firewall-for-pppoe=no use-ip-firewall-for-vlan=
no