Page 1 of 1

BACKUP INTERFACE

Posted: Thu Aug 10, 2023 2:02 pm
by eldoncito2019
Hello friends, I have the following script:
{
/interface "ETHERT 1"
:if ([/ping 1.1.1.1 count=6] = 0) do={
/interface enable "ETHERT 2"} else={
/interface disable "ETHERT 2"}
}
What I want to do with the script is that when the "ETHERT 1" interface fails the internet, enable the "ETHERT 2" interface, which will have a backup internet line for when said scenario occurs, and when the port number 1 have internet again the script re-disable port 2. Thanks for your help.

Re: BACKUP INTERFACE

Posted: Thu Aug 10, 2023 7:00 pm
by diamuxin

Re: BACKUP INTERFACE

Posted: Thu Aug 10, 2023 7:36 pm
by eldoncito2019
Thanks for your answer friend, what you sent me is a balance with failover. I need to have another line disabled so that it is activated when the main line goes down, I don't want to balance it, the script is very clear.

Re: BACKUP INTERFACE

Posted: Thu Aug 10, 2023 7:47 pm
by diamuxin
You don't need a complex script to switch from ISP1 to ISP2 and vice versa, with a simple Failover with recursive routes you have it solved, I have it (Fiber + LTE) and it works very well. Luck.

Re: BACKUP INTERFACE

Posted: Thu Aug 10, 2023 7:49 pm
by eldoncito2019
Do you have it as a backup in case the main port doesn't work?

Re: BACKUP INTERFACE

Posted: Thu Aug 10, 2023 7:51 pm
by eldoncito2019
What I want is for the script to ping only interface 1, as I have it, is it okay? Thanks again

Re: BACKUP INTERFACE  [SOLVED]

Posted: Thu Aug 10, 2023 8:41 pm
by eldoncito2019
I found the solution:
:if ([/ping 1.1.1.1 interface="ETHERT 1" count=6 ] = 0) do={
/interface enable "ETHERT 2"} else={
/interface disable "ETHERT 2"}

Thanks for the help