Question Regarding Node Linking
Hello to the group, I have searched and searched regarding this questions because I know I have seen the question by others. But I cannot find the previous emails etc. So I need to ask again. I am wanting my node and repeater to automatically connect to my hub upon staring or restarting of asterisk. Can someone provide me the lines of code that I should enter to make this happen. Thank you once again for your time in assisting me. David David Dean, K0PWO Arapahoe County Colorado (720) 350-2053 cell (720) 207-9030 fax
As mentioned there are a lot of ways to do this I prefer using external scripts. In the rpt.conf node definition - the function definition A999 can be whatever you want but must match here and in the function definition. startup_macro=*A999 In rpt.conf functions definitions - A999=cmd,/etc/asterisk/local/reconnect_local The script in /etc/asterisk/local - replace <yournode> and <nodetoconnect> with real node numbers, no <> #! /bin/bash /usr/sbin/asterisk -rx "rpt fun <yournode> *3<nodetoconnect>" sleep 1 /usr/sbin/asterisk -rx "rpt fun <yournode> *3<nodetoconnect>" sleep 1 /usr/sbin/asterisk -rx "rpt fun <yournode> *3<nodetoconnect>" etc..... Note the script has to have executable permission. chmod 750 reconnect_local 73 Doug WA3DSP http://www.crompton.com/hamradio From: david@k0pwo.com To: app_rpt-users@ohnosec.org Date: Tue, 6 Jan 2015 10:31:56 -0700 Subject: [App_rpt-users] Question Regarding Node Linking Hello to the group, I have searched and searched regarding this questions because I know I have seen the question by others. But I cannot find the previous emails etc. So I need to ask again. I am wanting my node and repeater to automatically connect to my hub upon staring or restarting of asterisk. Can someone provide me the lines of code that I should enter to make this happen. Thank you once again for your time in assisting me. David David Dean, K0PWO Arapahoe County Colorado(720) 350-2053 cell(720) 207-9030 fax _______________________________________________ App_rpt-users mailing list App_rpt-users@ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
participants (2)
-
David Dean K0PWO -
Doug Crompton