Dear all,
I want to replace our core Cisco switch with a MikroTik CRS326-24S+2Q+RM switch.
I’ve read several posts here, and like others, I am missing something.
Here’s what I’m trying to do:

For example, I’d like port sfp-sfpplus23 to provide untagged VLAN ID 10 only, port sfp-sfpplus22 untagged VLAN 7 only and say ports 1-21 to provide tagged VLANs 10, 20, 30 and so on, but whatever is connected to those ports, I’d like the devices to automatically be assigned an IP from a DHCP pool 10.2.10.0 (VLAN 10) - then I want to be able to allocate access/untagged ports with VLANs 20, 30 etc on subsequent switches or WiFi APs.
Port sfp-sfpplus24 is configured for WatchGuard firewall “uplink”.
The diagram uses VLANs 10, 20 and 30, but my config is actually 10, 32 and 68.
[admin@MikroTik] > /export
# 1970-01-03 00:04:27 by RouterOS 7.12.2
# software id = QCIV-NCXY
#
# model = CRS326-24S+2Q+
# serial number = xxx
/interface bridge
add name=bridge1 vlan-filtering=yes
/interface ethernet
set [ find default-name=sfp-sfpplus24 ] comment="WatchGuard Port 4"
/interface vlan
add disabled=yes interface=bridge1 name=vlan10 vlan-id=10
add disabled=yes interface=bridge1 name=vlan32 vlan-id=32
add disabled=yes interface=bridge1 name=vlan68 vlan-id=69
add interface=ether1 name=vlan99 vlan-id=99
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip hotspot profile
set [ find default=yes ] html-directory=hotspot
/ip pool
add name=pool68 ranges=10.2.68.50-10.2.71.200
add name=pool32 ranges=10.2.32.50-10.2.35.200
add name=pool192 ranges=192.168.252.50-192.168.255.200
/ip dhcp-server
add address-pool=pool192 disabled=yes interface=bridge1 name=server1
add address-pool=pool68 disabled=yes interface=bridge1 name=server2
add address-pool=pool32 disabled=yes interface=bridge1 name=server3
/port
set 0 name=serial0
/interface bridge port
add bridge=bridge1 interface=sfp-sfpplus1
add bridge=bridge1 interface=sfp-sfpplus3 pvid=68
add bridge=bridge1 interface=sfp-sfpplus2 pvid=32
add bridge=bridge1 interface=sfp-sfpplus4 pvid=10
/interface bridge vlan
add bridge=bridge1 vlan-ids=32,68,10
add bridge=bridge1 tagged=sfp-sfpplus1 untagged=sfp-sfpplus2 vlan-ids=32
add bridge=bridge1 tagged=sfp-sfpplus1 untagged=sfp-sfpplus3 vlan-ids=68
add bridge=bridge1 tagged=sfp-sfpplus1,bridge1 vlan-ids=99
/ip address
add address=10.2.68.1/22 interface=bridge1 network=10.2.68.0
add address=10.2.222.2/30 interface=sfp-sfpplus24 network=10.2.222.0
add address=192.168.252.1/22 disabled=yes interface=bridge1 network=\
192.168.252.0
add address=10.2.32.1/22 interface=bridge1 network=10.2.32.0
add address=192.168.99.1/24 interface=vlan99 network=192.168.99.0
/ip dhcp-server network
add address=10.2.32.0/22 dns-server=10.2.7.50,192.168.16.66 domain=\
domain.local gateway=10.2.32.1 netmask=22
add address=10.2.68.0/22 dns-server=10.2.7.50,192.168.16.66 domain=\
domain.local gateway=10.2.68.1 netmask=22
add address=192.168.252.0/22 dns-server=10.2.7.50,192.168.16.66 domain=\
domain.local gateway=192.168.252.1
/ip route
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=10.2.222.1 pref-src="" \
routing-table=main scope=30 suppress-hw-offload=no target-scope=10
add disabled=no dst-address=0.0.0.0/0 gateway=192.168.99.254 routing-table=main \
suppress-hw-offload=no
/system note
set show-at-login=no
/system routerboard settings
set boot-os=router-os enter-setup-on=delete-key
[admin@MikroTik] >
I’d really appreciate it if you could point me in the right direction, as I’m clearly missing something obvious ![]()
