Correct syntax to remove individual parameters from a config

Hi there, first post! :smiley: Hopefully an easy question for the community to answer!

I have a MikroTik CRS125-24G-1S-RM running RouterOS 6.30.4.

I have a config that I had applied a mirror port configuration to, that I would now like to remove but I am unsure of the correct way to remove the entries and leave the other parameters intact.

So the particular config entry is this which is to mirror ether1:

/interface ethernet switch port

set 0 egress-mirror-to=mirror0 egress-service-tpid-override=0x8100 ingress-mirror-to=mirror0 ingress-service-tpid-override=0x8100

If I use the command β€œedit 0 egress-mirror-to” and set this value_name to β€œ0” in the editor, upon saving and quitting, the entry remains the same when I do a print.

What would be the correct syntax to use to remove the parameters β€œegress-mirror-to” and β€œingress-mirror-to” to leave only the β€œtpid-override” parameters - e.g. so the config reads β€œset 0 egress-service-tpid-override=0x8100 ingress-service-tpid-override=0x8100” only?

Many thanks in advance.

Have solved this myself but not using β€˜unset’ or β€˜remove’. Managed to remove the mirror config from that interface by setting the egress-mirror-to and ingress-mirror-to parameters to β€œnone”.

e.g.

/interface ethernet switch port

set 0 egress-mirror-to=none ingress-mirror-to=none

Hope this is useful to others.