Hello, I have a CRS304-4XG switch that has been working well for several months connecting two proxmox hosts to upstream and downstream switches. All ports were previously used as trunk ports for some combination of VLANs.
Now I would like to connect one port as an access port (untagged) to VLAN 112 for a bare metal server. I have read a lot of documentation and tried many combinations of configurations, but nothing has made this work. Layer 1 seems to be fine, I see TX and RX packets with no errors, 5gb/s link (as expected) and the same cable plugged into a Cisco switch access port on VLAN 112 works fine. (That switch is downstream of this CRS304 and passes traffic through this CRS304 on VLAN 112 just fine.) Everything seems to work on vlans that are tagged, but untagged on this port does not work. Can someone please help?
I know this is for beginner basics but I am only beginner to Mikrotik, not to networking. I have many years of experience with Cisco switching and routing, so I understand the concepts, just not always the ways that Mikrotik uses them. Bridge VLAN Table - RouterOS - MikroTik Documentation was helpful, but doesn’t seem to contain the answer to this problem.
I tried adding vlan filtering to the bridge, but it seems to make VLAN 112 inaccessible for all ports. That shouldn’t happen with the interface bridge vlan configuration specifying as it is? I also tried a reboot, and then a RouterOS upgrade with another reboot. I had been using 7.17 previously.
Here is my current configuration that is not working ether2:
[****] > /export compact
#2026-01-28 22:18:01 by RouterOS 7.18.2
#software id = N9RK-HBAB
#model = CRS304-4XG
#serial number = ****
/interface bridge
add admin-mac=F4:1E:57:**** auto-mac=no comment=defconf name=bridge priority=0x7000
/interface vlan
add comment="VLAN 101 Interface" interface=bridge name=vlan101int vlan-id=101
/interface ethernet switch port
set 1 limit-broadcasts=no
/port
set 0 name=serial0
/interface bridge port
add bridge=bridge comment="Uplink to Core Sw" interface=ether1 pvid=99
add bridge=bridge comment="Access Port to Compute2" ingress-filtering=no interface=ether2 pvid=112
add bridge=bridge comment="Trunk to Sbox MB 10G" interface=ether3 pvid=99
add bridge=bridge comment="Trunk to Block 10G" interface=ether4 pvid=99
add bridge=bridge comment="Trunk to 1g 8P Switch (MGMT)" interface=ether5 pvid=101
/ip neighbor discovery-settings
set discover-interface-list=all lldp-dcbx=no lldp-med-net-policy-vlan=1 protocol=cdp
/ipv6 settings
set accept-redirects=no accept-router-advertisements=no allow-fast-path=no disable-ipv6=yes disable-link-local-address=yes forward=no
/interface bridge vlan
add bridge=bridge comment=101 tagged=ether1,ether3,ether4,ether5 vlan-ids=101
add bridge=bridge comment=102 tagged=ether1,ether3,ether4,ether5 vlan-ids=102
add bridge=bridge comment=103 tagged=ether1,ether3,ether4,ether5 vlan-ids=103
add bridge=bridge comment=104 tagged=ether1,ether3,ether4,ether5 vlan-ids=104
add bridge=bridge comment=105 tagged=ether1,ether3,ether4,ether5 vlan-ids=105
add bridge=bridge comment=106 tagged=ether1,ether3,ether4,ether5 vlan-ids=106
add bridge=bridge comment=111 tagged=ether1,ether3,ether4,ether5 vlan-ids=111
add bridge=bridge comment=166 tagged=ether1,ether3,ether4,ether5 vlan-ids=166
add bridge=bridge comment=112 tagged=ether1,ether3,ether4,ether5 untagged=ether2 vlan-ids=112
add bridge=bridge comment="PineStaging 201 Temp (do not use)" tagged=ether1,ether3,ether4 vlan-ids=201
add bridge=bridge comment=32 tagged=ether1,ether4,ether3 vlan-ids=32
add bridge=bridge comment="199 Sync" tagged=ether1,ether3,ether4,ether5 vlan-ids=199
add bridge=bridge comment=SimWAN tagged=ether1,ether3,ether4,ether5 vlan-ids=88
/ip address
add address=.../24 comment=defconf interface=vlan101int network=...
/ip service
set telnet disabled=yes
set ftp disabled=yes
set www-ssl disabled=no
set api disabled=yes
set winbox disabled=yes
set api-ssl disabled=yes
/system identity
set name=MT
/system note
set show-at-login=no
/system ntp client
set enabled=yes
/system ntp client servers
add address=...
Thank you for any help you can provide!