CRS328-24P-4S+RM - Default Gateway ping

I have this configured, and I’ve connected a device to it. It’s connected to my firewall, and I can acesss the device that’s connected it from a different VLAN pretty easily

What I can’t do with the CRS328-24P-4S+RM however is connect from within the network to it. I’ve allowed all traffic from different zones to the Mikrotik switch. Help would be appreciated.

The Mikrotik switch can’t ping it’s own default gateway , or indeed any devices it’s connected to :frowning: but it functionally works.
it seems like the ONLY way that I can access this is through the switch itself and not anything else so far

I’ve made it work
I had to tag the bridge itself, as well as the uplink port. It’s all cool now!!

My full config is:

/interface bridge
vlan-filtering=yes
ingress-filtering=yes
/interface vlan
add interface=bridge name=Management vlan-id=40
/interface bridge port
set [ find interface=ether1 ] hw=yes pvid=10 comment="WiFi"
set [ find interface=ether2 ] hw=yes pvid=10 comment="WiFi"
set [ find interface=ether3 ] hw=yes pvid=10 comment="WiFi"
set [ find interface=ether4 ] hw=yes pvid=10 comment="NAS"
set [ find interface=ether5 ] hw=yes pvid=50 comment="Telephony"
set [ find interface=ether6 ] hw=yes pvid=60 edge=yes comment="Guest"
set [ find interface=ether7 ] hw=yes pvid=30 comment="IP Cameras"
set [ find interface=ether8 ] hw=yes pvid=30 comment="IP Cameras"
set [ find interface=ether9 ] hw=yes pvid=30 comment="IP Cameras"
/interface bridge vlan
add bridge=bridge comment="tagged sfp-plus1" tagged=sfp-sfpplus1,bridge vlan-ids=10
add bridge=bridge comment="tagged sfp-sfpplus1,ether1-3,trunk VL20" tagged=sfp-sfpplus1,ether1,ether2,ether3,bridge vlan-ids=20
add bridge=bridge comment="tagged sfp-sfpplus1, trunk VL30" tagged=sfp-sfpplus1,bridge vlan-ids=30
add bridge=bridge comment="tagged sfp-sfpplus1, trunk VL40" tagged=sfp-sfpplus1,bridge vlan-ids=40
add bridge=bridge comment="tagged sfp-sfpplus1, trunk VL50" tagged=sfp-sfpplus1 vlan-ids=50
add bridge=bridge comment="tagged sfp-sfpplus1,ether1-3,trunk VL60" tagged=sfp-sfpplus1,ether1,ether2,ether3 vlan-ids=60
add bridge=bridge comment="tagged sfp-sfpplus1, trunk VL70" tagged=sfp-sfpplus1 vlan-ids=70
/ip address
add address=10.10.40.4/24 interface=Management network=10.10.40.0
/ip route
add distance=1 gateway=10.10.40.1
/system routerboard settings
set boot-os=router-os
[admin@MikroTik] >