Enable, disable the rule in NAT using the button

Can you share your solution with us?

Also interested, would be great easy thing how to switch Netflix accounts/Région on Apple TV

string dst = “External_ip_address:Port”;

var list = connection.CreateCommandAndParameters(“/ip/firewall/connection/print”, “dst-address”, dst).ExecuteList();
foreach (var item in list)
{
connection.CreateCommandAndParameters(“/ip/firewall/connection/remove”, “.id”, item.Words[“.id”]).ExecuteNonQuery();
}