Switch IP address at VLAN

I am able to access the switch from default PVID network set at bridge (IP: 192.168.1.8 ). But I am not able to reach it (PING, WinBox) over mgmt VLAN 10. Do you have any idea what is wrong in my setup? Management VLAN is working for other devices attached to the network.

/ip address print 
 #   ADDRESS            NETWORK         INTERFACE                                                                                                
 0   192.168.1.8/24     192.168.1.0     bridge                                                                                                   
 1   192.168.10.8/24    192.168.10.0    mgmt                                                                                                     
 2 D 172.16.10.195/24   172.16.10.0     bridge                                                                                                   

/interface vlan print 
 #   NAME                                                   MTU ARP             VLAN-ID INTERFACE                                                
 0 R administrativa                                        1500 enabled              20 bridge                                                   
 1 R mgmt                                                  1500 enabled              10 bridge

Yes its a config error on your part…

Can you share the config?

/export file=anynameyoulike

Remove serial and any other private info.

Whats the fun in working from facts and evidence??

It’s obvious that there is error on my side. Just I am too inexperienced in Mikrotik world to find it.
Any file you like in the attachment.

The goal is to reach device by mgmt IP 192.168.10.8 and retire user segment IP 192.168.1.8
anynameyoulike.rsc (3.97 KB)

Because you’re dealing with Layer3 traffic you would have to add the bridge interface as a tagged port to the appropriate bridge VLAN table entry:

/interface bridge vlan
add bridge=bridge tagged=
combo1,sfp1,sfp2,sfp3,sfp18,sfp-sfpplus1,sfp-sfpplus2,bridge untagged=sfp19
vlan-ids=10

awesome! that piece was missing!