Reconnect to a node after 15 mins?

Hi, I’ve seen a few other nodes have their setup to reconnect to say HubNet after 15mins of no activity, how is this none please? I keep getting an echolink user disconnect my nodes and then leave.

Regards Lee.

If you are still at this Lee…
You need to write a script that will look at a variable in the system.
After scripting this command:

asterisk -rx “rpt showvars 1010” ; where 1010 is the node number

it will reply like this

Variable listing for node 1010:
RPT_LINKS=0
RPT_NUMLINKS=0
RPT_AUTOPATCHUP=0
RPT_ETXKEYED=0
RPT_TXKEYED=0
RPT_RXKEYED=0
– 6 variables

in your script, a look at/parse the var :

RPT_LINKS=1,R29999 ;will show you the node number(s) connected and mode

So, your script needs to look at/parse this periodically, and if the node you are looking for is not there, make a connection again.

Make the script loop and run it at startup. I would suggest you do it manually by assigning a command to the script, and dtmf the command on a reboot. Putting it in a startup macro ‘may’ cause more than one instance if you only restart/reload.

There is a simpler way to do it, but it is more complex to explain using global variables.
Perhaps me just saying that gives you the idea if you understand.