Проверка активности маршрута, если активен включаем другой маршрут, не активен - выключаем:
{local status [ip route get value-name=active [find comment=cerez_velton]]if ($status=true) do={/ip route enable [find comment=MainGW]} else={/ip route disable [find comment=MainGW]}}
Странно как то написан скрипт. правильнее будет так:
ОтветитьУдалить:local status;
:set status [ip route get value-name=active [find comment=cerez_velton]];
:if ($status=true) do={
/ip route enable [find comment=MainGW]
} else={
/ip route disable [find comment=MainGW]
}