Disable BPDU sending on one port

Hi,

I am quiet new to the Mikrotik environnement and i want to disable BPDU sending frame on one port.

I found the command in the manual, but i am not sure about the dst-mac-address.
I need to put the mac address of my out-interface ?

/interface bridge filter
add action=drop chain=output dst-mac-address=01:80:C2:00:00:00/FF:FF:FF:FF:FF:FF out-interface=ether1

It’s maybe a stupid question, but i want to be sure.

Thank

if you want to disable BPDUs on specific port, just use this command:

/interface bridge
add name=bridge1
/interface bridge port
add bridge=bridge1 interface=ether1 bpdu-guard=yes

“In this example if ether1 receives a BPDU, it will block the port and will require you to manually re-enable it.”

But i don’t want to block the port.
My purpose is to stop sending BPDU and ignore receiving BPDU on a port.

Set edge=yes for the interface bridge port. I do not recall when this feature was added, it is mentioned in the help pages but not the old wiki.

Hello,

Thank you for your return.
Should be good now. To test it, i imagine i have no choice, i need to make packet capture ?