trying to implement a simple VLAN configuration on a CRS305-1G-4S+IN, but can not get the routing between different VLANS to work. Works on other MK routers And I can't figure out what the difference is.
Config looks like the following:
Code: Select all
model = CRS305-1G-4S+
# serial number = xxxx
/interface bridge
add admin-mac=74:4D:28:64:E1:A0 auto-mac=no comment=defconf name=bridge vlan-filtering=yes
/interface ethernet
set [ find default-name=sfp-sfpplus2 ] name="sfp-sfpplus2 - 200"
set [ find default-name=sfp-sfpplus3 ] name="sfp-sfpplus3 - 178"
set [ find default-name=sfp-sfpplus4 ] name="sfp-sfpplus4 - NAS"
/interface vlan
add interface=bridge name=VLAN178 vlan-id=178
add interface=bridge name=VLAN200 vlan-id=200
/interface list
add name=WAN
add name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=VLAN200_pool ranges=192.168.200.100,192.168.200.200
add name=VLAN178_pool ranges=192.168.178.100,192.168.178.200
/ip dhcp-server
add address-pool=VLAN178_pool interface=VLAN178 name=DHCP178
add address-pool=VLAN200_pool interface=VLAN200 name=DHCP200
/port
set 0 name=serial0
/interface bridge port
add bridge=bridge comment=defconf disabled=yes interface=ether1
add bridge=bridge comment=defconf interface=sfp-sfpplus1
add bridge=bridge comment=defconf interface="sfp-sfpplus2 - 200" pvid=200
add bridge=bridge comment=defconf interface="sfp-sfpplus3 - 178" pvid=178
add bridge=bridge comment=defconf interface="sfp-sfpplus4 - NAS" pvid=178
/interface bridge vlan
add bridge=bridge tagged=bridge vlan-ids=178
add bridge=bridge tagged=bridge vlan-ids=200
/interface list member
add interface=ether1 list=WAN
add interface=bridge list=LAN
/ip address
add address=192.168.88.1/24 interface=bridge network=192.168.88.0
add address=192.168.178.8/24 interface=VLAN178 network=192.168.178.0
add address=192.168.200.8/24 interface=VLAN200 network=192.168.200.0
/ip dhcp-client
add interface=ether1
/ip dhcp-server network
add address=192.168.178.0/24 dns-server=8.8.8.8 gateway=192.168.178.8 netmask=24
add address=192.168.200.0/24 dns-server=8.8.8.8 gateway=192.168.200.8 netmask=24
/ip hotspot profile
set [ find default=yes ] html-directory=hotspot
/ip ipsec profile
set [ find default=yes ] dpd-interval=2m dpd-maximum-failures=5
/system clock
set time-zone-name=Europe/Berlin
/system note
set show-at-login=no
Many thanks!