MAC telnet issues with PVID (vlan-filtering)

Hi everyone. I hope you can help me

I have a pvid configured on my ethernet port because I need to tag all incoming traffic. VLAN filtering is enabled
The problem is that I need to access via mac-telnet the neighbors of my mikrotik (they are connected directly through a cable) but I can’t access because the pvid is configured.
The traffic is untagged when leaving.

I’m sure the pvid is the problem because in other setups I have ports on a bridge (VLAN filtering=yes) without pvid and I can access other neighbors via mac-telnet.

Here’s the config (it’s very basic):


/interface bridge
add name=bridge1 vlan-filtering=yes

/interface ethernet
set [ find default-name=ether1 ] name=ether1_to_DHCP_Server
set [ find default-name=ether2 ] name=ether2_to_end_device

/interface bridge port
add bridge=bridge1 interface=ether1_to_DHCP_Server
add bridge=bridge1 interface=ether2_to_end_device pvid=10

/interface bridge vlan
add bridge=bridge1 tagged=ether1_to_DHCP_Server untagged=ether2_to_end_device
vlan-ids=10

Does anyone know how to fix this? Is there an option within the bridge menu that needs to be activated to fix this?
Diagrama.jpg

If it’s a temporary thing (such as disaster recovery of a remote device), you could temporarilly disable that specific port at “/interface/bridge/ports disable {N}”

this will give the CPU direct control of that port, and allow mac-telnet and romon to work

other than that, if you need mac-level access to the remote device, i think the most reliable way would be to have a tagged management-only vlan

Local services have no access to VLAN 10 with that configuration - add the bridge as a tagged member of the VLAN under /interface bridge vlan and create an interface vlan attached to the bridge.