I wanna set all my static entries in arp to the interface local
i use a static arp , but i noticed that all them are set to interface (unknown)
i wanna script to set them all to the local interface even the ones which are set to any other ether .
i tried this one but in vane
:foreach i in=[/ip arp find] do={
:set interface=local
}
i do not want to do that :
:foreach i in=[/ip arp find interface=inet] do={/ip arp set $
i interface=local}
i want to set them all
thanks ,