I have the following line :
/ip firewall filter action=“accept” chain=“input” dst-address=“10.10.10.1” dst-port=“16” protocol=“tcp”
Please, I want to set the value of the variable dst-address to nothing by script ?
this is not working
/ip firewall filter action=“accept” chain=“input” dst-address=“” dst-port=“16” protocol=“tcp”
Also this does not work
/ip firewall filter action=“accept” chain=“input” dst-address=nothing dst-port=“16” protocol=“tcp”
What’s the solution ?