From k1ra at k1ra.us Tue Aug 1 06:01:05 2017 From: k1ra at k1ra.us (K1RA - Andy Z) Date: Tue, 01 Aug 2017 06:01:05 +0000 Subject: [App_rpt-users] Event Management + COP 62 + GPIO = error? Message-ID: Hi, I'm running a RadioUSB channel driver setup with an RA-35 USB peripheral with a CM119A that has several GPIO pins available. I'm attempting to write a test event to set a GPIO pin on that USB peripheral based on a system variable state, but I believe the app_rpt event parser is not correctly working and I'm wondering if this is a bug or there is a work around. Here's my GPIO setup in usbradio.conf [general] gpio1 = in gpio2 = out0 gpio4 = out1 gpio5 = in Here's my event in rpt.conf [events1999] cop,62,GPIO4=1 = c|t|RPT_RXKEYED cop,62,GPIO4=0 = c|f|RPT_RXKEYED I receive the following error within the CLI when monitoring activity ERROR[4499]: app_rpt.c:3483 rpt_event_process: Unrecognized event action (0) in exec item malformed: 0 = c|t|RPT_RXKEYED ERROR[4499]: app_rpt.c:3483 rpt_event_process: Unrecognized event action (1) in exec item malformed: 1 = c|f|RPT_RXKEYED It appears the first '=' in the GPIOn=x setting is causing the parser to break the too early per the docs here http://ohnosec.org/drupal/node/176 Apparently the parser is NOT really looking for ' = ' as the delimiting string, but catching '=' instead. I see cop 61 event is looking for "GPIO%d=%d" per line 12827 in app_rpt.c as far as I can tell, but its never getting to that code https://github.com/AllStarLink/Asterisk/blob/master/asterisk/apps/app_rpt.c Note I can use the CLI and cop,62 command to properly toggle the GPIO so I know that part of the parser seems to be working OK. I've also set a DTMF function command to toggle GPIO and that works too. I've also placed other that don't have an '=' in place of my above cop,62 and that works fine as well. Any suggestions, fixes or workarounds? Thanks & 73 andyz - K1RA http://k1ra.us/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From paulkn2r at gmail.com Tue Aug 1 11:47:31 2017 From: paulkn2r at gmail.com (Paul Aidukas) Date: Tue, 1 Aug 2017 07:47:31 -0400 Subject: [App_rpt-users] Event Management + COP 62 + GPIO = error? In-Reply-To: References: Message-ID: Hi Andy, Try this: [functions] 881=cop,62,GPIO4=1 882=cop,62,GPIO4=0 TEMPVAR1 = v|e|\"${RPT_RXKEYED}\" *881 = f|t|TEMPVAR1 *882 = f|f|TEMPVAR1 Paul / KN2R On Tue, Aug 1, 2017 at 2:01 AM, K1RA - Andy Z wrote: > Hi, > I'm running a RadioUSB channel driver setup with an RA-35 USB peripheral > with a CM119A that has several GPIO pins available. I'm attempting to > write a test event to set a GPIO pin on that USB peripheral based on a > system variable state, but I believe the app_rpt event parser is not > correctly working and I'm wondering if this is a bug or there is a work > around. > > Here's my GPIO setup in usbradio.conf > > [general] > gpio1 = in > gpio2 = out0 > gpio4 = out1 > gpio5 = in > > Here's my event in rpt.conf > > [events1999] > cop,62,GPIO4=1 = c|t|RPT_RXKEYED > cop,62,GPIO4=0 = c|f|RPT_RXKEYED > > I receive the following error within the CLI when monitoring activity > > ERROR[4499]: app_rpt.c:3483 rpt_event_process: Unrecognized event action > (0) in exec item malformed: 0 = c|t|RPT_RXKEYED > ERROR[4499]: app_rpt.c:3483 rpt_event_process: Unrecognized event action > (1) in exec item malformed: 1 = c|f|RPT_RXKEYED > > It appears the first '=' in the GPIOn=x setting is causing the parser to > break the too early per the docs here > > http://ohnosec.org/drupal/node/176 > > Apparently the parser is NOT really looking for ' = ' as the delimiting > string, but catching '=' instead. I see cop 61 event is looking for > "GPIO%d=%d" per line 12827 in app_rpt.c as far as I can tell, but its never > getting to that code > > https://github.com/AllStarLink/Asterisk/blob/ > master/asterisk/apps/app_rpt.c > > Note I can use the CLI and cop,62 command to properly toggle the GPIO so I > know that part of the parser seems to be working OK. I've also set a DTMF > function command to toggle GPIO and that works too. I've also placed other > that don't have an '=' in place of my above cop,62 and that > works fine as well. > > Any suggestions, fixes or workarounds? > > Thanks & 73 > > andyz - K1RA > http://k1ra.us/ > > > > > > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- Paul / KN2R -------------- next part -------------- An HTML attachment was scrubbed... URL: From paulkn2r at gmail.com Tue Aug 1 11:49:26 2017 From: paulkn2r at gmail.com (Paul Aidukas) Date: Tue, 1 Aug 2017 07:49:26 -0400 Subject: [App_rpt-users] Event Management + COP 62 + GPIO = error? In-Reply-To: References: Message-ID: Oops typo, meant this: [functions] 881=cop,62,GPIO4=1 882=cop,62,GPIO4=0 [events] TEMPVAR1 = v|e|\"${RPT_RXKEYED}\" *881 = f|t|TEMPVAR1 *882 = f|f|TEMPVAR1 On Tue, Aug 1, 2017 at 7:47 AM, Paul Aidukas wrote: > Hi Andy, > > Try this: > > [functions] > 881=cop,62,GPIO4=1 > 882=cop,62,GPIO4=0 > > TEMPVAR1 = v|e|\"${RPT_RXKEYED}\" > *881 = f|t|TEMPVAR1 > *882 = f|f|TEMPVAR1 > > Paul / KN2R > > > > On Tue, Aug 1, 2017 at 2:01 AM, K1RA - Andy Z wrote: > >> Hi, >> I'm running a RadioUSB channel driver setup with an RA-35 USB >> peripheral with a CM119A that has several GPIO pins available. I'm >> attempting to write a test event to set a GPIO pin on that USB peripheral >> based on a system variable state, but I believe the app_rpt event parser is >> not correctly working and I'm wondering if this is a bug or there is a work >> around. >> >> Here's my GPIO setup in usbradio.conf >> >> [general] >> gpio1 = in >> gpio2 = out0 >> gpio4 = out1 >> gpio5 = in >> >> Here's my event in rpt.conf >> >> [events1999] >> cop,62,GPIO4=1 = c|t|RPT_RXKEYED >> cop,62,GPIO4=0 = c|f|RPT_RXKEYED >> >> I receive the following error within the CLI when monitoring activity >> >> ERROR[4499]: app_rpt.c:3483 rpt_event_process: Unrecognized event action >> (0) in exec item malformed: 0 = c|t|RPT_RXKEYED >> ERROR[4499]: app_rpt.c:3483 rpt_event_process: Unrecognized event action >> (1) in exec item malformed: 1 = c|f|RPT_RXKEYED >> >> It appears the first '=' in the GPIOn=x setting is causing the parser to >> break the too early per the docs here >> >> http://ohnosec.org/drupal/node/176 >> >> Apparently the parser is NOT really looking for ' = ' as the delimiting >> string, but catching '=' instead. I see cop 61 event is looking for >> "GPIO%d=%d" per line 12827 in app_rpt.c as far as I can tell, but its never >> getting to that code >> >> https://github.com/AllStarLink/Asterisk/blob/master/ >> asterisk/apps/app_rpt.c >> >> Note I can use the CLI and cop,62 command to properly toggle the GPIO so >> I know that part of the parser seems to be working OK. I've also set a >> DTMF function command to toggle GPIO and that works too. I've also placed >> other that don't have an '=' in place of my above cop,62 and >> that works fine as well. >> >> Any suggestions, fixes or workarounds? >> >> Thanks & 73 >> >> andyz - K1RA >> http://k1ra.us/ >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.org/c >> gi-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. >> > > > > -- > > Paul / KN2R > > -- Paul / KN2R -------------- next part -------------- An HTML attachment was scrubbed... URL: From loren at lorentedford.com Wed Aug 2 20:08:01 2017 From: loren at lorentedford.com (Loren Tedford) Date: Wed, 02 Aug 2017 15:08:01 -0500 Subject: [App_rpt-users] I got lost today with Crompton's image.. Message-ID: <48403346167c99afc0b4966b7989dec4@lorentedford.com> I recently was contacted by some one through facebook that was using Crompton's image and was wondering exactly what is different between there image and the dial image when it comes to simple usb... This individual made their own USB fob however it would not work at all with the dial distro.. Maybe I did some thing wrong i don't know but all i have to say is that it worked just very low audio on the Cromptons image.. The issue here is that the branch is so different conventional Debian commands don't work in Arch linux and the way that it seems to recognize different USB sound fobs makes me wonder first off how many other new comers to the allstar community are confused.. I know i would be thats for sure..I guess i am venting more than informing but if some one has an idea what possibly they changed to over ride the modules.conf files etc.. That would be great.. Because even with noload in modeles.conf the echochan driver was still working mysteriously.. -- Loren Tedford (KC9ZHV) Email: lorentedford at gmail.com Email: KC9ZHV at KC9ZHV.com http://www.lorentedford.com http://www.kc9zhv.com http://forum.kc9zhv.com http://hub.kc9zhv.com http://Ltcraft.net http://voipham.com From kuggie at kuggie.com Thu Aug 3 02:34:37 2017 From: kuggie at kuggie.com (Kevin Custer) Date: Wed, 2 Aug 2017 22:34:37 -0400 Subject: [App_rpt-users] RA-40 - USB Radio Adapter Message-ID: Masters Communications has released a new USB Radio Adapter - the RA-40. This radio adapter has all of the features of its sister, the RA-35, but, the RA-40 includes two more level control potentiometers for the TX channels. This allows the RA-40 to be used in just about any situation from a simplex node using handhelds and MIC audio to the audio hungry Yaesu System Fusion repeaters, BridgeCom repeaters and Kenwood repeaters. Information on the RA-40 can be seen here: http://www.masterscommunications.com/ Please refresh the page if you don't see the RA-40 link, as it was just added recently. Comments and questions are welcomed - here or privately. Ordering is available from the website using PayPal. Thanks, Kevin Custer - Owner Masters Communications Disclaimer: This is a product I make available to the public for a profit. 25% of the profit of the RA-35 and RA-40 goes to the AllStar Link Network, where it's used to help defray the costs of server co-location and other recurring bills. Thank you for your continued support of AllStar Link. From k6ecm1 at gmail.com Thu Aug 3 12:55:39 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Thu, 3 Aug 2017 05:55:39 -0700 Subject: [App_rpt-users] Echolink not registering Message-ID: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> An old revived node with Echolink is not registering, and I'm wondering what I missed. Have both TCP and UDP port forwarding set, echolink.conf same as before. Also, the echolink gains are properly set in rpt.conf. Then node ssh and Allstar linking all works properly with Putty and other nodes, respectively. Is there something else? I've been through the instructions several times (sigh!) Thanks, Bob k6ecm 73 Sent from iPad From szingman at msgstor.com Thu Aug 3 13:19:18 2017 From: szingman at msgstor.com (Steve Zingman) Date: Thu, 3 Aug 2017 09:19:18 -0400 Subject: [App_rpt-users] Echolink not registering In-Reply-To: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> Message-ID: Anything in the logs you can show us? echolink enabled in modules.conf? 73, Steve On 8/3/2017 8:55 AM, Bob Pyke wrote: > An old revived node with Echolink is not registering, and I'm wondering what I missed. Have both TCP and UDP port forwarding set, echolink.conf same as before. Also, the echolink gains are properly set in rpt.conf. Then node ssh and Allstar linking all works properly with Putty and other nodes, respectively. Is there something else? I've been through the instructions several times (sigh!) > > Thanks, > Bob > k6ecm > 73 > > Sent from iPad > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. From k6ecm1 at gmail.com Thu Aug 3 14:50:07 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Thu, 3 Aug 2017 07:50:07 -0700 Subject: [App_rpt-users] Echolink not registering In-Reply-To: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> Message-ID: <41137916-3E0D-45AA-A246-5C6C3163247E@gmail.com> P.S. OS Original DIAL on a mini-ITX Thanks, Bob k6ecm 73 Sent from iPad > On Aug 3, 2017, at 5:55 AM, Bob Pyke wrote: > > An old revived node with Echolink is not registering, and I'm wondering what I missed. Have both TCP and UDP port forwarding set, echolink.conf same as before. Also, the echolink gains are properly set in rpt.conf. Then node ssh and Allstar linking all works properly with Putty and other nodes, respectively. Is there something else? I've been through the instructions several times (sigh!) > > Thanks, > Bob > k6ecm > 73 > > Sent from iPad > From k6ecm1 at gmail.com Thu Aug 3 14:51:53 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Thu, 3 Aug 2017 07:51:53 -0700 Subject: [App_rpt-users] Echolink not registering In-Reply-To: References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> Message-ID: Aug 1 20:49:20] ERROR[699] chan_echolink.c: Unable to resolve echolink APRS server IP address Yes, echolink loaded in modules.conf Thanks, Bob k6ecm 73 Sent from iPad > On Aug 3, 2017, at 6:19 AM, Steve Zingman wrote: > > Anything in the logs you can show us? > echolink enabled in modules.conf? > > 73, Steve > >> On 8/3/2017 8:55 AM, Bob Pyke wrote: >> An old revived node with Echolink is not registering, and I'm wondering what I missed. Have both TCP and UDP port forwarding set, echolink.conf same as before. Also, the echolink gains are properly set in rpt.conf. Then node ssh and Allstar linking all works properly with Putty and other nodes, respectively. Is there something else? I've been through the instructions several times (sigh!) >> >> Thanks, >> Bob >> k6ecm >> 73 >> >> Sent from iPad >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From szingman at msgstor.com Thu Aug 3 14:55:47 2017 From: szingman at msgstor.com (Steve Zingman) Date: Thu, 3 Aug 2017 10:55:47 -0400 Subject: [App_rpt-users] Echolink not registering In-Reply-To: References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> Message-ID: <85ebd616-b7d3-b96a-b69f-14d4d5848a92@msgstor.com> Someone more familiar with echolink may chime in. This looks interesting: Unable to resolve echolink APRS server IP address Can you post your echolink.conf? Steve On 8/3/2017 10:51 AM, Bob Pyke wrote: > > Aug 1 20:49:20] ERROR[699] chan_echolink.c: Unable to resolve > echolink APRS server IP address > > > Yes, echolink loaded in modules.conf > > > Thanks, > Bob > k6ecm > 73 > > Sent from iPad > > > On Aug 3, 2017, at 6:19 AM, Steve Zingman > wrote: > >> Anything in the logs you can show us? >> echolink enabled in modules.conf? >> >> 73, Steve >> >> On 8/3/2017 8:55 AM, Bob Pyke wrote: >>> An old revived node with Echolink is not registering, and I'm >>> wondering what I missed. Have both TCP and UDP port forwarding set, >>> echolink.conf same as before. Also, the echolink gains are properly >>> set in rpt.conf. Then node ssh and Allstar linking all works >>> properly with Putty and other nodes, respectively. Is there >>> something else? I've been through the instructions several times (sigh!) >>> >>> Thanks, >>> Bob >>> k6ecm >>> 73 >>> >>> Sent from iPad >>> >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at lists.allstarlink.org >>> >>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> To unsubscribe from this list please visit >>> http://lists.allstarlink.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. >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit >> http://lists.allstarlink.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. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ckraly at gmail.com Thu Aug 3 15:02:37 2017 From: ckraly at gmail.com (Chuck Kraly) Date: Thu, 3 Aug 2017 10:02:37 -0500 Subject: [App_rpt-users] Echolink not registering In-Reply-To: <85ebd616-b7d3-b96a-b69f-14d4d5848a92@msgstor.com> References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> <85ebd616-b7d3-b96a-b69f-14d4d5848a92@msgstor.com> Message-ID: If I remember, they kill users id's in echolink after a while if the logs do not show a recent login. Also there is a possibility they, like a lot of servers, have changed addy's Chuck K0XM On Thu, Aug 3, 2017 at 9:55 AM, Steve Zingman wrote: > Someone more familiar with echolink may chime in. > This looks interesting: > Unable to resolve echolink APRS server IP address > Can you post your echolink.conf? > > Steve > > > On 8/3/2017 10:51 AM, Bob Pyke wrote: > > Aug 1 20:49:20] ERROR[699] chan_echolink.c: Unable to resolve echolink > APRS server IP address > > > Yes, echolink loaded in modules.conf > > Thanks, > Bob > k6ecm > 73 > > Sent from iPad > > > On Aug 3, 2017, at 6:19 AM, Steve Zingman wrote: > > Anything in the logs you can show us? > echolink enabled in modules.conf? > > 73, Steve > > On 8/3/2017 8:55 AM, Bob Pyke wrote: > > An old revived node with Echolink is not registering, and I'm wondering > what I missed. Have both TCP and UDP port forwarding set, echolink.conf > same as before. Also, the echolink gains are properly set in rpt.conf. Then > node ssh and Allstar linking all works properly with Putty and other nodes, > respectively. Is there something else? I've been through the instructions > several times (sigh!) > > > Thanks, > > Bob > > k6ecm > > 73 > > > Sent from iPad > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at lists.allstarlink.org > > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > > _______________________________________________ > App_rpt-users mailing listApp_rpt-users at lists.allstarlink.orghttp://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From szingman at msgstor.com Thu Aug 3 15:06:06 2017 From: szingman at msgstor.com (Steve Zingman) Date: Thu, 3 Aug 2017 11:06:06 -0400 Subject: [App_rpt-users] Echolink not registering In-Reply-To: References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> <85ebd616-b7d3-b96a-b69f-14d4d5848a92@msgstor.com> Message-ID: I can almost spell echolink, this works for me on DIAL On 8/3/2017 11:02 AM, Chuck Kraly wrote: > If I remember, they kill users id's in echolink after a while if the > logs do not show a recent login. Also there is a possibility they, > like a lot of servers, have changed addy's > Chuck K0XM > > On Thu, Aug 3, 2017 at 9:55 AM, Steve Zingman > wrote: > > Someone more familiar with echolink may chime in. > This looks interesting: > Unable to resolve echolink APRS server IP address > Can you post your echolink.conf? > > Steve > > > On 8/3/2017 10:51 AM, Bob Pyke wrote: >> >> Aug 1 20:49:20] ERROR[699] chan_echolink.c: Unable to resolve >> echolink APRS server IP address >> >> >> Yes, echolink loaded in modules.conf >> >> >> Thanks, >> Bob >> k6ecm >> 73 >> >> Sent from iPad >> >> >> On Aug 3, 2017, at 6:19 AM, Steve Zingman > > wrote: >> >>> Anything in the logs you can show us? >>> echolink enabled in modules.conf? >>> >>> 73, Steve >>> >>> On 8/3/2017 8:55 AM, Bob Pyke wrote: >>>> An old revived node with Echolink is not registering, and I'm >>>> wondering what I missed. Have both TCP and UDP port forwarding >>>> set, echolink.conf same as before. Also, the echolink gains are >>>> properly set in rpt.conf. Then node ssh and Allstar linking all >>>> works properly with Putty and other nodes, respectively. Is >>>> there something else? I've been through the instructions >>>> several times (sigh!) >>>> >>>> Thanks, >>>> Bob >>>> k6ecm >>>> 73 >>>> >>>> Sent from iPad >>>> >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at lists.allstarlink.org >>>> >>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> >>>> To unsubscribe from this list please visit >>>> http://lists.allstarlink.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. >>> >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at lists.allstarlink.org >>> >>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> >>> To unsubscribe from this list please visit >>> http://lists.allstarlink.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. >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> >> To unsubscribe from this list please visithttp://lists.allstarlink.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. > _______________________________________________ App_rpt-users > mailing list App_rpt-users at lists.allstarlink.org > > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From k6ecm1 at gmail.com Thu Aug 3 15:30:43 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Thu, 3 Aug 2017 08:30:43 -0700 Subject: [App_rpt-users] Echolink not registering In-Reply-To: References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> <85ebd616-b7d3-b96a-b69f-14d4d5848a92@msgstor.com> Message-ID: <9A99A1C9-155D-4B25-94EE-6590E2AE323F@gmail.com> Will take a look. The EchoLink.conf was working on the RPi till it died Monday. I don't get the APRS error, which occurs only on boot up. Thanks, Bob Sent from my iPhone > On Aug 3, 2017, at 8:06 AM, Steve Zingman wrote: > > I can almost spell echolink, this works for me on DIAL > >> On 8/3/2017 11:02 AM, Chuck Kraly wrote: >> If I remember, they kill users id's in echolink after a while if the logs do not show a recent login. Also there is a possibility they, like a lot of servers, have changed addy's >> Chuck K0XM >> >> On Thu, Aug 3, 2017 at 9:55 AM, Steve Zingman wrote: >>> Someone more familiar with echolink may chime in. >>> This looks interesting: >>> Unable to resolve echolink APRS server IP address >>> Can you post your echolink.conf? >>> >>> Steve >>> >>> >>>> On 8/3/2017 10:51 AM, Bob Pyke wrote: >>>> Aug 1 20:49:20] ERROR[699] chan_echolink.c: Unable to resolve echolink APRS server IP address >>>> >>>> Yes, echolink loaded in modules.conf >>>> >>>> Thanks, >>>> Bob >>>> k6ecm >>>> 73 >>>> >>>> Sent from iPad >>>> >>>> >>>> On Aug 3, 2017, at 6:19 AM, Steve Zingman wrote: >>>> >>>>> Anything in the logs you can show us? >>>>> echolink enabled in modules.conf? >>>>> >>>>> 73, Steve >>>>> >>>>>> On 8/3/2017 8:55 AM, Bob Pyke wrote: >>>>>> An old revived node with Echolink is not registering, and I'm wondering what I missed. Have both TCP and UDP port forwarding set, echolink.conf same as before. Also, the echolink gains are properly set in rpt.conf. Then node ssh and Allstar linking all works properly with Putty and other nodes, respectively. Is there something else? I've been through the instructions several times (sigh!) >>>>>> >>>>>> Thanks, >>>>>> Bob >>>>>> k6ecm >>>>>> 73 >>>>>> >>>>>> Sent from iPad >>>>>> >>>>>> _______________________________________________ >>>>>> App_rpt-users mailing list >>>>>> App_rpt-users at lists.allstarlink.org >>>>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>>>> >>>>>> To unsubscribe from this list please visit http://lists.allstarlink.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. >>>>> >>>>> _______________________________________________ >>>>> App_rpt-users mailing list >>>>> App_rpt-users at lists.allstarlink.org >>>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>>> >>>>> To unsubscribe from this list please visit http://lists.allstarlink.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. >>>> >>>> >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at lists.allstarlink.org >>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> To unsubscribe from this list please visit http://lists.allstarlink.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. >>> _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.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. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From k6ecm1 at gmail.com Thu Aug 3 20:53:57 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Thu, 3 Aug 2017 13:53:57 -0700 Subject: [App_rpt-users] Echolink not registering In-Reply-To: References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> <85ebd616-b7d3-b96a-b69f-14d4d5848a92@msgstor.com> Message-ID: Missed this before... [el0] confmode=no call=WA6YBN-R pwd=********* name=WA6YBN qth=Ridgecrest, CA email=k6ecm1 at gmail.com maxstns=20 rtcptimeout=10 node=518309 recfile=/tmp/recorded.gsm astnode=27178 context=radio-secure lat=35.614163 lon=-117.684259 power=5 height=1 gain=3 dir=0 server1=nawest.echolink.org server2=nasouth.echolink.org server3=server1.echolink.org server4=server3.echolink.org #includeifexists custom/echolink.conf >>> n Thu, Aug 3, 2017 at 9:55 AM, Steve Zingman wrote: >>> Someone more familiar with echolink may chime in. >>> This looks interesting: >>> Unable to resolve echolink APRS server IP address >>> Can you post your echolink.conf? >>> >>> Steve >>> >>> >>>> On 8/3/2017 10:51 AM, Bob Pyke wrote: >>>> Aug 1 20:49:20] ERROR[699] chan_echolink.c: Unable to resolve echolink APRS server IP address >>>> >>>> Yes, echolink loaded in modules.conf >>>> >>>> Thanks, >>>> Bob >>>> k6ecm >>>> 73 >>>> >>>> Sent from iPad >>>> >>>> >>>> On Aug 3, 2017, at 6:19 AM, Steve Zingman wrote: >>>> >>>>> Anything in the logs you can show us? >>>>> echolink enabled in modules.conf? >>>>> >>>>> 73, Steve >>>>> >>>>>> On 8/3/2017 8:55 AM, Bob Pyke wrote: >>>>>> An old revived node with Echolink is not registering, and I'm wondering what I missed. Have both TCP and UDP port forwarding set, echolink.conf same as before. Also, the echolink gains are properly set in rpt.conf. Then node ssh and Allstar linking all works properly with Putty and other nodes, respectively. Is there something else? I've been through the instructions several times (sigh!) >>>>>> >>>>>> Thanks, >>>>>> Bob >>>>>> k6ecm >>>>>> 73 >>>>>> >>>>>> Sent from iPad >>>>>> >>>>>> _______________________________________________ >>>>>> App_rpt-users mailing list >>>>>> App_rpt-users at lists.allstarlink.org >>>>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>>>> >>>>>> To unsubscribe from this list please visit http://lists.allstarlink.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. >>>>> >>>>> _______________________________________________ >>>>> App_rpt-users mailing list >>>>> App_rpt-users at lists.allstarlink.org >>>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>>> >>>>> To unsubscribe from this list please visit http://lists.allstarlink.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. >>>> >>>> >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at lists.allstarlink.org >>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> To unsubscribe from this list please visit http://lists.allstarlink.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. >>> _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.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. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From nessenj at jimsoffice.org Thu Aug 3 21:24:28 2017 From: nessenj at jimsoffice.org (Jim Nessen) Date: Thu, 3 Aug 2017 21:24:28 +0000 Subject: [App_rpt-users] Echolink not registering In-Reply-To: References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> <85ebd616-b7d3-b96a-b69f-14d4d5848a92@msgstor.com> , Message-ID: Looks like the APRS echolink address is hard coded into the channel driver. Can you run nslookup on aprs.echolink.org from your node? ahp = ast_gethostbyname(EL_APRS_SERVER,&ah); if (!ahp) { ast_log(LOG_ERROR, "Unable to resolve echolink APRS server IP address\n"); close(instp->ctrl_sock); instp->ctrl_sock = -1; close(instp->audio_sock); instp->audio_sock = -1; return -1; } #define EL_APRS_SERVER "aprs.echolink.org" Jim, K6JWN ________________________________________ From: App_rpt-users on behalf of Bob Pyke Sent: Thursday, August 3, 2017 1:53 PM To: Users of Asterisk app_rpt Subject: Re: [App_rpt-users] Echolink not registering Missed this before... [el0] confmode=no call=WA6YBN-R pwd=********* name=WA6YBN qth=Ridgecrest, CA email=k6ecm1 at gmail.com maxstns=20 rtcptimeout=10 node=518309 recfile=/tmp/recorded.gsm astnode=27178 context=radio-secure lat=35.614163 lon=-117.684259 power=5 height=1 gain=3 dir=0 server1=nawest.echolink.org server2=nasouth.echolink.org server3=server1.echolink.org server4=server3.echolink.org #includeifexists custom/echolink.conf n Thu, Aug 3, 2017 at 9:55 AM, Steve Zingman > wrote: Someone more familiar with echolink may chime in. This looks interesting: Unable to resolve echolink APRS server IP address Can you post your echolink.conf? Steve On 8/3/2017 10:51 AM, Bob Pyke wrote: Aug 1 20:49:20] ERROR[699] chan_echolink.c: Unable to resolve echolink APRS server IP address Yes, echolink loaded in modules.conf Thanks, Bob k6ecm 73 Sent from iPad On Aug 3, 2017, at 6:19 AM, Steve Zingman > wrote: Anything in the logs you can show us? echolink enabled in modules.conf? 73, Steve On 8/3/2017 8:55 AM, Bob Pyke wrote: An old revived node with Echolink is not registering, and I'm wondering what I missed. Have both TCP and UDP port forwarding set, echolink.conf same as before. Also, the echolink gains are properly set in rpt.conf. Then node ssh and Allstar linking all works properly with Putty and other nodes, respectively. Is there something else? I've been through the instructions several times (sigh!) Thanks, Bob k6ecm 73 Sent from iPad _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. From ckraly at gmail.com Thu Aug 3 22:46:08 2017 From: ckraly at gmail.com (Chuck Kraly) Date: Thu, 3 Aug 2017 17:46:08 -0500 Subject: [App_rpt-users] New DIAL Pi3 Install questions Message-ID: Ok, I have burned an SD card and loaded into the Pi3. It will be replacing a XIPAR Desktop on a 220 rptr. I waited the 30secs after changing the pw, and nuthin....and I wait...and I wait.....am I missing something on how to run firsttime? Chuck K0XM -------------- next part -------------- An HTML attachment was scrubbed... URL: From loren at lorentedford.com Thu Aug 3 23:31:15 2017 From: loren at lorentedford.com (Loren Tedford) Date: Thu, 03 Aug 2017 18:31:15 -0500 Subject: [App_rpt-users] =?utf-8?q?New_DIAL_Pi3_Install_questions?= In-Reply-To: References: Message-ID: <0313a50cd953aab4a0871b3361c289e5@lorentedford.com> Log into the node.. Your first time username will be root and password debian then after you go through the password change part type nodesetup and see if this helps you get to a more familiar screen. On 2017-08-03 17:46, Chuck Kraly wrote: > Ok, I have burned an SD card and loaded into the Pi3. It will be > replacing a XIPAR Desktop on a 220 rptr. I waited the 30secs after > changing the pw, and nuthin....and I wait...and I wait.....am I > missing something on how to run firsttime? > > Chuck K0XM > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://lists.allstarlink.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. -- Loren Tedford (KC9ZHV) Email: lorentedford at gmail.com Email: KC9ZHV at KC9ZHV.com http://www.lorentedford.com http://www.kc9zhv.com http://forum.kc9zhv.com http://hub.kc9zhv.com http://Ltcraft.net http://voipham.com From szingman at msgstor.com Fri Aug 4 00:51:50 2017 From: szingman at msgstor.com (Steve Zingman) Date: Thu, 3 Aug 2017 20:51:50 -0400 Subject: [App_rpt-users] Echolink not registering In-Reply-To: References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> <85ebd616-b7d3-b96a-b69f-14d4d5848a92@msgstor.com> Message-ID: <15558354-324a-940e-c9ef-85076a56ea43@msgstor.com> You beat me to it Jim, nice catch. Not that it will resolve the issue, but hard coding this is bad. This needs to be fixed. I'm adding this to the issues. 73, Steve On 08/03/2017 05:24 PM, Jim Nessen wrote: > Looks like the APRS echolink address is hard coded into the channel driver. Can you run nslookup on aprs.echolink.org from your node? > > ahp = ast_gethostbyname(EL_APRS_SERVER,&ah); > if (!ahp) { > ast_log(LOG_ERROR, "Unable to resolve echolink APRS server IP address\n"); > close(instp->ctrl_sock); instp->ctrl_sock = -1; > close(instp->audio_sock); instp->audio_sock = -1; > return -1; > } > > #define EL_APRS_SERVER "aprs.echolink.org" > > Jim, K6JWN > ________________________________________ > From: App_rpt-users on behalf of Bob Pyke > Sent: Thursday, August 3, 2017 1:53 PM > To: Users of Asterisk app_rpt > Subject: Re: [App_rpt-users] Echolink not registering > > Missed this before... > > > [el0] > > confmode=no > > call=WA6YBN-R > > pwd=********* > > name=WA6YBN > > qth=Ridgecrest, CA > > email=k6ecm1 at gmail.com > > maxstns=20 > > rtcptimeout=10 > > node=518309 > > recfile=/tmp/recorded.gsm > > astnode=27178 > > context=radio-secure > > lat=35.614163 > > lon=-117.684259 > > power=5 > > height=1 > > gain=3 > > dir=0 > > server1=nawest.echolink.org > > server2=nasouth.echolink.org > > server3=server1.echolink.org > > server4=server3.echolink.org > > > > #includeifexists custom/echolink.conf > > n Thu, Aug 3, 2017 at 9:55 AM, Steve Zingman > wrote: > Someone more familiar with echolink may chime in. > This looks interesting: > Unable to resolve echolink APRS server IP address > Can you post your echolink.conf? > > Steve > > > On 8/3/2017 10:51 AM, Bob Pyke wrote: > > Aug 1 20:49:20] ERROR[699] chan_echolink.c: Unable to resolve echolink APRS server IP address > > > Yes, echolink loaded in modules.conf > > Thanks, > Bob > k6ecm > 73 > > Sent from iPad > > > On Aug 3, 2017, at 6:19 AM, Steve Zingman > wrote: > > Anything in the logs you can show us? > echolink enabled in modules.conf? > > 73, Steve > > On 8/3/2017 8:55 AM, Bob Pyke wrote: > An old revived node with Echolink is not registering, and I'm wondering what I missed. Have both TCP and UDP port forwarding set, echolink.conf same as before. Also, the echolink gains are properly set in rpt.conf. Then node ssh and Allstar linking all works properly with Putty and other nodes, respectively. Is there something else? I've been through the instructions several times (sigh!) > > Thanks, > Bob > k6ecm > 73 > > Sent from iPad > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. From k6ecm1 at gmail.com Fri Aug 4 01:10:42 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Thu, 3 Aug 2017 18:10:42 -0700 Subject: [App_rpt-users] Echolink not registering In-Reply-To: References: <5407197F-46D9-4BAC-8219-4F502C557AB6@gmail.com> <85ebd616-b7d3-b96a-b69f-14d4d5848a92@msgstor.com> Message-ID: <94D51ADA-C50B-42E0-8FEA-59074E7F50F6@gmail.com> root at WA6YBN:/# nslookup aprs.echolink.org Server: 192.168.0.1 Address: 192.168.0.1#53 Non-authoritative answer: Name: aprs.echolink.org Address: 54.161.182.37 root at WA6YBN:/# Sent from my iPhone > On Aug 3, 2017, at 2:24 PM, Jim Nessen wrote: > > Looks like the APRS echolink address is hard coded into the channel driver. Can you run nslookup on aprs.echolink.org from your node? > > ahp = ast_gethostbyname(EL_APRS_SERVER,&ah); > if (!ahp) { > ast_log(LOG_ERROR, "Unable to resolve echolink APRS server IP address\n"); > close(instp->ctrl_sock); instp->ctrl_sock = -1; > close(instp->audio_sock); instp->audio_sock = -1; > return -1; > } > > #define EL_APRS_SERVER "aprs.echolink.org" > > Jim, K6JWN > ________________________________________ > From: App_rpt-users on behalf of Bob Pyke > Sent: Thursday, August 3, 2017 1:53 PM > To: Users of Asterisk app_rpt > Subject: Re: [App_rpt-users] Echolink not registering > > Missed this before... > > > [el0] > > confmode=no > > call=WA6YBN-R > > pwd=********* > > name=WA6YBN > > qth=Ridgecrest, CA > > email=k6ecm1 at gmail.com > > maxstns=20 > > rtcptimeout=10 > > node=518309 > > recfile=/tmp/recorded.gsm > > astnode=27178 > > context=radio-secure > > lat=35.614163 > > lon=-117.684259 > > power=5 > > height=1 > > gain=3 > > dir=0 > > server1=nawest.echolink.org > > server2=nasouth.echolink.org > > server3=server1.echolink.org > > server4=server3.echolink.org > > > > #includeifexists custom/echolink.conf > > n Thu, Aug 3, 2017 at 9:55 AM, Steve Zingman > wrote: > Someone more familiar with echolink may chime in. > This looks interesting: > Unable to resolve echolink APRS server IP address > Can you post your echolink.conf? > > Steve > > > On 8/3/2017 10:51 AM, Bob Pyke wrote: > > Aug 1 20:49:20] ERROR[699] chan_echolink.c: Unable to resolve echolink APRS server IP address > > > Yes, echolink loaded in modules.conf > > Thanks, > Bob > k6ecm > 73 > > Sent from iPad > > > On Aug 3, 2017, at 6:19 AM, Steve Zingman > wrote: > > Anything in the logs you can show us? > echolink enabled in modules.conf? > > 73, Steve > > On 8/3/2017 8:55 AM, Bob Pyke wrote: > An old revived node with Echolink is not registering, and I'm wondering what I missed. Have both TCP and UDP port forwarding set, echolink.conf same as before. Also, the echolink gains are properly set in rpt.conf. Then node ssh and Allstar linking all works properly with Putty and other nodes, respectively. Is there something else? I've been through the instructions several times (sigh!) > > Thanks, > Bob > k6ecm > 73 > > Sent from iPad > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc7mrq at gmail.com Fri Aug 4 14:17:47 2017 From: kc7mrq at gmail.com (Corey) Date: Fri, 4 Aug 2017 08:17:47 -0600 Subject: [App_rpt-users] [Solved] Node 29115 is no longer in the database Message-ID: Last year I took my nodes off the air while I sold my home and find new place to live. Upon buying my new home I decided to upgrade my LAN and WIFI from a dlink based system to a Ubiquiti UNIFI based system. New subnets, VLANS, routers, switches, access points, etc. The nodes never did find their way to the stats page after the move. They registered just fine and connected to everything. I finally found the problem after poking around and it was the /etc/resolv.conf file on the node server. It's first line was pointing to my old router IP address. I changed the first two line to 8.8.8.8 & 8.8.4.4 and the nodes stats immediately showed up on the stats page. 73 Corey -------------- next part -------------- An HTML attachment was scrubbed... URL: From tom at tomh.us Fri Aug 4 15:36:58 2017 From: tom at tomh.us (Tom Hayward) Date: Fri, 4 Aug 2017 08:36:58 -0700 Subject: [App_rpt-users] Output CTCSS Follow Input? In-Reply-To: References: Message-ID: On Wed, Jun 21, 2017 at 7:39 AM, Brett Friermood wrote: > > I seem to recall discussion of a setting that transmits CTCSS only when local repeater input or linked audio is being transmitted, and does not for ID, courtesy tone, etc. I've looked through the archives but have not found anything. I may just be confusing it with features of some other controllers. > > The reason I ask is a recent discussion on the other list ended with the answer of being unable to do it since there is not any code in all of asterisk/app_rpt to handle it. Brett, I found a hint that this may have been more than a feature request at one point. Check this out: https://github.com/N4IRS/AllStar/blob/c1390b4fe726c544c9f3e8111d6d6acc31f2661c/configs/rpt.conf#L375-L376 958 = cop.58 ; Tx CTCSS On Input only Enable 959 = cop,59 ; Tx CTCSS On Input only Disable cop.58 [sic] and cop,59. Do these actually trigger relevant code or is it a dead-end? Tom KD7LXL From szingman at msgstor.com Fri Aug 4 15:57:52 2017 From: szingman at msgstor.com (Steve Zingman) Date: Fri, 4 Aug 2017 11:57:52 -0400 Subject: [App_rpt-users] Output CTCSS Follow Input? In-Reply-To: References: Message-ID: A better place to look on github is the AllStarLink repository. The N4IRS/AllStar is a leftover. The DIAL installer is at: The config files for DIAL were populated from the source. It is a attempt to capture and documentall the commands and config variables. That being said, I remember a discussion I had with Jim about Which radio interfaces and channel drivers would support it. If anything supported the function it would be chan_usbradio and the PCI card. Not simpleusb. When I get a chance, I'll look at it since Mike and I are spending some time in the channel drivers. 73, Steve N4IRS On 8/4/2017 11:36 AM, Tom Hayward wrote: > On Wed, Jun 21, 2017 at 7:39 AM, Brett Friermood > wrote: >> I seem to recall discussion of a setting that transmits CTCSS only when local repeater input or linked audio is being transmitted, and does not for ID, courtesy tone, etc. I've looked through the archives but have not found anything. I may just be confusing it with features of some other controllers. >> >> The reason I ask is a recent discussion on the other list ended with the answer of being unable to do it since there is not any code in all of asterisk/app_rpt to handle it. > Brett, > > I found a hint that this may have been more than a feature request at > one point. Check this out: > https://github.com/N4IRS/AllStar/blob/c1390b4fe726c544c9f3e8111d6d6acc31f2661c/configs/rpt.conf#L375-L376 > 958 = cop.58 ; Tx CTCSS On Input only Enable > 959 = cop,59 ; Tx CTCSS On Input only Disable > > cop.58 [sic] and cop,59. Do these actually trigger relevant code or is > it a dead-end? > > Tom KD7LXL > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. From tom at tomh.us Fri Aug 4 16:03:08 2017 From: tom at tomh.us (Tom Hayward) Date: Fri, 4 Aug 2017 09:03:08 -0700 Subject: [App_rpt-users] Output CTCSS Follow Input? In-Reply-To: References: Message-ID: On Fri, Aug 4, 2017 at 8:57 AM, Steve Zingman wrote: > A better place to look on github is the AllStarLink repository. The > N4IRS/AllStar is a leftover. The DIAL installer is at: > Steve, I am emailing faster than I am grepping. :-) I found where it sends this command to the channel driver: https://github.com/AllStarLink/Asterisk/blob/master/asterisk/apps/app_rpt.c#L19961-L19979 I will look in the channel drivers next to see if the command is ever acted on... Tom KD7LXL From Bryan at bryanfields.net Fri Aug 4 16:10:08 2017 From: Bryan at bryanfields.net (Bryan Fields) Date: Fri, 4 Aug 2017 12:10:08 -0400 Subject: [App_rpt-users] Output CTCSS Follow Input? In-Reply-To: References: Message-ID: <8a3b9a95-da8d-ce9f-fb65-865e67ecfd6e@bryanfields.net> On 8/4/17 11:57 AM, Steve Zingman wrote: > If anything > supported the function it would be chan_usbradio and the PCI card. Not > simpleusb. Could we have an easy way to do this via GPIO on simpleusb? The PCIradio has a couple GPIO pins that would be able to go high/low to disable/enable PL on transmit if the transmitter so supported it. -- Bryan Fields 727-409-1194 - Voice http://bryanfields.net From tom at tomh.us Fri Aug 4 16:12:45 2017 From: tom at tomh.us (Tom Hayward) Date: Fri, 4 Aug 2017 09:12:45 -0700 Subject: [App_rpt-users] Output CTCSS Follow Input? In-Reply-To: References: Message-ID: On Fri, Aug 4, 2017 at 9:03 AM, Tom Hayward wrote: > Steve, I am emailing faster than I am grepping. :-) > > I found where it sends this command to the channel driver: > https://github.com/AllStarLink/Asterisk/blob/master/asterisk/apps/app_rpt.c#L19961-L19979 > > I will look in the channel drivers next to see if the command is ever > acted on... Okay, this should be the last one. I found where the command is received in usbradio. I did not find any section in simpleusb that acts on this command. https://github.com/AllStarLink/Asterisk/blob/20800a2f8480cd31f236ed1dba904a128d49b595/asterisk/channels/chan_usbradio.c#L2420-L2428 You would enable this permanently by adding the following to rpt.conf: itxctcss = 1 Tom KD7LXL From tisawyer at gmail.com Sat Aug 5 03:25:39 2017 From: tisawyer at gmail.com (Tim Sawyer) Date: Fri, 4 Aug 2017 20:25:39 -0700 Subject: [App_rpt-users] Trimble GPS Date Bug Message-ID: For those of us who use Trimble GPS units be aware that a bug has cropped up with these units impacting RTCM voting/simulcast systems. RTCMs without GPS timing are not impacted. In voting and/or simulcast applications the date and time of all clients must be an exact match with the server's RTCM in order to provide seamless audio switching and launching. The Trimble bug has reverted it's date to 1997. This causes Trimble timed RTCM's to not send or receive with non-Trimble timed RTCMs. If you have an all Trimble system, no Trimbles or no GPS? you're good. Only mixed systems will experience the problem. See for more: https://www.m1dst.co.uk/2017/08/trimble-thunderbolt-week-rollover-fail/ Don?t know what the fix is yet. We?re looking for options. -- -- Tim -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6qfs at gmail.com Sat Aug 5 06:12:41 2017 From: kj6qfs at gmail.com (Sam Skolfield) Date: Fri, 4 Aug 2017 23:12:41 -0700 Subject: [App_rpt-users] Trimble GPS Date Bug In-Reply-To: References: Message-ID: Thank you Tim On Fri, Aug 4, 2017 at 8:25 PM, Tim Sawyer wrote: > For those of us who use Trimble GPS units be aware that a bug has cropped > up with these units impacting RTCM voting/simulcast systems. RTCMs without > GPS timing are not impacted. > > In voting and/or simulcast applications the date and time of all clients > must be an exact match with the server's RTCM in order to provide seamless > audio switching and launching. The Trimble bug has reverted it's date to > 1997. This causes Trimble timed RTCM's to not send or receive with > non-Trimble timed RTCMs. If you have an all Trimble system, no Trimbles or > no GPS? you're good. Only mixed systems will experience the problem. > > See for more: https://www.m1dst.co.uk/2017/08/trimble-thunderbolt- > week-rollover-fail/ > > Don?t know what the fix is yet. We?re looking for options. > > -- > -- > Tim > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- KJ6QFS Sam Skolfield -------------- next part -------------- An HTML attachment was scrubbed... URL: From zl1bhd at gmail.com Sat Aug 5 06:19:31 2017 From: zl1bhd at gmail.com (Steve Wright ZL1BHD) Date: Sat, 5 Aug 2017 18:19:31 +1200 Subject: [App_rpt-users] Opus Codec? Message-ID: <49dd9c35-a9c7-e634-cc93-628624626b2a@gmail.com> Anyone playing with Opus Codec and wide(er) channels? From k6ecm1 at gmail.com Sat Aug 5 21:37:27 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Sat, 5 Aug 2017 14:37:27 -0700 Subject: [App_rpt-users] Add a nameserver in DIAL Message-ID: How is a nameserver added to resolving.conf in DIAL? I was going to do it manually, and don't understand what the notes are telling me. # This file is managed by systemd-resolved(8). Do not edit. # # Third party programs must not access this file directly, but # only through the symlink at /etc/resolv.conf. To manage # resolv.conf(5) in a different way, replace the symlink by a # static file or a different symlink. Thanks, Bob Sent from my iPhone -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at lockwood.us.com Tue Aug 8 00:41:03 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Mon, 7 Aug 2017 19:41:03 -0500 Subject: [App_rpt-users] ctcss Encode Issues Message-ID: Hello, I am unable to get any ctcss to be encoded during transmit, except for the tone frequency that's entered in to the txctcssdetault field. If I change that tone, the new value gets transmitted. However, all of the other tones in the txctcssfreqs are being ignored. However, I do know that the rxctcssfreqs values are being decoded. If I transmit in to the repeater using a tone not listed, or without a tone, app_rpt ignores it and does not repeat and key up the transmitter. Any assistance is greatly appreciated. Thanks in advance! Here's what's in my usbradio.conf [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From nhardman1428 at gmail.com Tue Aug 8 02:34:51 2017 From: nhardman1428 at gmail.com (Nate Hardman) Date: Mon, 7 Aug 2017 22:34:51 -0400 Subject: [App_rpt-users] Block unwanted node Message-ID: Born out of need. recent problem with an Allstar node owner caused the creation of this program. the ban_nodes script runs along side of the rc.updatenodelist script and watches for updates to the rpt_extnodes-temp file and removes the offending node. if you have iptables installed and configured you may set that option to "yes" in the program itself simply use the bannodes.conf file that is created in the /etc/asterisk directory to add or remove nodes as needed. you may view / download the script at http://n8thn.net/scripts/index.html I also have my updated TTS script that works in place of the google_tts.py for the underground WX report. -- Nathan Hardman nhardman1428 at gmail.com N8THN at ARRL.NET -------------- next part -------------- An HTML attachment was scrubbed... URL: From Bryan at bryanfields.net Tue Aug 8 02:57:25 2017 From: Bryan at bryanfields.net (Bryan Fields) Date: Mon, 7 Aug 2017 22:57:25 -0400 Subject: [App_rpt-users] Block unwanted node In-Reply-To: References: Message-ID: <28204fa9-646f-a7ae-6e9b-cdb9474431b1@bryanfields.net> On 8/7/17 10:34 PM, Nate Hardman wrote: > Born out of need. > recent problem with an Allstar node owner caused the creation of this program. > the ban_nodes script runs along side of the rc.updatenodelist script and > watches for updates to the rpt_extnodes-temp file and removes the offending > node. if you have iptables installed and configured you may set that option to > "yes" in the program itself > simply use the bannodes.conf file that is created in the /etc/asterisk > directory to add or remove nodes as needed. > > you may view / download the script at http://n8thn.net/scripts/index.html > > I also have my updated TTS script that works in place of the google_tts.py for > the underground WX report. > Can't you just do like: [nodes] 40821 = nope at 127.0.0.1 and then it will try not let that node connect as it's redefined and over rides the ext-nodes file? -- Bryan Fields 727-409-1194 - Voice http://bryanfields.net From Ramesh at va3uv.com Wed Aug 9 12:03:29 2017 From: Ramesh at va3uv.com (Ramesh Dhami) Date: Wed, 9 Aug 2017 08:03:29 -0400 Subject: [App_rpt-users] USB Battery Bank that supports 'Pass Through Charging' and acts as a UPS for Allstar Nodes running on a Pi In-Reply-To: <3fa2047d-0510-68e8-0374-6f697a52c729@va3uv.com> References: <3fa2047d-0510-68e8-0374-6f697a52c729@va3uv.com> Message-ID: <41316603-dfdf-9744-427f-ce9eca022e09@va3uv.com> On 2017-07-10 11:38 AM, Ramesh Dhami wrote: > Hi Folks: > > Wonder if anyone has a lead on a USB Battery Bank that supports > pass-through charging and does NOT interrupt the output voltage when > there is loss of commercial power? > > I'd like to use a battery bank on my remote node down in FL (renowned > for electrical storms!), so keeping the Pi up during brown-outs and > loss of commercial power is a big plus. > > In case folks are interested - here is a link to a good article > providing a review of various products: > > http://www.theoutpost.org/6-techy/raspberry-pi-usb-power-bank-ups-pass-through/ > > > Unfortunately, the leading contender, the product from RS Electronics > (brings back memories of my "jollies" as an Apprentice heading up to > Alum Rock in Birmingham ;) is not available in N. America. There must > be other equivalents out there..... > > Anyone have a lead on such a product? > > Thanks! <-- An update to my own post ;) - I came across this site describing exactly what I was looking for: https://tech.scargill.net/ravpower-the-ultimate-pi-ups/ I purchased the RAVPower 16,750mAh model from Amazon. It has 2 USB ports as shown. What I can say is that the 2.4A output does suffer from momentary power loss upon loss of commercial power. HOWEVER, the 2.1A output DOES NOT .... it stays ON and thus is an ideal "UPS" for the Pi (and other USB powered devices). As Mark, G7LTT / NI2O pointed out previously, of course to be absolutely solid, you'd have to have your entire network on a UPS, etc. However, that's not my intention here. I just want to prevent the Pi from getting confused during power blips / minimize the chances of SD card corruption, etc., since this system is going to a remote location down in FL :). Oh BTW - another tip - came across this power bar (a really inexpensive alternative to the IP-9255/9258 series): https://www.amazon.com/Mengyasi-Outlets-Charging-Control-Tablets/dp/B07216SSZY/ref=pd_lpo_vtph_60_tr_t_3?_encoding=UTF8&psc=1&refRID=K1TKYBMRM3JRKX29X4AD Individual control of the AC outlets ... but the USB devices are ganged together, meaning that they are up or down - but the good thing is that you can cycle them (even if it does mean all at once). Of course, you can use a 120V / USB charger and plug it into an AC outlet for individual control too. Cheers! Ramesh, VA3UV 27919 / 29109 From michael at lockwood.us.com Wed Aug 9 15:12:07 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Wed, 9 Aug 2017 10:12:07 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: Message-ID: A follow up to my previous email: I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is decoding the incoming CTCSS (confirmed using debug), and it transmits CTCSS while someone is actively keying the repeater. However, as soon as they release PTT, app_rpt stops transmitting the corresponding CTCSS tone that was being used, and reverts to the default tone instead. So, if I key the repeater using 146.2, it broadcasts out using 146.2 and other radios hear audio just fine. But, as soon as I release PTT on the mobile/portable radio, the squelch tail is broadcast using 151.4, not 146.2. This results in the users programmed with 146.2 not hearing the courtesy tone or squelch tail. Has anyone else run in to this issue? Here's my usbradio.conf file again: [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood < michael at lockwood.us.com> wrote: > Hello, > I am unable to get any ctcss to be encoded during transmit, except for the > tone frequency that's entered in to the txctcssdetault field. If I change > that tone, the new value gets transmitted. However, all of the other tones > in the txctcssfreqs are being ignored. However, I do know that the > rxctcssfreqs values are being decoded. If I transmit in to the repeater > using a tone not listed, or without a tone, app_rpt ignores it and does not > repeat and key up the transmitter. Any assistance is greatly appreciated. > Thanks in advance! > > Here's what's in my usbradio.conf > > [usb] > > hdwtype=0 > rxboost=1 > txboost=1 > rxctcssrelax=1 > txctcssdefault=151.4 > rxctcssfreqs=146.2,141.3,151.4 > txctcssfreqs=146.2,141.3,151.4 > ;rxctcssoverride=0 > carrierfrom=usb > ctcssfrom=dsp > rxdemod=flat > txprelim=yes > txlimonly=no > txtoctype=phase > txmixa=composite > txmixb=0 > invertptt=0 > duplex=1 > rxondelay=0 > rxnoisefiltype=0 > eeprom=0 > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From szingman at msgstor.com Wed Aug 9 15:30:31 2017 From: szingman at msgstor.com (Steve Zingman) Date: Wed, 9 Aug 2017 11:30:31 -0400 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: Message-ID: <795e0fc6-5d7a-7576-5c95-0bc19496dd7b@msgstor.com> Michael, We are looking at the channel drives now. I can't say I have tried your config. I will test when I get a chance. Your configuration looks correct. I would be interested in hearing what happens when you comment out the txctcssdefault. Hopefully someone else will chime in. 73, Steve N4IRS On 8/9/2017 11:12 AM, Michael "Lee" Lockwood wrote: > A follow up to my previous email: > > I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is > decoding the incoming CTCSS (confirmed using debug), and it transmits > CTCSS while someone is actively keying the repeater. However, as soon > as they release PTT, app_rpt stops transmitting the corresponding > CTCSS tone that was being used, and reverts to the default tone instead. > > So, if I key the repeater using 146.2, it broadcasts out using 146.2 > and other radios hear audio just fine. But, as soon as I release PTT > on the mobile/portable radio, the squelch tail is broadcast using > 151.4, not 146.2. This results in the users programmed with 146.2 not > hearing the courtesy tone or squelch tail. > > Has anyone else run in to this issue? > > Here's my usbradio.conf file again: > > [usb] > > hdwtype=0 > rxboost=1 > txboost=1 > rxctcssrelax=1 > txctcssdefault=151.4 > rxctcssfreqs=146.2,141.3,151.4 > txctcssfreqs=146.2,141.3,151.4 > ;rxctcssoverride=0 > carrierfrom=usb > ctcssfrom=dsp > rxdemod=flat > txprelim=yes > txlimonly=no > txtoctype=phase > txmixa=composite > txmixb=0 > invertptt=0 > duplex=1 > rxondelay=0 > rxnoisefiltype=0 > eeprom=0 > > > On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood > > wrote: > > Hello, > I am unable to get any ctcss to be encoded during transmit, except > for the tone frequency that's entered in to the txctcssdetault > field. If I change that tone, the new value gets transmitted. > However, all of the other tones in the txctcssfreqs are being > ignored. However, I do know that the rxctcssfreqs values are > being decoded. If I transmit in to the repeater using a tone not > listed, or without a tone, app_rpt ignores it and does not repeat > and key up the transmitter. Any assistance is greatly > appreciated. Thanks in advance! > > Here's what's in my usbradio.conf > > [usb] > > hdwtype=0 > rxboost=1 > txboost=1 > rxctcssrelax=1 > txctcssdefault=151.4 > rxctcssfreqs=146.2,141.3,151.4 > txctcssfreqs=146.2,141.3,151.4 > ;rxctcssoverride=0 > carrierfrom=usb > ctcssfrom=dsp > rxdemod=flat > txprelim=yes > txlimonly=no > txtoctype=phase > txmixa=composite > txmixb=0 > invertptt=0 > duplex=1 > rxondelay=0 > rxnoisefiltype=0 > eeprom=0 > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at lockwood.us.com Wed Aug 9 15:40:48 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Wed, 9 Aug 2017 10:40:48 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: <795e0fc6-5d7a-7576-5c95-0bc19496dd7b@msgstor.com> References: <795e0fc6-5d7a-7576-5c95-0bc19496dd7b@msgstor.com> Message-ID: Thanks for the reply Steve. When I uncomment txctcssdefault, it reverts to no ctcss on the transmit side when PTT is release. On Wed, Aug 9, 2017 at 10:30 AM, Steve Zingman wrote: > Michael, > We are looking at the channel drives now. I can't say I have tried your > config. I will test when I get a chance. Your configuration looks correct. > I would be interested in hearing what happens when you comment out the > txctcssdefault. > Hopefully someone else will chime in. > > 73, Steve N4IRS > > > On 8/9/2017 11:12 AM, Michael "Lee" Lockwood wrote: > > A follow up to my previous email: > > I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is > decoding the incoming CTCSS (confirmed using debug), and it transmits CTCSS > while someone is actively keying the repeater. However, as soon as they > release PTT, app_rpt stops transmitting the corresponding CTCSS tone that > was being used, and reverts to the default tone instead. > > So, if I key the repeater using 146.2, it broadcasts out using 146.2 and > other radios hear audio just fine. But, as soon as I release PTT on the > mobile/portable radio, the squelch tail is broadcast using 151.4, not > 146.2. This results in the users programmed with 146.2 not hearing the > courtesy tone or squelch tail. > > Has anyone else run in to this issue? > > Here's my usbradio.conf file again: > > [usb] > > hdwtype=0 > rxboost=1 > txboost=1 > rxctcssrelax=1 > txctcssdefault=151.4 > rxctcssfreqs=146.2,141.3,151.4 > txctcssfreqs=146.2,141.3,151.4 > ;rxctcssoverride=0 > carrierfrom=usb > ctcssfrom=dsp > rxdemod=flat > txprelim=yes > txlimonly=no > txtoctype=phase > txmixa=composite > txmixb=0 > invertptt=0 > duplex=1 > rxondelay=0 > rxnoisefiltype=0 > eeprom=0 > > > > On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood < > michael at lockwood.us.com> wrote: > >> Hello, >> I am unable to get any ctcss to be encoded during transmit, except for >> the tone frequency that's entered in to the txctcssdetault field. If I >> change that tone, the new value gets transmitted. However, all of the >> other tones in the txctcssfreqs are being ignored. However, I do know that >> the rxctcssfreqs values are being decoded. If I transmit in to the >> repeater using a tone not listed, or without a tone, app_rpt ignores it and >> does not repeat and key up the transmitter. Any assistance is greatly >> appreciated. Thanks in advance! >> >> Here's what's in my usbradio.conf >> >> [usb] >> >> hdwtype=0 >> rxboost=1 >> txboost=1 >> rxctcssrelax=1 >> txctcssdefault=151.4 >> rxctcssfreqs=146.2,141.3,151.4 >> txctcssfreqs=146.2,141.3,151.4 >> ;rxctcssoverride=0 >> carrierfrom=usb >> ctcssfrom=dsp >> rxdemod=flat >> txprelim=yes >> txlimonly=no >> txtoctype=phase >> txmixa=composite >> txmixb=0 >> invertptt=0 >> duplex=1 >> rxondelay=0 >> rxnoisefiltype=0 >> eeprom=0 >> >> >> -- >> >> *Michael "Lee" Lockwood* >> michael at lockwood.us.com >> > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > > _______________________________________________ > App_rpt-users mailing listApp_rpt-users at lists.allstarlink.orghttp://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From kizzy at lusfiber.net Wed Aug 9 15:47:19 2017 From: kizzy at lusfiber.net (Steve Mahler) Date: Wed, 9 Aug 2017 10:47:19 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: <795e0fc6-5d7a-7576-5c95-0bc19496dd7b@msgstor.com> Message-ID: <0842d43c-822e-ee5c-8d4a-2012df514bb6@lusfiber.net> Michael: Just to make sure its out there ... the DSP software doesn't decode some standard PL tones. It will generate anything to the TX. If you haven't run this down yet ... I remember seeing a list of PL tones but I can't find it now. I use the method you are trying to use and it works without any problems. ...STeve - KF5VH On 8/9/2017 10:40 AM, Michael "Lee" Lockwood wrote: > Thanks for the reply Steve. When I uncomment txctcssdefault, it > reverts to no ctcss on the transmit side when PTT is release. > > On Wed, Aug 9, 2017 at 10:30 AM, Steve Zingman > wrote: > > Michael, > We are looking at the channel drives now. I can't say I have tried > your config. I will test when I get a chance. Your configuration > looks correct. I would be interested in hearing what happens when > you comment out the txctcssdefault. > Hopefully someone else will chime in. > > 73, Steve N4IRS > > > On 8/9/2017 11:12 AM, Michael "Lee" Lockwood wrote: >> A follow up to my previous email: >> >> I have multiple ctcss tone frequencies in usbradio.conf. app_rpt >> is decoding the incoming CTCSS (confirmed using debug), and it >> transmits CTCSS while someone is actively keying the repeater. >> However, as soon as they release PTT, app_rpt stops transmitting >> the corresponding CTCSS tone that was being used, and reverts to >> the default tone instead. >> >> So, if I key the repeater using 146.2, it broadcasts out using >> 146.2 and other radios hear audio just fine. But, as soon as I >> release PTT on the mobile/portable radio, the squelch tail is >> broadcast using 151.4, not 146.2. This results in the users >> programmed with 146.2 not hearing the courtesy tone or squelch tail. >> >> Has anyone else run in to this issue? >> >> Here's my usbradio.conf file again: >> >> [usb] >> >> hdwtype=0 >> rxboost=1 >> txboost=1 >> rxctcssrelax=1 >> txctcssdefault=151.4 >> rxctcssfreqs=146.2,141.3,151.4 >> txctcssfreqs=146.2,141.3,151.4 >> ;rxctcssoverride=0 >> carrierfrom=usb >> ctcssfrom=dsp >> rxdemod=flat >> txprelim=yes >> txlimonly=no >> txtoctype=phase >> txmixa=composite >> txmixb=0 >> invertptt=0 >> duplex=1 >> rxondelay=0 >> rxnoisefiltype=0 >> eeprom=0 >> >> >> On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood >> > wrote: >> >> Hello, >> I am unable to get any ctcss to be encoded during transmit, >> except for the tone frequency that's entered in to the >> txctcssdetault field. If I change that tone, the new value >> gets transmitted. However, all of the other tones in the >> txctcssfreqs are being ignored. However, I do know that the >> rxctcssfreqs values are being decoded. If I transmit in to >> the repeater using a tone not listed, or without a tone, >> app_rpt ignores it and does not repeat and key up the >> transmitter. Any assistance is greatly appreciated. Thanks >> in advance! >> >> Here's what's in my usbradio.conf >> >> [usb] >> >> hdwtype=0 >> rxboost=1 >> txboost=1 >> rxctcssrelax=1 >> txctcssdefault=151.4 >> rxctcssfreqs=146.2,141.3,151.4 >> txctcssfreqs=146.2,141.3,151.4 >> ;rxctcssoverride=0 >> carrierfrom=usb >> ctcssfrom=dsp >> rxdemod=flat >> txprelim=yes >> txlimonly=no >> txtoctype=phase >> txmixa=composite >> txmixb=0 >> invertptt=0 >> duplex=1 >> rxondelay=0 >> rxnoisefiltype=0 >> eeprom=0 >> >> >> -- >> >> *Michael "Lee" Lockwood* >> michael at lockwood.us.com >> >> >> >> >> -- >> >> *Michael "Lee" Lockwood* >> michael at lockwood.us.com >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> >> To unsubscribe from this list please visithttp://lists.allstarlink.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. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > > To unsubscribe from this list please visit > http://lists.allstarlink.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. > > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > > Virus-free. www.avg.com > > > > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From k8it at cac.net Wed Aug 9 16:01:00 2017 From: k8it at cac.net (Neil k8it) Date: Wed, 9 Aug 2017 12:01:00 -0400 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: Message-ID: for how long after a giben ctcss tone is reciebed do you want to use the same ctcss tx tone when would it reset to the 151.4 tone Thanks 73 Neil Sablatzky K8IT Allstar Node 41838 KITLINK Allstar Node 42087 KITLINK HUB IRLP Node exp0068 Echolink K8IT-L WIRES-X K8IT 11479 Room 21479 From: Michael "Lee" Lockwood Sent: Wednesday, August 09, 2017 11:12 AM To: app_rpt-users at lists.allstarlink.org Subject: Re: [App_rpt-users] ctcss Encode Issues A follow up to my previous email: I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is decoding the incoming CTCSS (confirmed using debug), and it transmits CTCSS while someone is actively keying the repeater. However, as soon as they release PTT, app_rpt stops transmitting the corresponding CTCSS tone that was being used, and reverts to the default tone instead. So, if I key the repeater using 146.2, it broadcasts out using 146.2 and other radios hear audio just fine. But, as soon as I release PTT on the mobile/portable radio, the squelch tail is broadcast using 151.4, not 146.2. This results in the users programmed with 146.2 not hearing the courtesy tone or squelch tail. Has anyone else run in to this issue? Here's my usbradio.conf file again: [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood wrote: Hello, I am unable to get any ctcss to be encoded during transmit, except for the tone frequency that's entered in to the txctcssdetault field. If I change that tone, the new value gets transmitted. However, all of the other tones in the txctcssfreqs are being ignored. However, I do know that the rxctcssfreqs values are being decoded. If I transmit in to the repeater using a tone not listed, or without a tone, app_rpt ignores it and does not repeat and key up the transmitter. Any assistance is greatly appreciated. Thanks in advance! Here's what's in my usbradio.conf [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 -- Michael "Lee" Lockwood michael at lockwood.us.com -- Michael "Lee" Lockwood michael at lockwood.us.com -------------------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at lockwood.us.com Wed Aug 9 16:15:56 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Wed, 9 Aug 2017 11:15:56 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: Message-ID: Steve Mahler: The RX ctcss tones I'm using are being decoded by the dsp. I get verification of that when running debug in app_rpt. Neil: I'd like to have the same ctcss tone transmitted for the "repeater tail" and courtesy tone the same amount of time it's set in the rpt.conf file. I think I have mine set to 1.5 seconds. On Wed, Aug 9, 2017 at 11:01 AM, Neil k8it wrote: > for how long after a giben ctcss tone is reciebed do you want to use the > same ctcss tx tone > when would it reset to the 151.4 tone > Thanks > 73 Neil Sablatzky K8IT > Allstar Node 41838 KITLINK > Allstar Node 42087 KITLINK HUB > IRLP Node exp0068 > Echolink K8IT-L > WIRES-X K8IT 11479 Room 21479 > > *From:* Michael "Lee" Lockwood > *Sent:* Wednesday, August 09, 2017 11:12 AM > *To:* app_rpt-users at lists.allstarlink.org > *Subject:* Re: [App_rpt-users] ctcss Encode Issues > > A follow up to my previous email: > > I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is > decoding the incoming CTCSS (confirmed using debug), and it transmits CTCSS > while someone is actively keying the repeater. However, as soon as they > release PTT, app_rpt stops transmitting the corresponding CTCSS tone that > was being used, and reverts to the default tone instead. > > So, if I key the repeater using 146.2, it broadcasts out using 146.2 and > other radios hear audio just fine. But, as soon as I release PTT on the > mobile/portable radio, the squelch tail is broadcast using 151.4, not > 146.2. This results in the users programmed with 146.2 not hearing the > courtesy tone or squelch tail. > > Has anyone else run in to this issue? > > Here's my usbradio.conf file again: > > [usb] > > hdwtype=0 > rxboost=1 > txboost=1 > rxctcssrelax=1 > txctcssdefault=151.4 > rxctcssfreqs=146.2,141.3,151.4 > txctcssfreqs=146.2,141.3,151.4 > ;rxctcssoverride=0 > carrierfrom=usb > ctcssfrom=dsp > rxdemod=flat > txprelim=yes > txlimonly=no > txtoctype=phase > txmixa=composite > txmixb=0 > invertptt=0 > duplex=1 > rxondelay=0 > rxnoisefiltype=0 > eeprom=0 > > > > On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood < > michael at lockwood.us.com> wrote: > >> Hello, >> I am unable to get any ctcss to be encoded during transmit, except for >> the tone frequency that's entered in to the txctcssdetault field. If I >> change that tone, the new value gets transmitted. However, all of the >> other tones in the txctcssfreqs are being ignored. However, I do know that >> the rxctcssfreqs values are being decoded. If I transmit in to the >> repeater using a tone not listed, or without a tone, app_rpt ignores it and >> does not repeat and key up the transmitter. Any assistance is greatly >> appreciated. Thanks in advance! >> >> Here's what's in my usbradio.conf >> >> [usb] >> >> hdwtype=0 >> rxboost=1 >> txboost=1 >> rxctcssrelax=1 >> txctcssdefault=151.4 >> rxctcssfreqs=146.2,141.3,151.4 >> txctcssfreqs=146.2,141.3,151.4 >> ;rxctcssoverride=0 >> carrierfrom=usb >> ctcssfrom=dsp >> rxdemod=flat >> txprelim=yes >> txlimonly=no >> txtoctype=phase >> txmixa=composite >> txmixb=0 >> invertptt=0 >> duplex=1 >> rxondelay=0 >> rxnoisefiltype=0 >> eeprom=0 >> >> >> -- >> >> *Michael "Lee" Lockwood* >> michael at lockwood.us.com >> > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > ------------------------------ > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From kizzy at lusfiber.net Wed Aug 9 16:21:46 2017 From: kizzy at lusfiber.net (Steve Mahler) Date: Wed, 9 Aug 2017 11:21:46 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: Message-ID: <4f30bf96-8639-5617-ba0b-30ecb5746760@lusfiber.net> Neil: Understood. As long as you are thinking about a code change ... should the PL tone be held thru the tailmessage system too? ...STeve On 8/9/2017 11:15 AM, Michael "Lee" Lockwood wrote: > Steve Mahler: The RX ctcss tones I'm using are being decoded by the > dsp. I get verification of that when running debug in app_rpt. > > Neil: I'd like to have the same ctcss tone transmitted for the > "repeater tail" and courtesy tone the same amount of time it's set in > the rpt.conf file. I think I have mine set to 1.5 seconds. > > On Wed, Aug 9, 2017 at 11:01 AM, Neil k8it > wrote: > > for how long after a giben ctcss tone is reciebed do you want to > use the same ctcss tx tone > when would it reset to the 151.4 tone > Thanks > 73 Neil Sablatzky K8IT > Allstar Node 41838 KITLINK > Allstar Node 42087 KITLINK HUB > IRLP Node exp0068 > Echolink K8IT-L > WIRES-X K8IT 11479 Room 21479 > > *From:* Michael "Lee" Lockwood > *Sent:* Wednesday, August 09, 2017 11:12 AM > *To:* app_rpt-users at lists.allstarlink.org > > *Subject:* Re: [App_rpt-users] ctcss Encode Issues > > A follow up to my previous email: > > I have multiple ctcss tone frequencies in usbradio.conf. app_rpt > is decoding the incoming CTCSS (confirmed using debug), and it > transmits CTCSS while someone is actively keying the repeater. > However, as soon as they release PTT, app_rpt stops transmitting > the corresponding CTCSS tone that was being used, and reverts to > the default tone instead. > > So, if I key the repeater using 146.2, it broadcasts out using > 146.2 and other radios hear audio just fine. But, as soon as I > release PTT on the mobile/portable radio, the squelch tail is > broadcast using 151.4, not 146.2. This results in the users > programmed with 146.2 not hearing the courtesy tone or squelch tail. > > Has anyone else run in to this issue? > > Here's my usbradio.conf file again: > > [usb] > > hdwtype=0 > rxboost=1 > txboost=1 > rxctcssrelax=1 > txctcssdefault=151.4 > rxctcssfreqs=146.2,141.3,151.4 > txctcssfreqs=146.2,141.3,151.4 > ;rxctcssoverride=0 > carrierfrom=usb > ctcssfrom=dsp > rxdemod=flat > txprelim=yes > txlimonly=no > txtoctype=phase > txmixa=composite > txmixb=0 > invertptt=0 > duplex=1 > rxondelay=0 > rxnoisefiltype=0 > eeprom=0 > > > > On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood > > wrote: > > Hello, > I am unable to get any ctcss to be encoded during transmit, > except for the tone frequency that's entered in to the > txctcssdetault field. If I change that tone, the new value > gets transmitted. However, all of the other tones in the > txctcssfreqs are being ignored. However, I do know that the > rxctcssfreqs values are being decoded. If I transmit in to > the repeater using a tone not listed, or without a tone, > app_rpt ignores it and does not repeat and key up the > transmitter. Any assistance is greatly appreciated. Thanks > in advance! > > Here's what's in my usbradio.conf > > [usb] > > hdwtype=0 > rxboost=1 > txboost=1 > rxctcssrelax=1 > txctcssdefault=151.4 > rxctcssfreqs=146.2,141.3,151.4 > txctcssfreqs=146.2,141.3,151.4 > ;rxctcssoverride=0 > carrierfrom=usb > ctcssfrom=dsp > rxdemod=flat > txprelim=yes > txlimonly=no > txtoctype=phase > txmixa=composite > txmixb=0 > invertptt=0 > duplex=1 > rxondelay=0 > rxnoisefiltype=0 > eeprom=0 > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > ------------------------------------------------------------------------ > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > > To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > > To unsubscribe from this list please visit > http://lists.allstarlink.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. > > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > > Virus-free. www.avg.com > > > > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From k8it at cac.net Wed Aug 9 16:27:54 2017 From: k8it at cac.net (Neil k8it) Date: Wed, 9 Aug 2017 12:27:54 -0400 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: <795e0fc6-5d7a-7576-5c95-0bc19496dd7b@msgstor.com> Message-ID: if the default tone could be set to last then the the tx tone would always be the last heard but I am not sure that?s what you want Thanks 73 Neil Sablatzky K8IT Allstar Node 41838 KITLINK Allstar Node 42087 KITLINK HUB IRLP Node exp0068 Echolink K8IT-L WIRES-X K8IT 11479 Room 21479 From: Michael "Lee" Lockwood Sent: Wednesday, August 09, 2017 11:40 AM To: Users of Asterisk app_rpt Subject: Re: [App_rpt-users] ctcss Encode Issues Thanks for the reply Steve. When I uncomment txctcssdefault, it reverts to no ctcss on the transmit side when PTT is release. On Wed, Aug 9, 2017 at 10:30 AM, Steve Zingman wrote: Michael, We are looking at the channel drives now. I can't say I have tried your config. I will test when I get a chance. Your configuration looks correct. I would be interested in hearing what happens when you comment out the txctcssdefault. Hopefully someone else will chime in. 73, Steve N4IRS On 8/9/2017 11:12 AM, Michael "Lee" Lockwood wrote: A follow up to my previous email: I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is decoding the incoming CTCSS (confirmed using debug), and it transmits CTCSS while someone is actively keying the repeater. However, as soon as they release PTT, app_rpt stops transmitting the corresponding CTCSS tone that was being used, and reverts to the default tone instead. So, if I key the repeater using 146.2, it broadcasts out using 146.2 and other radios hear audio just fine. But, as soon as I release PTT on the mobile/portable radio, the squelch tail is broadcast using 151.4, not 146.2. This results in the users programmed with 146.2 not hearing the courtesy tone or squelch tail. Has anyone else run in to this issue? Here's my usbradio.conf file again: [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood wrote: Hello, I am unable to get any ctcss to be encoded during transmit, except for the tone frequency that's entered in to the txctcssdetault field. If I change that tone, the new value gets transmitted. However, all of the other tones in the txctcssfreqs are being ignored. However, I do know that the rxctcssfreqs values are being decoded. If I transmit in to the repeater using a tone not listed, or without a tone, app_rpt ignores it and does not repeat and key up the transmitter. Any assistance is greatly appreciated. Thanks in advance! Here's what's in my usbradio.conf [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 -- Michael "Lee" Lockwood michael at lockwood.us.com -- Michael "Lee" Lockwood michael at lockwood.us.com _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -- Michael "Lee" Lockwood michael at lockwood.us.com -------------------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tom at tomh.us Wed Aug 9 16:28:51 2017 From: tom at tomh.us (Tom Hayward) Date: Wed, 9 Aug 2017 09:28:51 -0700 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: Message-ID: On Wed, Aug 9, 2017 at 8:12 AM, Michael "Lee" Lockwood wrote: > So, if I key the repeater using 146.2, it broadcasts out using 146.2 and > other radios hear audio just fine. But, as soon as I release PTT on the > mobile/portable radio, the squelch tail is broadcast using 151.4, not 146.2. > This results in the users programmed with 146.2 not hearing the courtesy > tone or squelch tail. Just for comparison... Around here, this behavior is considered the "proper" way to build a repeater. Tone is not encoded during the courtesy tone or tail so that these are muted at the receiver. Many people don't like listening to the courtesy tone or squelch crash, especially when scanning. It is also essential if the repeater output is being used as the input for an RF link, because you don't want courtesy tones going over the link--the would result in multiple courtesy tones on the remote repeater. If I was listening to your repeater, I would prefer no tone on the courtesy tone and tail, so that my scanner would not hang on dead air. There have been some other threads about this lately. We found that the itxctcss parameter in rpt.conf controls this behavior (although community repeater mode may override it). Check that itxctcss = 0 for the behavior you want. Tom KD7LXL From michael at lockwood.us.com Wed Aug 9 16:43:51 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Wed, 9 Aug 2017 11:43:51 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: <795e0fc6-5d7a-7576-5c95-0bc19496dd7b@msgstor.com> Message-ID: Neil: When you say "default tone set to last", I'm not sure where/what you're referring to. I have the 151.4 (default tone) as the last entry in rxtctcssfreqs= and txctcssfreqs= in usbradio.conf already. Is that what you're referring to? On Wed, Aug 9, 2017 at 11:27 AM, Neil k8it wrote: > if the default tone could be set to last > then the the tx tone would always be the last heard > but I am not sure that?s what you want > > Thanks > 73 Neil Sablatzky K8IT > Allstar Node 41838 KITLINK > Allstar Node 42087 KITLINK HUB > IRLP Node exp0068 > Echolink K8IT-L > WIRES-X K8IT 11479 Room 21479 > > *From:* Michael "Lee" Lockwood > *Sent:* Wednesday, August 09, 2017 11:40 AM > *To:* Users of Asterisk app_rpt > *Subject:* Re: [App_rpt-users] ctcss Encode Issues > > Thanks for the reply Steve. When I uncomment txctcssdefault, it reverts > to no ctcss on the transmit side when PTT is release. > > On Wed, Aug 9, 2017 at 10:30 AM, Steve Zingman > wrote: > >> Michael, >> We are looking at the channel drives now. I can't say I have tried your >> config. I will test when I get a chance. Your configuration looks correct. >> I would be interested in hearing what happens when you comment out the >> txctcssdefault. >> Hopefully someone else will chime in. >> >> 73, Steve N4IRS >> >> >> On 8/9/2017 11:12 AM, Michael "Lee" Lockwood wrote: >> >> A follow up to my previous email: >> >> I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is >> decoding the incoming CTCSS (confirmed using debug), and it transmits CTCSS >> while someone is actively keying the repeater. However, as soon as they >> release PTT, app_rpt stops transmitting the corresponding CTCSS tone that >> was being used, and reverts to the default tone instead. >> >> So, if I key the repeater using 146.2, it broadcasts out using 146.2 and >> other radios hear audio just fine. But, as soon as I release PTT on the >> mobile/portable radio, the squelch tail is broadcast using 151.4, not >> 146.2. This results in the users programmed with 146.2 not hearing the >> courtesy tone or squelch tail. >> >> Has anyone else run in to this issue? >> >> Here's my usbradio.conf file again: >> >> [usb] >> >> hdwtype=0 >> rxboost=1 >> txboost=1 >> rxctcssrelax=1 >> txctcssdefault=151.4 >> rxctcssfreqs=146.2,141.3,151.4 >> txctcssfreqs=146.2,141.3,151.4 >> ;rxctcssoverride=0 >> carrierfrom=usb >> ctcssfrom=dsp >> rxdemod=flat >> txprelim=yes >> txlimonly=no >> txtoctype=phase >> txmixa=composite >> txmixb=0 >> invertptt=0 >> duplex=1 >> rxondelay=0 >> rxnoisefiltype=0 >> eeprom=0 >> >> >> >> On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood < >> michael at lockwood.us.com> wrote: >> >>> Hello, >>> I am unable to get any ctcss to be encoded during transmit, except for >>> the tone frequency that's entered in to the txctcssdetault field. If I >>> change that tone, the new value gets transmitted. However, all of the >>> other tones in the txctcssfreqs are being ignored. However, I do know that >>> the rxctcssfreqs values are being decoded. If I transmit in to the >>> repeater using a tone not listed, or without a tone, app_rpt ignores it and >>> does not repeat and key up the transmitter. Any assistance is greatly >>> appreciated. Thanks in advance! >>> >>> Here's what's in my usbradio.conf >>> >>> [usb] >>> >>> hdwtype=0 >>> rxboost=1 >>> txboost=1 >>> rxctcssrelax=1 >>> txctcssdefault=151.4 >>> rxctcssfreqs=146.2,141.3,151.4 >>> txctcssfreqs=146.2,141.3,151.4 >>> ;rxctcssoverride=0 >>> carrierfrom=usb >>> ctcssfrom=dsp >>> rxdemod=flat >>> txprelim=yes >>> txlimonly=no >>> txtoctype=phase >>> txmixa=composite >>> txmixb=0 >>> invertptt=0 >>> duplex=1 >>> rxondelay=0 >>> rxnoisefiltype=0 >>> eeprom=0 >>> >>> >>> -- >>> >>> *Michael "Lee" Lockwood* >>> michael at lockwood.us.com >>> >> >> >> >> -- >> >> *Michael "Lee" Lockwood* >> michael at lockwood.us.com >> >> >> _______________________________________________ >> App_rpt-users mailing listApp_rpt-users at lists.allstarlink.orghttp://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.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. >> >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.org/c >> gi-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. >> > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > ------------------------------ > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at lockwood.us.com Wed Aug 9 16:46:28 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Wed, 9 Aug 2017 11:46:28 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: Message-ID: Tom, I do not have the itxctcss = line anywhere in my rpt.conf file. Where in the file should I add it? On Wed, Aug 9, 2017 at 11:28 AM, Tom Hayward wrote: > On Wed, Aug 9, 2017 at 8:12 AM, Michael "Lee" Lockwood > wrote: > > So, if I key the repeater using 146.2, it broadcasts out using 146.2 and > > other radios hear audio just fine. But, as soon as I release PTT on the > > mobile/portable radio, the squelch tail is broadcast using 151.4, not > 146.2. > > This results in the users programmed with 146.2 not hearing the courtesy > > tone or squelch tail. > > Just for comparison... Around here, this behavior is considered the > "proper" way to build a repeater. Tone is not encoded during the > courtesy tone or tail so that these are muted at the receiver. Many > people don't like listening to the courtesy tone or squelch crash, > especially when scanning. It is also essential if the repeater output > is being used as the input for an RF link, because you don't want > courtesy tones going over the link--the would result in multiple > courtesy tones on the remote repeater. > > If I was listening to your repeater, I would prefer no tone on the > courtesy tone and tail, so that my scanner would not hang on dead air. > > There have been some other threads about this lately. We found that > the itxctcss parameter in rpt.conf controls this behavior (although > community repeater mode may override it). Check that itxctcss = 0 for > the behavior you want. > > Tom KD7LXL > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From k8it at cac.net Wed Aug 9 16:57:50 2017 From: k8it at cac.net (Neil k8it) Date: Wed, 9 Aug 2017 12:57:50 -0400 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: <795e0fc6-5d7a-7576-5c95-0bc19496dd7b@msgstor.com> Message-ID: <3B4119E32BD1485D8090F63575E9C9B5@NSLAPTOP> if the parameter last could be added to the source code Thanks 73 Neil Sablatzky K8IT Allstar Node 41838 KITLINK Allstar Node 42087 KITLINK HUB IRLP Node exp0068 Echolink K8IT-L WIRES-X K8IT 11479 Room 21479 From: Michael "Lee" Lockwood Sent: Wednesday, August 09, 2017 12:43 PM To: Users of Asterisk app_rpt Subject: Re: [App_rpt-users] ctcss Encode Issues Neil: When you say "default tone set to last", I'm not sure where/what you're referring to. I have the 151.4 (default tone) as the last entry in rxtctcssfreqs= and txctcssfreqs= in usbradio.conf already. Is that what you're referring to? On Wed, Aug 9, 2017 at 11:27 AM, Neil k8it wrote: if the default tone could be set to last then the the tx tone would always be the last heard but I am not sure that?s what you want Thanks 73 Neil Sablatzky K8IT Allstar Node 41838 KITLINK Allstar Node 42087 KITLINK HUB IRLP Node exp0068 Echolink K8IT-L WIRES-X K8IT 11479 Room 21479 From: Michael "Lee" Lockwood Sent: Wednesday, August 09, 2017 11:40 AM To: Users of Asterisk app_rpt Subject: Re: [App_rpt-users] ctcss Encode Issues Thanks for the reply Steve. When I uncomment txctcssdefault, it reverts to no ctcss on the transmit side when PTT is release. On Wed, Aug 9, 2017 at 10:30 AM, Steve Zingman wrote: Michael, We are looking at the channel drives now. I can't say I have tried your config. I will test when I get a chance. Your configuration looks correct. I would be interested in hearing what happens when you comment out the txctcssdefault. Hopefully someone else will chime in. 73, Steve N4IRS On 8/9/2017 11:12 AM, Michael "Lee" Lockwood wrote: A follow up to my previous email: I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is decoding the incoming CTCSS (confirmed using debug), and it transmits CTCSS while someone is actively keying the repeater. However, as soon as they release PTT, app_rpt stops transmitting the corresponding CTCSS tone that was being used, and reverts to the default tone instead. So, if I key the repeater using 146.2, it broadcasts out using 146.2 and other radios hear audio just fine. But, as soon as I release PTT on the mobile/portable radio, the squelch tail is broadcast using 151.4, not 146.2. This results in the users programmed with 146.2 not hearing the courtesy tone or squelch tail. Has anyone else run in to this issue? Here's my usbradio.conf file again: [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood wrote: Hello, I am unable to get any ctcss to be encoded during transmit, except for the tone frequency that's entered in to the txctcssdetault field. If I change that tone, the new value gets transmitted. However, all of the other tones in the txctcssfreqs are being ignored. However, I do know that the rxctcssfreqs values are being decoded. If I transmit in to the repeater using a tone not listed, or without a tone, app_rpt ignores it and does not repeat and key up the transmitter. Any assistance is greatly appreciated. Thanks in advance! Here's what's in my usbradio.conf [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 -- Michael "Lee" Lockwood michael at lockwood.us.com -- Michael "Lee" Lockwood michael at lockwood.us.com _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -- Michael "Lee" Lockwood michael at lockwood.us.com ------------------------------------------------------------------------------ _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -- Michael "Lee" Lockwood michael at lockwood.us.com -------------------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From k8it at cac.net Wed Aug 9 17:01:22 2017 From: k8it at cac.net (Neil k8it) Date: Wed, 9 Aug 2017 13:01:22 -0400 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: <4f30bf96-8639-5617-ba0b-30ecb5746760@lusfiber.net> References: <4f30bf96-8639-5617-ba0b-30ecb5746760@lusfiber.net> Message-ID: that could be a option, configurable Thanks 73 Neil Sablatzky K8IT Allstar Node 41838 KITLINK Allstar Node 42087 KITLINK HUB IRLP Node exp0068 Echolink K8IT-L WIRES-X K8IT 11479 Room 21479 From: Steve Mahler Sent: Wednesday, August 09, 2017 12:21 PM To: app_rpt-users at lists.allstarlink.org Subject: Re: [App_rpt-users] ctcss Encode Issues Neil: Understood. As long as you are thinking about a code change ... should the PL tone be held thru the tailmessage system too? ...STeve On 8/9/2017 11:15 AM, Michael "Lee" Lockwood wrote: Steve Mahler: The RX ctcss tones I'm using are being decoded by the dsp. I get verification of that when running debug in app_rpt. Neil: I'd like to have the same ctcss tone transmitted for the "repeater tail" and courtesy tone the same amount of time it's set in the rpt.conf file. I think I have mine set to 1.5 seconds. On Wed, Aug 9, 2017 at 11:01 AM, Neil k8it wrote: for how long after a giben ctcss tone is reciebed do you want to use the same ctcss tx tone when would it reset to the 151.4 tone Thanks 73 Neil Sablatzky K8IT Allstar Node 41838 KITLINK Allstar Node 42087 KITLINK HUB IRLP Node exp0068 Echolink K8IT-L WIRES-X K8IT 11479 Room 21479 From: Michael "Lee" Lockwood Sent: Wednesday, August 09, 2017 11:12 AM To: app_rpt-users at lists.allstarlink.org Subject: Re: [App_rpt-users] ctcss Encode Issues A follow up to my previous email: I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is decoding the incoming CTCSS (confirmed using debug), and it transmits CTCSS while someone is actively keying the repeater. However, as soon as they release PTT, app_rpt stops transmitting the corresponding CTCSS tone that was being used, and reverts to the default tone instead. So, if I key the repeater using 146.2, it broadcasts out using 146.2 and other radios hear audio just fine. But, as soon as I release PTT on the mobile/portable radio, the squelch tail is broadcast using 151.4, not 146.2. This results in the users programmed with 146.2 not hearing the courtesy tone or squelch tail. Has anyone else run in to this issue? Here's my usbradio.conf file again: [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood wrote: Hello, I am unable to get any ctcss to be encoded during transmit, except for the tone frequency that's entered in to the txctcssdetault field. If I change that tone, the new value gets transmitted. However, all of the other tones in the txctcssfreqs are being ignored. However, I do know that the rxctcssfreqs values are being decoded. If I transmit in to the repeater using a tone not listed, or without a tone, app_rpt ignores it and does not repeat and key up the transmitter. Any assistance is greatly appreciated. Thanks in advance! Here's what's in my usbradio.conf [usb] hdwtype=0 rxboost=1 txboost=1 rxctcssrelax=1 txctcssdefault=151.4 rxctcssfreqs=146.2,141.3,151.4 txctcssfreqs=146.2,141.3,151.4 ;rxctcssoverride=0 carrierfrom=usb ctcssfrom=dsp rxdemod=flat txprelim=yes txlimonly=no txtoctype=phase txmixa=composite txmixb=0 invertptt=0 duplex=1 rxondelay=0 rxnoisefiltype=0 eeprom=0 -- Michael "Lee" Lockwood michael at lockwood.us.com -- Michael "Lee" Lockwood michael at lockwood.us.com ---------------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -- Michael "Lee" Lockwood michael at lockwood.us.com Virus-free. www.avg.com _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -------------------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tom at tomh.us Wed Aug 9 17:13:55 2017 From: tom at tomh.us (Tom Hayward) Date: Wed, 9 Aug 2017 10:13:55 -0700 Subject: [App_rpt-users] USB Battery Bank that supports 'Pass Through Charging' and acts as a UPS for Allstar Nodes running on a Pi In-Reply-To: <41316603-dfdf-9744-427f-ce9eca022e09@va3uv.com> References: <3fa2047d-0510-68e8-0374-6f697a52c729@va3uv.com> <41316603-dfdf-9744-427f-ce9eca022e09@va3uv.com> Message-ID: On Wed, Aug 9, 2017 at 5:03 AM, Ramesh Dhami wrote: > I just want to prevent the Pi from getting confused > during power blips / minimize the chances of SD card corruption, etc., since > this system is going to a remote location down in FL :). Have you considered a device designed for this purpose, like this? http://www.pimodulescart.com/shop/item.aspx?itemid=30 A number of locals here have repeater controllers running these and recommend them for that purpose. Tom KD7LXL From nhardman1428 at gmail.com Wed Aug 9 20:52:04 2017 From: nhardman1428 at gmail.com (Nate Hardman) Date: Wed, 9 Aug 2017 16:52:04 -0400 Subject: [App_rpt-users] Block unwanted node In-Reply-To: <28204fa9-646f-a7ae-6e9b-cdb9474431b1@bryanfields.net> References: <28204fa9-646f-a7ae-6e9b-cdb9474431b1@bryanfields.net> Message-ID: that hasn't worked well and also requires a "rpt reload" each time. this allows (on the fly) ban/unban each time rc.updatenodelist updates the rpt_extnodes-temp file they are removed or unbanned (not removed) I also just built a php page to edit the ban list via web page and will be posting that along with the script and the directions for proper use. On Mon, Aug 7, 2017 at 10:57 PM, Bryan Fields wrote: > On 8/7/17 10:34 PM, Nate Hardman wrote: > > Born out of need. > > recent problem with an Allstar node owner caused the creation of this > program. > > the ban_nodes script runs along side of the rc.updatenodelist script and > > watches for updates to the rpt_extnodes-temp file and removes the > offending > > node. if you have iptables installed and configured you may set that > option to > > "yes" in the program itself > > simply use the bannodes.conf file that is created in the /etc/asterisk > > directory to add or remove nodes as needed. > > > > you may view / download the script at http://n8thn.net/scripts/ > index.html > > > > I also have my updated TTS script that works in place of the > google_tts.py for > > the underground WX report. > > > > Can't you just do like: > > [nodes] > > 40821 = nope at 127.0.0.1 > > and then it will try not let that node connect as it's redefined and over > rides the ext-nodes file? > > > -- > Bryan Fields > > 727-409-1194 - Voice > http://bryanfields.net > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -- Nathan Hardman nhardman1428 at gmail.com N8THN at ARRL.NET -------------- next part -------------- An HTML attachment was scrubbed... URL: From shawpbx at gmail.com Wed Aug 9 23:16:40 2017 From: shawpbx at gmail.com (David Shaw) Date: Wed, 9 Aug 2017 16:16:40 -0700 Subject: [App_rpt-users] Block unwanted node In-Reply-To: References: <28204fa9-646f-a7ae-6e9b-cdb9474431b1@bryanfields.net> Message-ID: You add the line to rpt.conf. It doesn't change when the list gets updated. David -- Thanks, David "Laws that forbid the carrying of arms...disarm only those who are neither inclined nor determined to commit crimes. Such laws make things worse for the assaulted and better for the assailants; they serve rather to encourage than prevent homicides, for an unarmed man may be attacked with greater confidence than an armed one." Thomas Jefferson On Wed, Aug 9, 2017 at 1:52 PM, Nate Hardman wrote: > that hasn't worked well and also requires a "rpt reload" each time. this > allows (on the fly) ban/unban each time rc.updatenodelist updates the > rpt_extnodes-temp file they are removed or unbanned (not removed) I also > just built a php page to edit the ban list via web page and will be posting > that along with the script and the directions for proper use. > > On Mon, Aug 7, 2017 at 10:57 PM, Bryan Fields > wrote: > >> On 8/7/17 10:34 PM, Nate Hardman wrote: >> > Born out of need. >> > recent problem with an Allstar node owner caused the creation of this >> program. >> > the ban_nodes script runs along side of the rc.updatenodelist script and >> > watches for updates to the rpt_extnodes-temp file and removes the >> offending >> > node. if you have iptables installed and configured you may set that >> option to >> > "yes" in the program itself >> > simply use the bannodes.conf file that is created in the /etc/asterisk >> > directory to add or remove nodes as needed. >> > >> > you may view / download the script at http://n8thn.net/scripts/index >> .html >> > >> > I also have my updated TTS script that works in place of the >> google_tts.py for >> > the underground WX report. >> > >> >> Can't you just do like: >> >> [nodes] >> >> 40821 = nope at 127.0.0.1 >> >> and then it will try not let that node connect as it's redefined and over >> rides the ext-nodes file? >> >> >> -- >> Bryan Fields >> >> 727-409-1194 - Voice >> http://bryanfields.net >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.org/c >> gi-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. > > > > > -- > > Nathan Hardman > nhardman1428 at gmail.com > N8THN at ARRL.NET > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tpg at govin.net Thu Aug 10 00:28:56 2017 From: tpg at govin.net (TPG Govin) Date: Thu, 10 Aug 2017 00:28:56 +0000 Subject: [App_rpt-users] Using COS line with an HT Message-ID: I am setting up my first AllStar Link node.. I will be using a Raspberry Pi3, the URIx USB Radio Interface and an old Yaesu handheld HT. With this configuration, do you think its necessary to connect the COS line from inside the HT to the URIx ? or can I live reasonably well without it? I'd appreciate any inputs on this. Thanks. Tim, K7TPG -------------- next part -------------- An HTML attachment was scrubbed... URL: From Ramesh at va3uv.com Thu Aug 10 00:39:42 2017 From: Ramesh at va3uv.com (Ramesh Dhami) Date: Wed, 9 Aug 2017 20:39:42 -0400 Subject: [App_rpt-users] Using COS line with an HT In-Reply-To: References: Message-ID: On 2017-08-09 8:28 PM, TPG Govin wrote: > > I am setting up my first AllStar Link node.. I will be using a > Raspberry Pi3, the URIx USB Radio Interface and an old Yaesu handheld > HT. With this configuration, do you think its necessary to connect > the COS line from inside the HT to the URIx ? or can I live > reasonably well without it? I'd appreciate any inputs on this. Thanks. > > <-- Hi Tim: Unless you can find raw discriminator audio as your RX audio (and hence use DSP for presence of signal / ctcss decoding, etc.,) you will need a COS signal (that tracks PL) along with de-emphasized / speaker audio. Cheers, Ramesh, VA3UV -------------- next part -------------- An HTML attachment was scrubbed... URL: From tisawyer at gmail.com Fri Aug 11 04:11:31 2017 From: tisawyer at gmail.com (Tim Sawyer) Date: Thu, 10 Aug 2017 21:11:31 -0700 Subject: [App_rpt-users] Trimble GPS Date Bug In-Reply-To: References: Message-ID: This bug has been squashed by Chuck Henderson and Lee Woldanski. RTCMs now correct for the 1997 date from Trimble GPS units. Thank you guys for saving our bacon! Version 1.51 images are available at https://github.com/AllStarLink/voter/tree/master/board-firmware. These images will work on non-GPS or Garmin connected RTCMs but there's no reason to update those units. On Fri, Aug 4, 2017 at 8:25 PM, Tim Sawyer wrote: > For those of us who use Trimble GPS units be aware that a bug has cropped > up with these units impacting RTCM voting/simulcast systems. RTCMs without > GPS timing are not impacted. > > In voting and/or simulcast applications the date and time of all clients > must be an exact match with the server's RTCM in order to provide seamless > audio switching and launching. The Trimble bug has reverted it's date to > 1997. This causes Trimble timed RTCM's to not send or receive with > non-Trimble timed RTCMs. If you have an all Trimble system, no Trimbles or > no GPS? you're good. Only mixed systems will experience the problem. > > See for more: https://www.m1dst.co.uk/2017/08/trimble-thunderbolt- > week-rollover-fail/ > > Don?t know what the fix is yet. We?re looking for options. > > -- > -- > Tim > -- -- Tim -------------- next part -------------- An HTML attachment was scrubbed... URL: From Bryan at bryanfields.net Fri Aug 11 04:13:17 2017 From: Bryan at bryanfields.net (Bryan Fields) Date: Fri, 11 Aug 2017 00:13:17 -0400 Subject: [App_rpt-users] Trimble GPS Date Bug In-Reply-To: References: Message-ID: On 8/11/17 12:11 AM, Tim Sawyer wrote: > This bug has been squashed by Chuck Henderson and Lee Woldanski. RTCMs now > correct for the 1997 date from Trimble GPS units. Thank you guys for saving > our bacon! Version 1.51 images are available at > https://github.com/AllStarLink/voter/tree/master/board-firmware. These images > will work on non-GPS or Garmin connected RTCMs but there's no reason to update > those units. Awesome! Thanks Chuck and Lee! -- Bryan Fields 727-409-1194 - Voice http://bryanfields.net From kj6qfs at gmail.com Fri Aug 11 04:26:24 2017 From: kj6qfs at gmail.com (Sam Skolfield) Date: Fri, 11 Aug 2017 04:26:24 +0000 Subject: [App_rpt-users] Trimble GPS Date Bug In-Reply-To: References: Message-ID: Thank you, gentlemen! On Thu, Aug 10, 2017 at 9:11 PM Tim Sawyer wrote: > This bug has been squashed by Chuck Henderson and Lee Woldanski. RTCMs now > correct for the 1997 date from Trimble GPS units. Thank you guys for saving > our bacon! Version 1.51 images are available at > https://github.com/AllStarLink/voter/tree/master/board-firmware. These > images will work on non-GPS or Garmin connected RTCMs but there's no reason > to update those units. > > On Fri, Aug 4, 2017 at 8:25 PM, Tim Sawyer wrote: > >> For those of us who use Trimble GPS units be aware that a bug has cropped >> up with these units impacting RTCM voting/simulcast systems. RTCMs without >> GPS timing are not impacted. >> >> In voting and/or simulcast applications the date and time of all clients >> must be an exact match with the server's RTCM in order to provide seamless >> audio switching and launching. The Trimble bug has reverted it's date to >> 1997. This causes Trimble timed RTCM's to not send or receive with >> non-Trimble timed RTCMs. If you have an all Trimble system, no Trimbles or >> no GPS? you're good. Only mixed systems will experience the problem. >> >> See for more: >> https://www.m1dst.co.uk/2017/08/trimble-thunderbolt-week-rollover-fail/ >> >> Don?t know what the fix is yet. We?re looking for options. >> >> -- >> -- >> Tim >> > > > > -- > -- > Tim > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://lists.allstarlink.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. -- KJ6QFS Sam Skolfield -------------- next part -------------- An HTML attachment was scrubbed... URL: From ve7fet at tparc.org Fri Aug 11 14:11:36 2017 From: ve7fet at tparc.org (Lee Woldanski) Date: Fri, 11 Aug 2017 07:11:36 -0700 Subject: [App_rpt-users] Trimble GPS Date Bug In-Reply-To: References: Message-ID: Chuck made the patch... I just re-built the images. :) This does seem to fix the Thunderbolts, but beware if you are using another Trimble with TSIP. I don't know for sure what this will do if you are running Resolution T, or other boards. If this causes other TSIP devices to have date issues, we'll have to look at a different fix. Let us know if we broke something else. :) Lee On Thu, Aug 10, 2017 at 9:11 PM, Tim Sawyer wrote: > This bug has been squashed by Chuck Henderson and Lee Woldanski. RTCMs now > correct for the 1997 date from Trimble GPS units. Thank you guys for saving > our bacon! Version 1.51 images are available at https://github.com/ > AllStarLink/voter/tree/master/board-firmware. These images will work on > non-GPS or Garmin connected RTCMs but there's no reason to update those > units. > > On Fri, Aug 4, 2017 at 8:25 PM, Tim Sawyer wrote: > >> For those of us who use Trimble GPS units be aware that a bug has cropped >> up with these units impacting RTCM voting/simulcast systems. RTCMs without >> GPS timing are not impacted. >> >> In voting and/or simulcast applications the date and time of all clients >> must be an exact match with the server's RTCM in order to provide seamless >> audio switching and launching. The Trimble bug has reverted it's date to >> 1997. This causes Trimble timed RTCM's to not send or receive with >> non-Trimble timed RTCMs. If you have an all Trimble system, no Trimbles or >> no GPS? you're good. Only mixed systems will experience the problem. >> >> See for more: https://www.m1dst.co.uk/2017/08/trimble-thunderbolt-we >> ek-rollover-fail/ >> >> Don?t know what the fix is yet. We?re looking for options. >> >> -- >> -- >> Tim >> > > > > -- > -- > Tim > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- Lee Woldanski, AScT VE7FET -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at lockwood.us.com Fri Aug 11 15:28:47 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Fri, 11 Aug 2017 10:28:47 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: <4f30bf96-8639-5617-ba0b-30ecb5746760@lusfiber.net> Message-ID: Just to circle back on this topic... I tried itxctcss = as both 1 and 0 and no difference on this. If I'm understanding correctly, at this point app_rpt does only transmit the "default" ctcss for the repeater tail and courtesy tone, by design. It does not transmit the other txctcss tones in the usbradio.conf file. I haven't misconfigured anything? On Wed, Aug 9, 2017 at 12:01 PM, Neil k8it wrote: > that could be a option, configurable > > > > Thanks > 73 Neil Sablatzky K8IT > Allstar Node 41838 KITLINK > Allstar Node 42087 KITLINK HUB > IRLP Node exp0068 > Echolink K8IT-L > WIRES-X K8IT 11479 Room 21479 > > *From:* Steve Mahler > *Sent:* Wednesday, August 09, 2017 12:21 PM > *To:* app_rpt-users at lists.allstarlink.org > *Subject:* Re: [App_rpt-users] ctcss Encode Issues > > Neil: > > Understood. As long as you are thinking about a code change ... should > the PL tone be held thru the tailmessage system too? > > ...STeve > > On 8/9/2017 11:15 AM, Michael "Lee" Lockwood wrote: > > Steve Mahler: The RX ctcss tones I'm using are being decoded by the dsp. > I get verification of that when running debug in app_rpt. > > Neil: I'd like to have the same ctcss tone transmitted for the "repeater > tail" and courtesy tone the same amount of time it's set in the rpt.conf > file. I think I have mine set to 1.5 seconds. > > On Wed, Aug 9, 2017 at 11:01 AM, Neil k8it wrote: > >> for how long after a giben ctcss tone is reciebed do you want to use the >> same ctcss tx tone >> when would it reset to the 151.4 tone >> Thanks >> 73 Neil Sablatzky K8IT >> Allstar Node 41838 KITLINK >> Allstar Node 42087 KITLINK HUB >> IRLP Node exp0068 >> Echolink K8IT-L >> WIRES-X K8IT 11479 Room 21479 >> >> *From:* Michael "Lee" Lockwood >> *Sent:* Wednesday, August 09, 2017 11:12 AM >> *To:* app_rpt-users at lists.allstarlink.org >> *Subject:* Re: [App_rpt-users] ctcss Encode Issues >> >> A follow up to my previous email: >> >> I have multiple ctcss tone frequencies in usbradio.conf. app_rpt is >> decoding the incoming CTCSS (confirmed using debug), and it transmits CTCSS >> while someone is actively keying the repeater. However, as soon as they >> release PTT, app_rpt stops transmitting the corresponding CTCSS tone that >> was being used, and reverts to the default tone instead. >> >> So, if I key the repeater using 146.2, it broadcasts out using 146.2 and >> other radios hear audio just fine. But, as soon as I release PTT on the >> mobile/portable radio, the squelch tail is broadcast using 151.4, not >> 146.2. This results in the users programmed with 146.2 not hearing the >> courtesy tone or squelch tail. >> >> Has anyone else run in to this issue? >> >> Here's my usbradio.conf file again: >> >> [usb] >> >> hdwtype=0 >> rxboost=1 >> txboost=1 >> rxctcssrelax=1 >> txctcssdefault=151.4 >> rxctcssfreqs=146.2,141.3,151.4 >> txctcssfreqs=146.2,141.3,151.4 >> ;rxctcssoverride=0 >> carrierfrom=usb >> ctcssfrom=dsp >> rxdemod=flat >> txprelim=yes >> txlimonly=no >> txtoctype=phase >> txmixa=composite >> txmixb=0 >> invertptt=0 >> duplex=1 >> rxondelay=0 >> rxnoisefiltype=0 >> eeprom=0 >> >> >> >> On Mon, Aug 7, 2017 at 7:41 PM, Michael "Lee" Lockwood < >> michael at lockwood.us.com> wrote: >> >>> Hello, >>> I am unable to get any ctcss to be encoded during transmit, except for >>> the tone frequency that's entered in to the txctcssdetault field. If I >>> change that tone, the new value gets transmitted. However, all of the >>> other tones in the txctcssfreqs are being ignored. However, I do know that >>> the rxctcssfreqs values are being decoded. If I transmit in to the >>> repeater using a tone not listed, or without a tone, app_rpt ignores it and >>> does not repeat and key up the transmitter. Any assistance is greatly >>> appreciated. Thanks in advance! >>> >>> Here's what's in my usbradio.conf >>> >>> [usb] >>> >>> hdwtype=0 >>> rxboost=1 >>> txboost=1 >>> rxctcssrelax=1 >>> txctcssdefault=151.4 >>> rxctcssfreqs=146.2,141.3,151.4 >>> txctcssfreqs=146.2,141.3,151.4 >>> ;rxctcssoverride=0 >>> carrierfrom=usb >>> ctcssfrom=dsp >>> rxdemod=flat >>> txprelim=yes >>> txlimonly=no >>> txtoctype=phase >>> txmixa=composite >>> txmixb=0 >>> invertptt=0 >>> duplex=1 >>> rxondelay=0 >>> rxnoisefiltype=0 >>> eeprom=0 >>> >>> >>> -- >>> >>> *Michael "Lee" Lockwood* >>> michael at lockwood.us.com >>> >> >> >> >> -- >> >> *Michael "Lee" Lockwood* >> michael at lockwood.us.com >> >> ------------------------------ >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.org/c >> gi-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. >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.org/c >> gi-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. >> > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > > Virus-free. > www.avg.com > > <#m_1887823366555273984_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> > > > _______________________________________________ > App_rpt-users mailing listApp_rpt-users at lists.allstarlink.orghttp://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > ------------------------------ > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tom at tomh.us Fri Aug 11 15:36:05 2017 From: tom at tomh.us (Tom Hayward) Date: Fri, 11 Aug 2017 08:36:05 -0700 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: <4f30bf96-8639-5617-ba0b-30ecb5746760@lusfiber.net> Message-ID: On Fri, Aug 11, 2017 at 8:28 AM, Michael "Lee" Lockwood wrote: > > Just to circle back on this topic... > > I tried itxctcss = as both 1 and 0 and no difference on this. > > If I'm understanding correctly, at this point app_rpt does only transmit the "default" ctcss for the repeater tail and courtesy tone, by design. It does not transmit the other txctcss tones in the usbradio.conf file. I haven't misconfigured anything? If I were designing it, I would have done it this way, so I think that yes it is acting as designed. However, since the itxctcss command exists, it should follow the itxctcss command. It sounds like that piece was never implemented. This is sort of halfway between a feature request and a bug report, but I think it should be programmed so that when itxctcss == 1 it operates as it does now, and when itxctcss == 0 it should operate as you request, transmitting the input tone through the end of the transmission. Tom KD7LXL From michael at lockwood.us.com Fri Aug 11 15:39:14 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Fri, 11 Aug 2017 10:39:14 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: <4f30bf96-8639-5617-ba0b-30ecb5746760@lusfiber.net> Message-ID: Understood, thanks Tom! I hope this does get implemented, or finalized at some point. On Fri, Aug 11, 2017 at 10:36 AM, Tom Hayward wrote: > On Fri, Aug 11, 2017 at 8:28 AM, Michael "Lee" Lockwood > wrote: > > > > Just to circle back on this topic... > > > > I tried itxctcss = as both 1 and 0 and no difference on this. > > > > If I'm understanding correctly, at this point app_rpt does only transmit > the "default" ctcss for the repeater tail and courtesy tone, by design. It > does not transmit the other txctcss tones in the usbradio.conf file. I > haven't misconfigured anything? > > If I were designing it, I would have done it this way, so I think that > yes it is acting as designed. > > However, since the itxctcss command exists, it should follow the > itxctcss command. It sounds like that piece was never implemented. > This is sort of halfway between a feature request and a bug report, > but I think it should be programmed so that when itxctcss == 1 it > operates as it does now, and when itxctcss == 0 it should operate as > you request, transmitting the input tone through the end of the > transmission. > > Tom KD7LXL > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From szingman at msgstor.com Fri Aug 11 15:51:01 2017 From: szingman at msgstor.com (Steve Zingman) Date: Fri, 11 Aug 2017 11:51:01 -0400 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: References: <4f30bf96-8639-5617-ba0b-30ecb5746760@lusfiber.net> Message-ID: <7d8fc427-c28a-3876-d322-a25b61c931cd@msgstor.com> It will be looked at. Work is happening on channel drivers now. (among a LOT of other things) Steve N4IRS On 8/11/2017 11:39 AM, Michael "Lee" Lockwood wrote: > Understood, thanks Tom! I hope this does get implemented, or > finalized at some point. > > On Fri, Aug 11, 2017 at 10:36 AM, Tom Hayward > wrote: > > On Fri, Aug 11, 2017 at 8:28 AM, Michael "Lee" Lockwood > > wrote: > > > > Just to circle back on this topic... > > > > I tried itxctcss = as both 1 and 0 and no difference on this. > > > > If I'm understanding correctly, at this point app_rpt does only > transmit the "default" ctcss for the repeater tail and courtesy > tone, by design. It does not transmit the other txctcss tones in > the usbradio.conf file. I haven't misconfigured anything? > > If I were designing it, I would have done it this way, so I think that > yes it is acting as designed. > > However, since the itxctcss command exists, it should follow the > itxctcss command. It sounds like that piece was never implemented. > This is sort of halfway between a feature request and a bug report, > but I think it should be programmed so that when itxctcss == 1 it > operates as it does now, and when itxctcss == 0 it should operate as > you request, transmitting the input tone through the end of the > transmission. > > Tom KD7LXL > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > > To unsubscribe from this list please visit > http://lists.allstarlink.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. > > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at lockwood.us.com Fri Aug 11 19:06:36 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Fri, 11 Aug 2017 14:06:36 -0500 Subject: [App_rpt-users] ctcss Encode Issues In-Reply-To: <7d8fc427-c28a-3876-d322-a25b61c931cd@msgstor.com> References: <4f30bf96-8639-5617-ba0b-30ecb5746760@lusfiber.net> <7d8fc427-c28a-3876-d322-a25b61c931cd@msgstor.com> Message-ID: Fantastic... Now I'll just patiently wait. Who am I kidding? Knowing that there's new things in the works is exciting! On Fri, Aug 11, 2017 at 10:51 AM, Steve Zingman wrote: > It will be looked at. Work is happening on channel drivers now. (among a > LOT of other things) > > Steve N4IRS > > > On 8/11/2017 11:39 AM, Michael "Lee" Lockwood wrote: > > Understood, thanks Tom! I hope this does get implemented, or finalized at > some point. > > On Fri, Aug 11, 2017 at 10:36 AM, Tom Hayward wrote: > >> On Fri, Aug 11, 2017 at 8:28 AM, Michael "Lee" Lockwood >> wrote: >> > >> > Just to circle back on this topic... >> > >> > I tried itxctcss = as both 1 and 0 and no difference on this. >> > >> > If I'm understanding correctly, at this point app_rpt does only >> transmit the "default" ctcss for the repeater tail and courtesy tone, by >> design. It does not transmit the other txctcss tones in the usbradio.conf >> file. I haven't misconfigured anything? >> >> If I were designing it, I would have done it this way, so I think that >> yes it is acting as designed. >> >> However, since the itxctcss command exists, it should follow the >> itxctcss command. It sounds like that piece was never implemented. >> This is sort of halfway between a feature request and a bug report, >> but I think it should be programmed so that when itxctcss == 1 it >> operates as it does now, and when itxctcss == 0 it should operate as >> you request, transmitting the input tone through the end of the >> transmission. >> >> Tom KD7LXL >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.org/c >> gi-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. >> > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > > > _______________________________________________ > App_rpt-users mailing listApp_rpt-users at lists.allstarlink.orghttp://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. > -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tisawyer at gmail.com Fri Aug 11 21:29:31 2017 From: tisawyer at gmail.com (Tim Sawyer) Date: Fri, 11 Aug 2017 14:29:31 -0700 Subject: [App_rpt-users] Possible Trimble GRS Alternative Message-ID: These units look good. One of our group will be turning one up soon. We'll see how that goes. https://www.youtube.com/watch?v=TQ67M7kHQnc -- -- Tim -------------- next part -------------- An HTML attachment was scrubbed... URL: From k0jsc.jeff at gmail.com Sat Aug 12 16:13:09 2017 From: k0jsc.jeff at gmail.com (Jeff Carrier) Date: Sat, 12 Aug 2017 10:13:09 -0600 Subject: [App_rpt-users] App_rpt-users Digest, Vol 102, Issue 10 In-Reply-To: References: Message-ID: I run those Tim they work fine. I also have the Trimble based bg7tbl units that act weird and so far I can't get pps from them. K0jsc On Aug 12, 2017 10:00, wrote: > Send App_rpt-users mailing list submissions to > app_rpt-users at lists.allstarlink.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_ > rpt-users > or, via email, send a message with subject or body 'help' to > app_rpt-users-request at lists.allstarlink.org > > You can reach the person managing the list at > app_rpt-users-owner at lists.allstarlink.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of App_rpt-users digest..." > > This site is dedicated to the memory of Jim Dixon WB6NIL > > > Today's Topics: > > 1. Re: ctcss Encode Issues (Michael "Lee" Lockwood) > 2. Possible Trimble GRS Alternative (Tim Sawyer) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 11 Aug 2017 14:06:36 -0500 > From: "Michael \"Lee\" Lockwood" > To: Users of Asterisk app_rpt > Subject: Re: [App_rpt-users] ctcss Encode Issues > Message-ID: > -QM2ankA at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Fantastic... Now I'll just patiently wait. Who am I kidding? Knowing that > there's new things in the works is exciting! > > On Fri, Aug 11, 2017 at 10:51 AM, Steve Zingman > wrote: > > > It will be looked at. Work is happening on channel drivers now. (among a > > LOT of other things) > > > > Steve N4IRS > > > > > > On 8/11/2017 11:39 AM, Michael "Lee" Lockwood wrote: > > > > Understood, thanks Tom! I hope this does get implemented, or finalized > at > > some point. > > > > On Fri, Aug 11, 2017 at 10:36 AM, Tom Hayward wrote: > > > >> On Fri, Aug 11, 2017 at 8:28 AM, Michael "Lee" Lockwood > >> wrote: > >> > > >> > Just to circle back on this topic... > >> > > >> > I tried itxctcss = as both 1 and 0 and no difference on this. > >> > > >> > If I'm understanding correctly, at this point app_rpt does only > >> transmit the "default" ctcss for the repeater tail and courtesy tone, by > >> design. It does not transmit the other txctcss tones in the > usbradio.conf > >> file. I haven't misconfigured anything? > >> > >> If I were designing it, I would have done it this way, so I think that > >> yes it is acting as designed. > >> > >> However, since the itxctcss command exists, it should follow the > >> itxctcss command. It sounds like that piece was never implemented. > >> This is sort of halfway between a feature request and a bug report, > >> but I think it should be programmed so that when itxctcss == 1 it > >> operates as it does now, and when itxctcss == 0 it should operate as > >> you request, transmitting the input tone through the end of the > >> transmission. > >> > >> Tom KD7LXL > >> _______________________________________________ > >> App_rpt-users mailing list > >> App_rpt-users at lists.allstarlink.org > >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > >> > >> To unsubscribe from this list please visit > http://lists.allstarlink.org/c > >> gi-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. > >> > > > > > > > > -- > > > > *Michael "Lee" Lockwood* > > michael at lockwood.us.com > > > > > > _______________________________________________ > > App_rpt-users mailing listApp_rpt-users at lists.allstarlink.orghttp:// > lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > > > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at lists.allstarlink.org > > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > To unsubscribe from this list please visit http://lists.allstarlink.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. > > > > > > -- > > *Michael "Lee" Lockwood* > michael at lockwood.us.com > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: attachments/20170811/5f6ef31e/attachment-0001.html> > > ------------------------------ > > Message: 2 > Date: Fri, 11 Aug 2017 14:29:31 -0700 > From: Tim Sawyer > To: Users of Asterisk app_rpt > Subject: [App_rpt-users] Possible Trimble GRS Alternative > Message-ID: > gmail.com> > Content-Type: text/plain; charset="utf-8" > > These units look good. One of our group will be turning one up soon. We'll > see how that goes. > > https://www.youtube.com/watch?v=TQ67M7kHQnc > -- > -- > Tim > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: attachments/20170811/0021da08/attachment-0001.html> > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > > ------------------------------ > > End of App_rpt-users Digest, Vol 102, Issue 10 > ********************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: From michael at lockwood.us.com Wed Aug 16 14:20:55 2017 From: michael at lockwood.us.com (Michael "Lee" Lockwood) Date: Wed, 16 Aug 2017 09:20:55 -0500 Subject: [App_rpt-users] CTCSS/PL - Local Repeat vs. Simulcast Message-ID: Is it possible to use varying CTCSS tones for a "local repeat" only versus "simulcast"? I will be using RTCM (http://www.micro-node.com/thin-m1.shtml) units on several repeaters. They'll be linked via app_rpt, where I intend to use voting and simulcasting. However, I'd like to be able to have certain CTCSS tones programmed so that they do not trigger the simulcast transmit, they only key up the local repeater that received the incoming radio traffic. Other CTCSS tone(s) would trigger the wide-area simulcast. Is this currently doable using app_rpt? -- *Michael "Lee" Lockwood* michael at lockwood.us.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6qfs at gmail.com Sun Aug 20 21:35:58 2017 From: kj6qfs at gmail.com (Sam Skolfield) Date: Sun, 20 Aug 2017 21:35:58 +0000 Subject: [App_rpt-users] RTCM DNS unreliable? Message-ID: Hello all, I've had some funky issues with using a DNS for "server IP" parameter in my RTCMs. My server is behind an ISP that gives me a new wan IP whenever we have a power outage. So I used a simple DNS service, and my RTCMs phone home through that. At first it worked perfectly, even though sometimes when the wan ip updates, it takes a day or so for the RTCMs to attempt to resolve again. Oh well.. I spoke to someone that is very much "in the know" about that first issue, and he said the TCP/IP code in the RTCMs is VERY rudimentary and might not handle DNS stuff as well as I want it to. But, lately, the RTCMs fall off for days, sometimes weeks, even if the IP of the server hasn't changed at all. I checked to see if the RTCMS somehow lost power, nope... Anyone else have a similar experience? The only solution I can think of is using telnet to poke the RTCMs whenever they fall off. If someone else is doing the same thing I am and having more success than me, I'd like to hear from you. Thanks! -- KJ6QFS Sam Skolfield -------------- next part -------------- An HTML attachment was scrubbed... URL: From luvencl8 at gmail.com Mon Aug 21 10:52:46 2017 From: luvencl8 at gmail.com (Lu V) Date: Mon, 21 Aug 2017 06:52:46 -0400 Subject: [App_rpt-users] Eclipse QSO Message-ID: <25CDCC57-8275-420C-80A3-CA942C91C1D5@gmail.com> Has anyone coordinated a QSO party to allow nodes in totality zones to share the experience of the solar eclipse today? Jeff, K0JSC, is Burness doing anything? If nothing has been setup, I'll be happy to host it on 27892 FLA Hub. But hoping that someone has already thought of this in advance and has already announced it. 73, Lu Vencl KA4EPS From t.ottavi at bc-109.com Fri Aug 25 11:21:43 2017 From: t.ottavi at bc-109.com (Toussaint OTTAVI) Date: Fri, 25 Aug 2017 13:21:43 +0200 Subject: [App_rpt-users] ilbc codec source code ? Message-ID: <0811f827-83eb-2ec0-fe8e-fb1d2decd00a@bc-109.com> Hi, I wanted to do some tests with low bandwidth codecs for mobile IAX2 users. I tried to configure iLBC, but the module codec_ilbc.so is not present. Having a look at my Asterisk source folder (/usr/src/astsrc-1.4.23-pre/asterisk/codecs/), there's an "ilbc" sub-folder, but it only contains a Makefile, not the source files. This Asterisk install is rather old, I don't remember how I installed it, and where I got the sources. Where could I find the missing ilbc codec source files ? 73 de TK1BI -------------- next part -------------- An HTML attachment was scrubbed... URL: From szingman at msgstor.com Fri Aug 25 14:55:14 2017 From: szingman at msgstor.com (Steve Zingman) Date: Fri, 25 Aug 2017 10:55:14 -0400 Subject: [App_rpt-users] ilbc codec source code ? In-Reply-To: <0811f827-83eb-2ec0-fe8e-fb1d2decd00a@bc-109.com> References: <0811f827-83eb-2ec0-fe8e-fb1d2decd00a@bc-109.com> Message-ID: We played with it a few years ago. I can't tell you if this works but... On 8/25/2017 7:21 AM, Toussaint OTTAVI wrote: > Hi, > > I wanted to do some tests with low bandwidth codecs for mobile IAX2 > users. I tried to configure iLBC, but the module codec_ilbc.so is not > present. Having a look at my Asterisk source folder > (/usr/src/astsrc-1.4.23-pre/asterisk/codecs/), there's an "ilbc" > sub-folder, but it only contains a Makefile, not the source files. > This Asterisk install is rather old, I don't remember how I installed > it, and where I got the sources. > > Where could I find the missing ilbc codec source files ? > > 73 de TK1BI > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.ottavi at bc-109.com Fri Aug 25 18:09:41 2017 From: t.ottavi at bc-109.com (Toussaint OTTAVI) Date: Fri, 25 Aug 2017 20:09:41 +0200 Subject: [App_rpt-users] ilbc codec source code ? In-Reply-To: References: <0811f827-83eb-2ec0-fe8e-fb1d2decd00a@bc-109.com> Message-ID: <7be16734-0cc1-4ea1-47af-a6af5ef2babc@bc-109.com> Le 25/08/2017 ? 16:55, Steve Zingman a ?crit : > We played with it a few years ago. I can't tell you if this works but... > Thank you, it works :-) My Asterisk source tree was taken from your Github repo. It already included most of the iLBC files (those in the patch from here :http://www.hamvoip.org/downloads/patch-kit-with-ilbc.tgz). The only missing files were in the subfolder asterisk/codecs/ilbc I just put the content of this subfolder in my existing source tree, make clean, make menuselect and make. Missing "codec_ilbc.so" is now there. And my Zoiper client now connects with ilbc codec :-) 73 de TK1BI -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb4fxc at inttek.net Fri Aug 25 18:43:25 2017 From: kb4fxc at inttek.net (David McGough) Date: Fri, 25 Aug 2017 14:43:25 -0400 (EDT) Subject: [App_rpt-users] ilbc codec source code ? In-Reply-To: <7be16734-0cc1-4ea1-47af-a6af5ef2babc@bc-109.com> Message-ID: Hi, Please make sure to apply ALL the files in the patch kit, including the changes in Asterisk proper, such as: asterisk/include/asterisk/frame.h asterisk/main/frame.c asterisk/formats/format_ilbc.c asterisk/codecs/codec_ilbc.c asterisk/codecs/ilbc_slin_ex.h Stock Asterisk uses 30ms iLBC audio frames, which can end up sounding like "Mr. Roboto" with AllStar, which strictly expects 20ms frames....These patches convert iLBC for Asterisk to 20ms frames, so it's compatible with AllStar. Also, note that is you use this patch in conjuction with SIP phones, softphones, etc., make sure they're set to 20ms frames, too. This code is well tested, it has been running for many years in production. 73, David KB4FXC On Fri, 25 Aug 2017, Toussaint OTTAVI wrote: > > Le 25/08/2017 ?? 16:55, Steve Zingman a ??crit : > > We played with it a few years ago. I can't tell you if this works but... > > > > Thank you, it works :-) > > My Asterisk source tree was taken from your Github repo. It already > included most of the iLBC files (those in the patch from here > :http://www.hamvoip.org/downloads/patch-kit-with-ilbc.tgz). > > The only missing files were in the subfolder asterisk/codecs/ilbc > > I just put the content of this subfolder in my existing source tree, > make clean, make menuselect and make. Missing "codec_ilbc.so" is now > there. And my Zoiper client now connects with ilbc codec :-) > > 73 de TK1BI > From szingman at msgstor.com Fri Aug 25 18:59:10 2017 From: szingman at msgstor.com (Steve Zingman) Date: Fri, 25 Aug 2017 14:59:10 -0400 Subject: [App_rpt-users] ilbc codec source code ? In-Reply-To: References: Message-ID: <9fb1d6d3-9b54-12a4-555f-c2a97fe97ede@msgstor.com> When I get a chance I'll check it out and if all goes well I'll add it to the repository. Steve On 8/25/2017 2:43 PM, David McGough wrote: > Hi, > > Please make sure to apply ALL the files in the patch kit, including the > changes in Asterisk proper, such as: > > asterisk/include/asterisk/frame.h > asterisk/main/frame.c > asterisk/formats/format_ilbc.c > asterisk/codecs/codec_ilbc.c > asterisk/codecs/ilbc_slin_ex.h > > Stock Asterisk uses 30ms iLBC audio frames, which can end up sounding like > "Mr. Roboto" with AllStar, which strictly expects 20ms frames....These > patches convert iLBC for Asterisk to 20ms frames, so it's compatible with > AllStar. > > Also, note that is you use this patch in conjuction with SIP phones, > softphones, etc., make sure they're set to 20ms frames, too. > > This code is well tested, it has been running for many years in > production. > > > 73, David KB4FXC > > > > > On Fri, 25 Aug 2017, Toussaint OTTAVI wrote: > >> Le 25/08/2017 ?? 16:55, Steve Zingman a ??crit : >>> We played with it a few years ago. I can't tell you if this works but... >>> >> Thank you, it works :-) >> >> My Asterisk source tree was taken from your Github repo. It already >> included most of the iLBC files (those in the patch from here >> :http://www.hamvoip.org/downloads/patch-kit-with-ilbc.tgz). >> >> The only missing files were in the subfolder asterisk/codecs/ilbc >> >> I just put the content of this subfolder in my existing source tree, >> make clean, make menuselect and make. Missing "codec_ilbc.so" is now >> there. And my Zoiper client now connects with ilbc codec :-) >> >> 73 de TK1BI >> > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. From t.ottavi at bc-109.com Fri Aug 25 19:15:49 2017 From: t.ottavi at bc-109.com (Toussaint OTTAVI) Date: Fri, 25 Aug 2017 21:15:49 +0200 Subject: [App_rpt-users] ilbc codec source code ? In-Reply-To: References: Message-ID: <39973628-7088-02af-c048-2bdf10defbce@bc-109.com> Le 25/08/2017 ? 20:43, David McGough a ?crit?: > Stock Asterisk uses 30ms iLBC audio frames, which can end up sounding like > "Mr. Roboto" with AllStar, which strictly expects 20ms frames....These > patches convert iLBC for Asterisk to 20ms frames, so it's compatible with > AllStar. Wow ! Thank you, I didn't see that ! I just compared file sizes, and saw they were identical. But I didn't see the content was different... > Also, note that is you use this patch in conjuction with SIP phones, > softphones, etc., make sure they're set to 20ms frames, too. Humm, another problem : my current software client (Zoiper for Android) does not allow to set timing value. Does someone know an IAX2 client for iPhone/Android which supports iLBC, and which allows to change timing value ? 73 de TK1BI From t.ottavi at bc-109.com Fri Aug 25 19:21:57 2017 From: t.ottavi at bc-109.com (Toussaint OTTAVI) Date: Fri, 25 Aug 2017 21:21:57 +0200 Subject: [App_rpt-users] Codecs again : g729 ? Message-ID: What about using g729 codec ? It requires a licence for commercial use, but the use for "educational purposes" is allowed ;-) It seems to be the best quality/bandwidth ratio available (8 kbits/s) I had a quick look : Asterisk/app_rpt has a "format g729" but no "codec g729", and the corresponding rows/columns in the translation matrix are empty. Did someone already try to install and use g729 ? 73 de TK1BI -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb4fxc at inttek.net Fri Aug 25 19:47:58 2017 From: kb4fxc at inttek.net (David McGough) Date: Fri, 25 Aug 2017 15:47:58 -0400 (EDT) Subject: [App_rpt-users] ilbc codec source code ? In-Reply-To: <39973628-7088-02af-c048-2bdf10defbce@bc-109.com> Message-ID: Hi, I think Zoiper 3 and later has different CODECS (iLBC20 and iLBC30) define, which differentiate the frame rate. See: https://www.zoiper.com/en/support/answer/for/windows/104/Codecs I have tested G.729, but found it to have lower audio quality than iLBC, to my ear, at least, with about the same bandwidth use. The patents which did encumber most G.729 implementations are now expired. I have also experimentally added CODEC2 / 3200bps. Other than being CPU heavy (as expected), it works fine, but sounds closer to DMR-quality audio than is typically desirable for most AllStar use...But, this CODEC is by far the low-bandwidth leader of the free CODECs I've tested. 73, David KB4FXC On Fri, 25 Aug 2017, Toussaint OTTAVI wrote: > Le 25/08/2017 ?? 20:43, David McGough a ??crit??: > Stock Asterisk uses 30ms iLBC audio frames, which can end up sounding like > "Mr. Roboto" with AllStar, which strictly expects 20ms frames....These > patches convert iLBC for Asterisk to 20ms frames, so it's compatible with > AllStar. Wow ! Thank you, I didn't see that ! I just compared file sizes, and saw they were identical. But I didn't see the content was different... > Also, note that is you use this patch in conjuction with SIP phones, > softphones, etc., make sure they're set to 20ms frames, too. Humm, another problem : my current software client (Zoiper for Android) does not allow to set timing value. Does someone know an IAX2 client for iPhone/Android which supports iLBC, and which allows to change timing value ? 73 de TK1BI _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. From t.ottavi at bc-109.com Fri Aug 25 20:07:28 2017 From: t.ottavi at bc-109.com (Toussaint OTTAVI) Date: Fri, 25 Aug 2017 22:07:28 +0200 Subject: [App_rpt-users] ilbc codec source code ? In-Reply-To: References: Message-ID: Le 25/08/2017 ? 21:47, David McGough a ?crit?: > I think Zoiper 3 and later has different CODECS (iLBC20 and iLBC30) Thank you. I have iLBC30 installed, but I didn't see there was an iLBC20 :-) Good news :-) > I have tested G.729, but found it to have lower audio quality than iLBC, > to my ear, at least, with about the same bandwidth use. The patents which > did encumber most G.729 implementations are now expired. Did you remember how you installed the codec on Asterisk side ? AFAIK specs say iLBC is 15 kbps and g729 is 8 kbps, so it should be half bandwidth ? > I have also experimentally added CODEC2 / 3200bps. Other than being CPU > heavy (as expected), it works fine, but sounds closer to DMR-quality audio > than is typically desirable for most AllStar use...But, this CODEC is by > far the low-bandwidth leader of the free CODECs I've tested. I'd like to test, too. To see if there is an interest to use it with poor mobile networks (but if a mobile network can't carry 8 kbps, it may not be able to carry 4 kbps much better...) Of course, I won't use it for my Asterisk backbone :-) But as far as we plan to integrate gateways with d-star and DMR, there won't be much difference if there are also IAX2 users @3kbps... Moreover, the quality of a 3kbps codec transcoded to another 3kbps codec is something I'm fearing a bit HI ;-) Do you know any mobile software that can support codec2 ? 73 de TK1BI From kb4fxc at inttek.net Fri Aug 25 21:27:31 2017 From: kb4fxc at inttek.net (David McGough) Date: Fri, 25 Aug 2017 17:27:31 -0400 (EDT) Subject: [App_rpt-users] ilbc codec source code ? In-Reply-To: Message-ID: Hi, I don't have a cookbook solution for installing G.729 (or CODEC2), they are more complex to install than iLBC, which was originally part of the Asterisk distribution. When considering real bandwidth, remember all the IAX2 protocol overhead on top of the actual CODEC requirements. Here is a previous message, which has more details and actual measurements: http://lists.hamvoip.org/pipermail/arm-allstar/2017-July/005624.html I don't recall for certain the bandwidth needed for G.729. I think it was similar to GSM. I'll measure the bandwidth and document it when I get a chance. 73, David KB4FXC On Fri, 25 Aug 2017, Toussaint OTTAVI wrote: > Le 25/08/2017 ?? 21:47, David McGough a ??crit??: > I think Zoiper 3 and later has different CODECS (iLBC20 and iLBC30) Thank you. I have iLBC30 installed, but I didn't see there was an iLBC20 :-) Good news :-) > I have tested G.729, but found it to have lower audio quality than iLBC, > to my ear, at least, with about the same bandwidth use. The patents which > did encumber most G.729 implementations are now expired. Did you remember how you installed the codec on Asterisk side ? AFAIK specs say iLBC is 15 kbps and g729 is 8 kbps, so it should be half bandwidth ? > I have also experimentally added CODEC2 / 3200bps. Other than being CPU > heavy (as expected), it works fine, but sounds closer to DMR-quality audio > than is typically desirable for most AllStar use...But, this CODEC is by > far the low-bandwidth leader of the free CODECs I've tested. I'd like to test, too. To see if there is an interest to use it with poor mobile networks (but if a mobile network can't carry 8 kbps, it may not be able to carry 4 kbps much better...) Of course, I won't use it for my Asterisk backbone :-) But as far as we plan to integrate gateways with d-star and DMR, there won't be much difference if there are also IAX2 users @3kbps... Moreover, the quality of a 3kbps codec transcoded to another 3kbps codec is something I'm fearing a bit HI ;-) Do you know any mobile software that can support codec2 ? 73 de TK1BI _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. From shawpbx at gmail.com Sat Aug 26 21:47:32 2017 From: shawpbx at gmail.com (David Shaw) Date: Sat, 26 Aug 2017 14:47:32 -0700 Subject: [App_rpt-users] Hurricane Harvey Message-ID: ARRL Wesite: http://www.arrl.org/news/amateur-radio-preparations-continue-for-category-4-hurricane-harvey-flooding-most-significant-fear The Hurricane Watch Net (*HWN* ) remains active in ?Catastrophic Response Mode? on both 14.325 MHz and 7.268 MHz. The *VoIP Hurricane Net* activated today (connect at *WX_TALK* Echolink conference node: 7203/IRLP 9219. Stations on All-Star can connect to the Echolink side of the system by dialing *033007203). The Southern Territory *SATERN* Net will activate at least for one day on Saturday, from 0900 until 2000 CT on its regular frequency of 7.262 MHz. WX4NHC at the National Hurricane Center activated at 2100 UTC on Friday. -- Thanks, David "Laws that forbid the carrying of arms...disarm only those who are neither inclined nor determined to commit crimes. Such laws make things worse for the assaulted and better for the assailants; they serve rather to encourage than prevent homicides, for an unarmed man may be attacked with greater confidence than an armed one." Thomas Jefferson -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.ottavi at bc-109.com Sun Aug 27 14:07:09 2017 From: t.ottavi at bc-109.com (Toussaint OTTAVI) Date: Sun, 27 Aug 2017 16:07:09 +0200 Subject: [App_rpt-users] ilbc codec source code ? What about Opuis codec ? In-Reply-To: <0811f827-83eb-2ec0-fe8e-fb1d2decd00a@bc-109.com> References: <0811f827-83eb-2ec0-fe8e-fb1d2decd00a@bc-109.com> Message-ID: <6154083e-25df-621c-e034-c875f66f5fdc@bc-109.com> Le 25/08/2017 ? 13:21, Toussaint OTTAVI a ?crit?: > I wanted to do some tests with low bandwidth codecs for mobile IAX2 > users. I tried to configure iLBC, A friend of mine, who is working in business VoIP, told me to have a look at Opus codec. It seems to be the "state of the art", and it's highly tolerant to packet loss. It's included in Asterisk 14. But, due to some licencing concerns, it's not Open-Source, and only binaries are provided. Then, I presume chances that we can use it are poor... -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike at midnighteng.com Sun Aug 27 15:25:24 2017 From: mike at midnighteng.com (mike at midnighteng.com) Date: Sun, 27 Aug 2017 11:25:24 -0400 Subject: [App_rpt-users] ilbc codec source code ? What about Opuis codec ? In-Reply-To: <6154083e-25df-621c-e034-c875f66f5fdc@bc-109.com> Message-ID: <998cc6b69704479da85477eea0dd70540b6d8eab@webmail.midnighteng.com> http://opus-codec.org/ ----- Original Message ----- From: "Users of Asterisk app_rpt" To: Cc: Sent: Sun, 27 Aug 2017 16:07:09 +0200 Subject: Re: [App_rpt-users] ilbc codec source code ? What about Opuis codec ? Le 25/08/2017 ? 13:21, Toussaint OTTAVI a ?crit?: I wanted to do some tests with low bandwidth codecs for mobile IAX2 users. I tried to configure iLBC, A friend of mine, who is working in business VoIP, told me to have a look at Opus codec. It seems to be the "state of the art", and it's highly tolerant to packet loss. It's included in Asterisk 14. But, due to some licencing concerns, it's not Open-Source, and only binaries are provided. Then, I presume chances that we can use it are poor... -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb4fxc at inttek.net Sun Aug 27 20:35:41 2017 From: kb4fxc at inttek.net (David McGough) Date: Sun, 27 Aug 2017 16:35:41 -0400 (EDT) Subject: [App_rpt-users] ilbc codec source code ? What about Opuis codec ? In-Reply-To: <6154083e-25df-621c-e034-c875f66f5fdc@bc-109.com> Message-ID: Hi, I have Opus setup on my Asterisk 13 and later installations and it sounds fantastic for wideband audio...But computationally, it is VERY CPU intensive. Due to the CPU use, I about always prefer G.722. I have not tried this code on a RPi3 or for narrowband audio. I expect Opus on an RPi3 might be pushing the envelope! Opus is open, BSD license, see: http://opus-codec.org/license/ However, it's not GPL. I also expect they won't sign a Digium contributor license agreement---which requires you to give up your license rights to Digium! ..So, that's probably the license issue you heard about. For my installations, I'm very concerned about maintaining high audio quality. So, for me, iLBC is the winner over GSM, hands down....But, remember, whatever CODEC you choice, don't transcode from one low-bandwidth CODEC to another between nodes; not only is this CPU intensive, it seriously degrades the audio even further. If you've just got to have minimal bandwidth use, no other option, CODEC2/3200 is included in the hamvoip release and works properly. But, you pay for low bandwidth by sacrificing audio quality. 73, David KB4FXC On Sun, 27 Aug 2017, Toussaint OTTAVI wrote: > > Le 25/08/2017 ?? 13:21, Toussaint OTTAVI a ??crit??: > > I wanted to do some tests with low bandwidth codecs for mobile IAX2 > > users. I tried to configure iLBC, > > A friend of mine, who is working in business VoIP, told me to have a > look at Opus codec. It seems to be the "state of the art", and it's > highly tolerant to packet loss. > > It's included in Asterisk 14. But, due to some licencing concerns, it's > not Open-Source, and only binaries are provided. > > Then, I presume chances that we can use it are poor... > From george at dyb.com Tue Aug 29 17:30:25 2017 From: george at dyb.com (George Csahanin) Date: Tue, 29 Aug 2017 12:30:25 -0500 Subject: [App_rpt-users] radio-tune-menu problem Message-ID: <66753bbe-fa35-5858-9c27-35a7091c6639@dyb.com> Folks, I've searched for solutions with this. But downloaded RAT_RC1.img and put it in a SD card, etc, Pi3, etc. First issue was the nodesetup erroring out and not setting up things like which channel driver and so on, but I manually setup rpt.conf to be simpleusb and the right node number, manually edited modules.conf? to enable simpleusb, manually setup simpleusb.conf. Now I have the node where it works. Passes audio but went to setup levels. RX audio to net is too high. I made a file for tune factrors in /etc/asterisk simpleusb_tune_usb_27170.conf : [usb] ; name=usb ; devicenum=0 devstr=3-1 rxmixerset=25 txmixaset=999 txmixbset=999 The txmix settings work, the rx ones don't seem to. Same hardware, other distro and could get the audio right. but... radio-tune-menu won't run: root at repeater:~# radio-tune-menu Error parsing device parameters I'm lost as to where to look. Running on my nodes either limey or ACID. I had another person's image for the Pi but arch linux is a nightmare (and this coming from a 21 year veteran of slackware). Building a node for N5JGX, which I along with W8VT will be admin for. So I downloaded RAT_RC1 figuring I'd stick with the successors, heirs or designee of the founder. But hope someone can give me some direction where to look. If it can't parse device parameters...where do they live?? Thanks All y'all GeorgeC W2DB 2360 -- George Csahanin 10100 Carson Ranch Rd. Crowley, TX 76036 682-708-5716 home 401-338-0568 cel http://dyb.com PLEASE NOTE: Effective January 1, 2018 george at dyb.com will no longer function USE george at w2db.com From szingman at msgstor.com Tue Aug 29 17:34:04 2017 From: szingman at msgstor.com (Steve Zingman) Date: Tue, 29 Aug 2017 13:34:04 -0400 Subject: [App_rpt-users] radio-tune-menu problem In-Reply-To: <66753bbe-fa35-5858-9c27-35a7091c6639@dyb.com> References: <66753bbe-fa35-5858-9c27-35a7091c6639@dyb.com> Message-ID: <2871c165-1e49-66ea-2e30-6a1b8b3916bf@msgstor.com> Radio tune menu is for usbradio channel driver. use simple-usb-tune. On 8/29/2017 1:30 PM, George Csahanin wrote: > Folks, I've searched for solutions with this. But downloaded > RAT_RC1.img and put it in a SD card, etc, Pi3, etc. First issue was > the nodesetup erroring out and not setting up things like which > channel driver and so on, but I manually setup rpt.conf to be > simpleusb and the right node number, manually edited modules.conf to > enable simpleusb, manually setup simpleusb.conf. Now I have the node > where it works. Passes audio but went to setup levels. RX audio to net > is too high. I made a file for tune factrors in /etc/asterisk > > simpleusb_tune_usb_27170.conf : > > [usb] > ; name=usb > ; devicenum=0 > devstr=3-1 > rxmixerset=25 > txmixaset=999 > txmixbset=999 > > The txmix settings work, the rx ones don't seem to. Same hardware, > other distro and could get the audio right. > > but... > > radio-tune-menu won't run: > > root at repeater:~# radio-tune-menu > Error parsing device parameters > > I'm lost as to where to look. Running on my nodes either limey or > ACID. I had another person's image for the Pi but arch linux is a > nightmare (and this coming from a 21 year veteran of slackware). > Building a node for N5JGX, which I along with W8VT will be admin for. > So I downloaded RAT_RC1 figuring I'd stick with the successors, heirs > or designee of the founder. > > But hope someone can give me some direction where to look. > > If it can't parse device parameters...where do they live?? > > > Thanks All y'all > > GeorgeC > > W2DB 2360 > From szingman at msgstor.com Tue Aug 29 17:35:31 2017 From: szingman at msgstor.com (Steve Zingman) Date: Tue, 29 Aug 2017 13:35:31 -0400 Subject: [App_rpt-users] radio-tune-menu problem In-Reply-To: <2871c165-1e49-66ea-2e30-6a1b8b3916bf@msgstor.com> References: <66753bbe-fa35-5858-9c27-35a7091c6639@dyb.com> <2871c165-1e49-66ea-2e30-6a1b8b3916bf@msgstor.com> Message-ID: Correction: simpleusb-tune-menu On 8/29/2017 1:34 PM, Steve Zingman wrote: > Radio tune menu is for usbradio channel driver. use simple-usb-tune. > > On 8/29/2017 1:30 PM, George Csahanin wrote: >> Folks, I've searched for solutions with this. But downloaded >> RAT_RC1.img and put it in a SD card, etc, Pi3, etc. First issue was >> the nodesetup erroring out and not setting up things like which >> channel driver and so on, but I manually setup rpt.conf to be >> simpleusb and the right node number, manually edited modules.conf to >> enable simpleusb, manually setup simpleusb.conf. Now I have the node >> where it works. Passes audio but went to setup levels. RX audio to >> net is too high. I made a file for tune factrors in /etc/asterisk >> >> simpleusb_tune_usb_27170.conf : >> >> [usb] >> ; name=usb >> ; devicenum=0 >> devstr=3-1 >> rxmixerset=25 >> txmixaset=999 >> txmixbset=999 >> >> The txmix settings work, the rx ones don't seem to. Same hardware, >> other distro and could get the audio right. >> >> but... >> >> radio-tune-menu won't run: >> >> root at repeater:~# radio-tune-menu >> Error parsing device parameters >> >> I'm lost as to where to look. Running on my nodes either limey or >> ACID. I had another person's image for the Pi but arch linux is a >> nightmare (and this coming from a 21 year veteran of slackware). >> Building a node for N5JGX, which I along with W8VT will be admin for. >> So I downloaded RAT_RC1 figuring I'd stick with the successors, heirs >> or designee of the founder. >> >> But hope someone can give me some direction where to look. >> >> If it can't parse device parameters...where do they live?? >> >> >> Thanks All y'all >> >> GeorgeC >> >> W2DB 2360 >> > From n1dot1 at gmail.com Tue Aug 29 17:36:40 2017 From: n1dot1 at gmail.com (Kenneth Grimard) Date: Tue, 29 Aug 2017 13:36:40 -0400 Subject: [App_rpt-users] radio-tune-menu problem In-Reply-To: <66753bbe-fa35-5858-9c27-35a7091c6639@dyb.com> References: <66753bbe-fa35-5858-9c27-35a7091c6639@dyb.com> Message-ID: Hi gorgeous Try using the command simpleusb-tune- menu That is the correct one not radio- tune- menu The above is for the chan_ USB not chan_ simple Ken n1dot On Aug 29, 2017 13:30, "George Csahanin" wrote: > Folks, I've searched for solutions with this. But downloaded RAT_RC1.img > and put it in a SD card, etc, Pi3, etc. First issue was the nodesetup > erroring out and not setting up things like which channel driver and so on, > but I manually setup rpt.conf to be simpleusb and the right node number, > manually edited modules.conf to enable simpleusb, manually setup > simpleusb.conf. Now I have the node where it works. Passes audio but went > to setup levels. RX audio to net is too high. I made a file for tune > factrors in /etc/asterisk > > simpleusb_tune_usb_27170.conf : > > [usb] > ; name=usb > ; devicenum=0 > devstr=3-1 > rxmixerset=25 > txmixaset=999 > txmixbset=999 > > The txmix settings work, the rx ones don't seem to. Same hardware, other > distro and could get the audio right. > > but... > > radio-tune-menu won't run: > > root at repeater:~# radio-tune-menu > Error parsing device parameters > > I'm lost as to where to look. Running on my nodes either limey or ACID. I > had another person's image for the Pi but arch linux is a nightmare (and > this coming from a 21 year veteran of slackware). Building a node for > N5JGX, which I along with W8VT will be admin for. So I downloaded RAT_RC1 > figuring I'd stick with the successors, heirs or designee of the founder. > > But hope someone can give me some direction where to look. > > If it can't parse device parameters...where do they live?? > > > Thanks All y'all > > GeorgeC > > W2DB 2360 > > -- > George Csahanin > 10100 Carson Ranch Rd. > Crowley, TX 76036 > 682-708-5716 home > 401-338-0568 cel > http://dyb.com > PLEASE NOTE: Effective January 1, 2018 george at dyb.com will no longer > function > USE george at w2db.com > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.org/c > gi-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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From k6ecm1 at gmail.com Wed Aug 30 04:41:18 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Tue, 29 Aug 2017 21:41:18 -0700 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy Message-ID: I can't seem to get past loading DIAL, and changing the password. I found and tried "first time" without success. Tried loading a known good set of config files in /etc/asterisk, without success. Asterisk does not start. Rebooted the Pi3 using a card from another node to see if the Pi3 and URIx are working. Pi3 boots fine, and asterisk runs. Looking for suggestions. Thanks, Bob P.S.Fresh RAT_rc1 download from asterisklink website. Sent from my iPhone From Bryan at bryanfields.net Wed Aug 30 04:42:48 2017 From: Bryan at bryanfields.net (Bryan Fields) Date: Wed, 30 Aug 2017 00:42:48 -0400 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy In-Reply-To: References: Message-ID: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> On 8/30/17 12:41 AM, Bob Pyke wrote: > Asterisk does not start. What do the logs say? Can you run asterisk in the foreground and see what it outputs as errors? -- Bryan Fields 727-409-1194 - Voice http://bryanfields.net From k6ecm1 at gmail.com Wed Aug 30 12:45:33 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Wed, 30 Aug 2017 05:45:33 -0700 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy In-Reply-To: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> References: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> Message-ID: Not able to get past the Linux continual crashing and rebooting. The experience is quite similar on two RPi3s. It does not crash on an RPi2, which has allowed me to poke around this build a bit. I can't locate the ssh file for edit. This build does not seem to follow the docs.Allstarlink website for file name and location. The original RPi build seems to work on both variants of RPi. Thanks, Bob Sent from my iPhone > On Aug 29, 2017, at 9:42 PM, Bryan Fields wrote: > >> On 8/30/17 12:41 AM, Bob Pyke wrote: >> Asterisk does not start. > > What do the logs say? Can you run asterisk in the foreground and see what it > outputs as errors? > > -- > Bryan Fields > > 727-409-1194 - Voice > http://bryanfields.net > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. From szingman at msgstor.com Wed Aug 30 12:50:52 2017 From: szingman at msgstor.com (Steve Zingman) Date: Wed, 30 Aug 2017 08:50:52 -0400 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy In-Reply-To: References: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> Message-ID: <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> We have not had any reports of crashing on a RPI3 I have a test node built on a RPI3 that I use to verify proper operation. The ssh file is at /etc/ssh/sshd_config 73, Steve N4IRS On 8/30/2017 8:45 AM, Bob Pyke wrote: > Not able to get past the Linux continual crashing and rebooting. The experience is quite similar on two RPi3s. It does not crash on an RPi2, which has allowed me to poke around this build a bit. I can't locate the ssh file for edit. This build does not seem to follow the docs.Allstarlink website for file name and location. > > The original RPi build seems to work on both variants of RPi. > > Thanks, > Bob > > Sent from my iPhone > >> On Aug 29, 2017, at 9:42 PM, Bryan Fields wrote: >> >>> On 8/30/17 12:41 AM, Bob Pyke wrote: >>> Asterisk does not start. >> What do the logs say? Can you run asterisk in the foreground and see what it >> outputs as errors? >> >> -- >> Bryan Fields >> >> 727-409-1194 - Voice >> http://bryanfields.net >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.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. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. From kuggie at kuggie.com Wed Aug 30 14:19:20 2017 From: kuggie at kuggie.com (Kevin Custer) Date: Wed, 30 Aug 2017 10:19:20 -0400 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy In-Reply-To: <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> References: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> Message-ID: Unless something has become corrupt since the beginning of last week, I've since built 2 RPi3 nodes and have them up and working and installed at remote repeater locations. Kevin On 8/30/2017 8:50 AM, Steve Zingman wrote: > We have not had any reports of crashing on a RPI3 I have a test node > built on a RPI3 that I use to verify proper operation. > The ssh file is at /etc/ssh/sshd_config > > 73, Steve N4IRS > > On 8/30/2017 8:45 AM, Bob Pyke wrote: >> Not able to get past the Linux continual crashing and rebooting. The >> experience is quite similar on two RPi3s. It does not crash on an >> RPi2, which has allowed me to poke around this build a bit. I can't >> locate the ssh file for edit. This build does not seem to follow the >> docs.Allstarlink website for file name and location. >> >> The original RPi build seems to work on both variants of RPi. >> >> Thanks, >> Bob From k6ecm1 at gmail.com Wed Aug 30 15:08:08 2017 From: k6ecm1 at gmail.com (Bob Pyke) Date: Wed, 30 Aug 2017 08:08:08 -0700 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy In-Reply-To: <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> References: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> Message-ID: <6240F32D-6105-4A15-9937-A39A7A9636F6@gmail.com> Powersupply (sigh!!!) Asterisk is happy. Is ther a first time script for setting up time zone or is this manual? Thanks, Bob Sent from my iPhone > On Aug 30, 2017, at 5:50 AM, Steve Zingman wrote: > > We have not had any reports of crashing on a RPI3 I have a test node built on a RPI3 that I use to verify proper operation. > The ssh file is at /etc/ssh/sshd_config > > 73, Steve N4IRS > >> On 8/30/2017 8:45 AM, Bob Pyke wrote: >> Not able to get past the Linux continual crashing and rebooting. The experience is quite similar on two RPi3s. It does not crash on an RPi2, which has allowed me to poke around this build a bit. I can't locate the ssh file for edit. This build does not seem to follow the docs.Allstarlink website for file name and location. >> >> The original RPi build seems to work on both variants of RPi. >> >> Thanks, >> Bob >> >> Sent from my iPhone >> >>>> On Aug 29, 2017, at 9:42 PM, Bryan Fields wrote: >>>> >>>> On 8/30/17 12:41 AM, Bob Pyke wrote: >>>> Asterisk does not start. >>> What do the logs say? Can you run asterisk in the foreground and see what it >>> outputs as errors? >>> >>> -- >>> Bryan Fields >>> >>> 727-409-1194 - Voice >>> http://bryanfields.net >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at lists.allstarlink.org >>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> To unsubscribe from this list please visit http://lists.allstarlink.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. >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. From szingman at msgstor.com Wed Aug 30 15:11:51 2017 From: szingman at msgstor.com (Steve Zingman) Date: Wed, 30 Aug 2017 11:11:51 -0400 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy In-Reply-To: <6240F32D-6105-4A15-9937-A39A7A9636F6@gmail.com> References: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> <6240F32D-6105-4A15-9937-A39A7A9636F6@gmail.com> Message-ID: <9baf6983-bda3-9301-1dcc-146e7101404c@msgstor.com> Oh what a surprise, a PS issue with a Pi. ;) do the following as root: touch /etc/asterisk/firsttime firsttime Or, if all you want to do is set the TZ. dpkg-reconfigure tzdata On 8/30/2017 11:08 AM, Bob Pyke wrote: > Powersupply (sigh!!!) > > Asterisk is happy. Is ther a first time script for setting up time zone or is this manual? > > Thanks, > Bob > > Sent from my iPhone > >> On Aug 30, 2017, at 5:50 AM, Steve Zingman wrote: >> >> We have not had any reports of crashing on a RPI3 I have a test node built on a RPI3 that I use to verify proper operation. >> The ssh file is at /etc/ssh/sshd_config >> >> 73, Steve N4IRS >> >>> On 8/30/2017 8:45 AM, Bob Pyke wrote: >>> Not able to get past the Linux continual crashing and rebooting. The experience is quite similar on two RPi3s. It does not crash on an RPi2, which has allowed me to poke around this build a bit. I can't locate the ssh file for edit. This build does not seem to follow the docs.Allstarlink website for file name and location. >>> >>> The original RPi build seems to work on both variants of RPi. >>> >>> Thanks, >>> Bob >>> >>> Sent from my iPhone >>> >>>>> On Aug 29, 2017, at 9:42 PM, Bryan Fields wrote: >>>>> >>>>> On 8/30/17 12:41 AM, Bob Pyke wrote: >>>>> Asterisk does not start. >>>> What do the logs say? Can you run asterisk in the foreground and see what it >>>> outputs as errors? >>>> >>>> -- >>>> Bryan Fields >>>> >>>> 727-409-1194 - Voice >>>> http://bryanfields.net >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at lists.allstarlink.org >>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> To unsubscribe from this list please visit http://lists.allstarlink.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. >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at lists.allstarlink.org >>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> To unsubscribe from this list please visit http://lists.allstarlink.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. >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.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. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. From k6ecm1 at gmail.com Thu Aug 31 02:50:51 2017 From: k6ecm1 at gmail.com (Bob) Date: Wed, 30 Aug 2017 19:50:51 -0700 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy In-Reply-To: <9baf6983-bda3-9301-1dcc-146e7101404c@msgstor.com> References: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> <6240F32D-6105-4A15-9937-A39A7A9636F6@gmail.com> <9baf6983-bda3-9301-1dcc-146e7101404c@msgstor.com> Message-ID: Bob here, not out of the woods quite yet. I'm replacing a private node computer with a RPi3. I've started with copying over the /etc/asterisk/*.conf files. Asterisk is crashing on me at regular intervals. Here are the errors I'm receiving. Each time the message "--Re-loadign config for repeater..." occurs seems to correspond with the green light going solid instead of pulsing. Any ideas are appreciated. Thanks, Bob Verbosity was 0 and is now 3 [Aug 30 19:43:52] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread restarted on 1901 [Aug 30 19:43:52] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread restarted on node 1901 -- Re-Loading config for repeater 1901 -- rpt (Rx) initiating call to Radio/usb on Radio/usb == Set device 1-1.2:1.0 to usb [Aug 30 19:43:52] WARNING[794]: chan_usbradio.c:1743 hidthread: Loaded parameter s from usbradio_tune_usb.conf for device usb . [Aug 30 19:43:54] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread restarted on 1901 [Aug 30 19:43:54] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread restarted on node 1901 -- Re-Loading config for repeater 1901 -- rpt (Rx) initiating call to Radio/usb on Radio/usb == Set device 1-1.2:1.0 to usb [Aug 30 19:43:54] WARNING[796]: chan_usbradio.c:1743 hidthread: Loaded parameter s from usbradio_tune_usb.conf for device usb . [Aug 30 19:43:56] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread restarted on 1901 [Aug 30 19:43:56] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread restarted on node 1901 -- Re-Loading config for repeater 1901 -- rpt (Rx) initiating call to Radio/usb on Radio/usb == Set device 1-1.2:1.0 to usb [Aug 30 19:43:56] WARNING[798]: chan_usbradio.c:1743 hidthread: Loaded parameter s from usbradio_tune_usb.conf for device usb . [Aug 30 19:43:58] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread restarted on 1901 [Aug 30 19:43:58] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread restarted on node 1901 -- Re-Loading config for repeater 1901 -- rpt (Rx) initiating call to Radio/usb on Radio/usb == Set device 1-1.2:1.0 to usb [Aug 30 19:43:58] WARNING[800]: chan_usbradio.c:1743 hidthread: Loaded parameter s from usbradio_tune_usb.conf for device usb . [Aug 30 19:44:00] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread restarted on 1901 [Aug 30 19:44:00] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread restarted on node 1901 -- Re-Loading config for repeater 1901 -- rpt (Rx) initiating call to Radio/usb on Radio/usb == Set device 1-1.2:1.0 to usb [Aug 30 19:44:00] WARNING[802]: chan_usbradio.c:1743 hidthread: Loaded parameter s from usbradio_tune_usb.conf for device usb . [Aug 30 19:44:02] ERROR[764]: app_rpt.c:22027 rpt_master: Continual RPT thread restarts, killing Asterisk -----Original Message----- From: App_rpt-users [mailto:app_rpt-users-bounces at lists.allstarlink.org] On Behalf Of Steve Zingman Sent: Wednesday, August 30, 2017 8:12 AM To: app_rpt-users at lists.allstarlink.org Subject: Re: [App_rpt-users] RAT_rc1 on Pi3 a no joy Oh what a surprise, a PS issue with a Pi. ;) do the following as root: touch /etc/asterisk/firsttime firsttime Or, if all you want to do is set the TZ. dpkg-reconfigure tzdata On 8/30/2017 11:08 AM, Bob Pyke wrote: > Powersupply (sigh!!!) > > Asterisk is happy. Is ther a first time script for setting up time zone or is this manual? > > Thanks, > Bob > > Sent from my iPhone > >> On Aug 30, 2017, at 5:50 AM, Steve Zingman wrote: >> >> We have not had any reports of crashing on a RPI3 I have a test node built on a RPI3 that I use to verify proper operation. >> The ssh file is at /etc/ssh/sshd_config >> >> 73, Steve N4IRS >> >>> On 8/30/2017 8:45 AM, Bob Pyke wrote: >>> Not able to get past the Linux continual crashing and rebooting. The experience is quite similar on two RPi3s. It does not crash on an RPi2, which has allowed me to poke around this build a bit. I can't locate the ssh file for edit. This build does not seem to follow the docs.Allstarlink website for file name and location. >>> >>> The original RPi build seems to work on both variants of RPi. >>> >>> Thanks, >>> Bob >>> >>> Sent from my iPhone >>> >>>>> On Aug 29, 2017, at 9:42 PM, Bryan Fields wrote: >>>>> >>>>> On 8/30/17 12:41 AM, Bob Pyke wrote: >>>>> Asterisk does not start. >>>> What do the logs say? Can you run asterisk in the foreground and see what it >>>> outputs as errors? >>>> >>>> -- >>>> Bryan Fields >>>> >>>> 727-409-1194 - Voice >>>> http://bryanfields.net >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at lists.allstarlink.org >>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> To unsubscribe from this list please visit http://lists.allstarlink.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. >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at lists.allstarlink.org >>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> To unsubscribe from this list please visit http://lists.allstarlink.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. >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://lists.allstarlink.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. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. From szingman at msgstor.com Thu Aug 31 02:54:46 2017 From: szingman at msgstor.com (Steve Zingman) Date: Wed, 30 Aug 2017 22:54:46 -0400 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy In-Reply-To: References: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> <6240F32D-6105-4A15-9937-A39A7A9636F6@gmail.com> <9baf6983-bda3-9301-1dcc-146e7101404c@msgstor.com> Message-ID: <8a560bb1-f210-d4f9-279f-fabe5dc2c200@msgstor.com> rename usbradio_tune_usb.conf to usbradio_tune_usb.conf.save and see what happens. Check modules.conf for only the proper channel driver loaded. Steve On 08/30/2017 10:50 PM, Bob wrote: > Bob here, not out of the woods quite yet. > > I'm replacing a private node computer with a RPi3. I've started with copying > over the /etc/asterisk/*.conf files. Asterisk is crashing on me at regular > intervals. Here are the errors I'm receiving. Each time the message > "--Re-loadign config for repeater..." occurs seems to correspond with the > green light going solid instead of pulsing. > > Any ideas are appreciated. > > Thanks, > Bob > > Verbosity was 0 and is now 3 > [Aug 30 19:43:52] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:52] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:52] WARNING[794]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:54] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:54] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:54] WARNING[796]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:56] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:56] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:56] WARNING[798]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:58] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:58] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:58] WARNING[800]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:44:00] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:44:00] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:44:00] WARNING[802]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:44:02] ERROR[764]: app_rpt.c:22027 rpt_master: Continual RPT > thread restarts, killing Asterisk > > -----Original Message----- > From: App_rpt-users [mailto:app_rpt-users-bounces at lists.allstarlink.org] On > Behalf Of Steve Zingman > Sent: Wednesday, August 30, 2017 8:12 AM > To: app_rpt-users at lists.allstarlink.org > Subject: Re: [App_rpt-users] RAT_rc1 on Pi3 a no joy > > Oh what a surprise, a PS issue with a Pi. ;) > do the following as root: > touch /etc/asterisk/firsttime > firsttime > > Or, if all you want to do is set the TZ. > dpkg-reconfigure tzdata > > > On 8/30/2017 11:08 AM, Bob Pyke wrote: >> Powersupply (sigh!!!) >> >> Asterisk is happy. Is ther a first time script for setting up time zone or > is this manual? >> Thanks, >> Bob >> >> Sent from my iPhone >> >>> On Aug 30, 2017, at 5:50 AM, Steve Zingman wrote: >>> >>> We have not had any reports of crashing on a RPI3 I have a test node > built on a RPI3 that I use to verify proper operation. >>> The ssh file is at /etc/ssh/sshd_config >>> >>> 73, Steve N4IRS >>> >>>> On 8/30/2017 8:45 AM, Bob Pyke wrote: >>>> Not able to get past the Linux continual crashing and rebooting. The > experience is quite similar on two RPi3s. It does not crash on an RPi2, > which has allowed me to poke around this build a bit. I can't locate the ssh > file for edit. This build does not seem to follow the docs.Allstarlink > website for file name and location. >>>> The original RPi build seems to work on both variants of RPi. >>>> >>>> Thanks, >>>> Bob >>>> >>>> Sent from my iPhone >>>> >>>>>> On Aug 29, 2017, at 9:42 PM, Bryan Fields > wrote: >>>>>> On 8/30/17 12:41 AM, Bob Pyke wrote: >>>>>> Asterisk does not start. >>>>> What do the logs say? Can you run asterisk in the foreground and see > what it >>>>> outputs as errors? >>>>> >>>>> -- >>>>> Bryan Fields >>>>> >>>>> 727-409-1194 - Voice >>>>> http://bryanfields.net >>>>> _______________________________________________ >>>>> App_rpt-users mailing list >>>>> App_rpt-users at lists.allstarlink.org >>>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>>> >>>>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at lists.allstarlink.org >>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at lists.allstarlink.org >>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. From k6ecm1 at gmail.com Thu Aug 31 03:00:59 2017 From: k6ecm1 at gmail.com (Bob) Date: Wed, 30 Aug 2017 20:00:59 -0700 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy In-Reply-To: <8a560bb1-f210-d4f9-279f-fabe5dc2c200@msgstor.com> References: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> <6240F32D-6105-4A15-9937-A39A7A9636F6@gmail.com> <9baf6983-bda3-9301-1dcc-146e7101404c@msgstor.com> <8a560bb1-f210-d4f9-279f-fabe5dc2c200@msgstor.com> Message-ID: <610738228FE74C369DF04962A33E48B0@ThePykesHP> Verbosity was 0 and is now 3 [Aug 30 19:59:55] NOTICE[655]: app_rpt.c:22032 rpt_master: RPT thread restarted on 1901 [Aug 30 19:59:55] WARNING[655]: app_rpt.c:22044 rpt_master: rpt_thread restarted on node 1901 -- Re-Loading config for repeater 1901 -- rpt (Rx) initiating call to Radio/usb on Radio/usb == Set device 1-1.2:1.0 to usb [Aug 30 19:59:55] WARNING[693]: chan_usbradio.c:1744 hidthread: File usbradio_tune_usb.conf not found, device usb using default parameters. xxxxxxx*CLI> Disconnected from Asterisk server Executing last minute cleanups -----Original Message----- From: App_rpt-users [mailto:app_rpt-users-bounces at lists.allstarlink.org] On Behalf Of Steve Zingman Sent: Wednesday, August 30, 2017 7:55 PM To: app_rpt-users at lists.allstarlink.org Subject: Re: [App_rpt-users] RAT_rc1 on Pi3 a no joy rename usbradio_tune_usb.conf to usbradio_tune_usb.conf.save and see what happens. Check modules.conf for only the proper channel driver loaded. Steve On 08/30/2017 10:50 PM, Bob wrote: > Bob here, not out of the woods quite yet. > > I'm replacing a private node computer with a RPi3. I've started with copying > over the /etc/asterisk/*.conf files. Asterisk is crashing on me at regular > intervals. Here are the errors I'm receiving. Each time the message > "--Re-loadign config for repeater..." occurs seems to correspond with the > green light going solid instead of pulsing. > > Any ideas are appreciated. > > Thanks, > Bob > > Verbosity was 0 and is now 3 > [Aug 30 19:43:52] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:52] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:52] WARNING[794]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:54] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:54] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:54] WARNING[796]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:56] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:56] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:56] WARNING[798]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:58] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:58] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:58] WARNING[800]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:44:00] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:44:00] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:44:00] WARNING[802]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:44:02] ERROR[764]: app_rpt.c:22027 rpt_master: Continual RPT > thread restarts, killing Asterisk > > -----Original Message----- > From: App_rpt-users [mailto:app_rpt-users-bounces at lists.allstarlink.org] On > Behalf Of Steve Zingman > Sent: Wednesday, August 30, 2017 8:12 AM > To: app_rpt-users at lists.allstarlink.org > Subject: Re: [App_rpt-users] RAT_rc1 on Pi3 a no joy > > Oh what a surprise, a PS issue with a Pi. ;) > do the following as root: > touch /etc/asterisk/firsttime > firsttime > > Or, if all you want to do is set the TZ. > dpkg-reconfigure tzdata > > > On 8/30/2017 11:08 AM, Bob Pyke wrote: >> Powersupply (sigh!!!) >> >> Asterisk is happy. Is ther a first time script for setting up time zone or > is this manual? >> Thanks, >> Bob >> >> Sent from my iPhone >> >>> On Aug 30, 2017, at 5:50 AM, Steve Zingman wrote: >>> >>> We have not had any reports of crashing on a RPI3 I have a test node > built on a RPI3 that I use to verify proper operation. >>> The ssh file is at /etc/ssh/sshd_config >>> >>> 73, Steve N4IRS >>> >>>> On 8/30/2017 8:45 AM, Bob Pyke wrote: >>>> Not able to get past the Linux continual crashing and rebooting. The > experience is quite similar on two RPi3s. It does not crash on an RPi2, > which has allowed me to poke around this build a bit. I can't locate the ssh > file for edit. This build does not seem to follow the docs.Allstarlink > website for file name and location. >>>> The original RPi build seems to work on both variants of RPi. >>>> >>>> Thanks, >>>> Bob >>>> >>>> Sent from my iPhone >>>> >>>>>> On Aug 29, 2017, at 9:42 PM, Bryan Fields > wrote: >>>>>> On 8/30/17 12:41 AM, Bob Pyke wrote: >>>>>> Asterisk does not start. >>>>> What do the logs say? Can you run asterisk in the foreground and see > what it >>>>> outputs as errors? >>>>> >>>>> -- >>>>> Bryan Fields >>>>> >>>>> 727-409-1194 - Voice >>>>> http://bryanfields.net >>>>> _______________________________________________ >>>>> App_rpt-users mailing list >>>>> App_rpt-users at lists.allstarlink.org >>>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>>> >>>>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at lists.allstarlink.org >>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at lists.allstarlink.org >>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. From k6ecm1 at gmail.com Thu Aug 31 03:05:02 2017 From: k6ecm1 at gmail.com (Bob) Date: Wed, 30 Aug 2017 20:05:02 -0700 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy References: <51a1e5a6-06b2-913b-9af1-c94ae136530f@bryanfields.net> <0df58111-a3b2-4d18-e94d-108b2ba990b5@msgstor.com> <6240F32D-6105-4A15-9937-A39A7A9636F6@gmail.com> <9baf6983-bda3-9301-1dcc-146e7101404c@msgstor.com> <8a560bb1-f210-d4f9-279f-fabe5dc2c200@msgstor.com> Message-ID: When tried again xxxxxxx:~# asterisk -rvvv Asterisk 1535, Copyright (C) 1999 - 2008 Digium, Inc. and others. Created by Mark Spencer Asterisk comes with ABSOLUTELY NO WARRANTY; type 'core show warranty' for detail s. This is free software, with components licensed under the GNU General Public License version 2 and other licenses; you are welcome to redistribute it under certain conditions. Type 'core show license' for details. ========================================================================= Unable to connect to remote asterisk (does /var/run/asterisk.ctl exist?) -----Original Message----- From: Bob [mailto:k6ecm1 at gmail.com] Sent: Wednesday, August 30, 2017 8:01 PM To: 'Users of Asterisk app_rpt' Subject: RE: [App_rpt-users] RAT_rc1 on Pi3 a no joy Verbosity was 0 and is now 3 [Aug 30 19:59:55] NOTICE[655]: app_rpt.c:22032 rpt_master: RPT thread restarted on 1901 [Aug 30 19:59:55] WARNING[655]: app_rpt.c:22044 rpt_master: rpt_thread restarted on node 1901 -- Re-Loading config for repeater 1901 -- rpt (Rx) initiating call to Radio/usb on Radio/usb == Set device 1-1.2:1.0 to usb [Aug 30 19:59:55] WARNING[693]: chan_usbradio.c:1744 hidthread: File usbradio_tune_usb.conf not found, device usb using default parameters. xxxxxxx*CLI> Disconnected from Asterisk server Executing last minute cleanups -----Original Message----- From: App_rpt-users [mailto:app_rpt-users-bounces at lists.allstarlink.org] On Behalf Of Steve Zingman Sent: Wednesday, August 30, 2017 7:55 PM To: app_rpt-users at lists.allstarlink.org Subject: Re: [App_rpt-users] RAT_rc1 on Pi3 a no joy rename usbradio_tune_usb.conf to usbradio_tune_usb.conf.save and see what happens. Check modules.conf for only the proper channel driver loaded. Steve On 08/30/2017 10:50 PM, Bob wrote: > Bob here, not out of the woods quite yet. > > I'm replacing a private node computer with a RPi3. I've started with copying > over the /etc/asterisk/*.conf files. Asterisk is crashing on me at regular > intervals. Here are the errors I'm receiving. Each time the message > "--Re-loadign config for repeater..." occurs seems to correspond with the > green light going solid instead of pulsing. > > Any ideas are appreciated. > > Thanks, > Bob > > Verbosity was 0 and is now 3 > [Aug 30 19:43:52] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:52] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:52] WARNING[794]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:54] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:54] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:54] WARNING[796]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:56] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:56] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:56] WARNING[798]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:58] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:58] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:58] WARNING[800]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:44:00] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:44:00] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:44:00] WARNING[802]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:44:02] ERROR[764]: app_rpt.c:22027 rpt_master: Continual RPT > thread restarts, killing Asterisk > > -----Original Message----- > From: App_rpt-users [mailto:app_rpt-users-bounces at lists.allstarlink.org] On > Behalf Of Steve Zingman > Sent: Wednesday, August 30, 2017 8:12 AM > To: app_rpt-users at lists.allstarlink.org > Subject: Re: [App_rpt-users] RAT_rc1 on Pi3 a no joy > > Oh what a surprise, a PS issue with a Pi. ;) > do the following as root: > touch /etc/asterisk/firsttime > firsttime > > Or, if all you want to do is set the TZ. > dpkg-reconfigure tzdata > > > On 8/30/2017 11:08 AM, Bob Pyke wrote: >> Powersupply (sigh!!!) >> >> Asterisk is happy. Is ther a first time script for setting up time zone or > is this manual? >> Thanks, >> Bob >> >> Sent from my iPhone >> >>> On Aug 30, 2017, at 5:50 AM, Steve Zingman wrote: >>> >>> We have not had any reports of crashing on a RPI3 I have a test node > built on a RPI3 that I use to verify proper operation. >>> The ssh file is at /etc/ssh/sshd_config >>> >>> 73, Steve N4IRS >>> >>>> On 8/30/2017 8:45 AM, Bob Pyke wrote: >>>> Not able to get past the Linux continual crashing and rebooting. The > experience is quite similar on two RPi3s. It does not crash on an RPi2, > which has allowed me to poke around this build a bit. I can't locate the ssh > file for edit. This build does not seem to follow the docs.Allstarlink > website for file name and location. >>>> The original RPi build seems to work on both variants of RPi. >>>> >>>> Thanks, >>>> Bob >>>> >>>> Sent from my iPhone >>>> >>>>>> On Aug 29, 2017, at 9:42 PM, Bryan Fields > wrote: >>>>>> On 8/30/17 12:41 AM, Bob Pyke wrote: >>>>>> Asterisk does not start. >>>>> What do the logs say? Can you run asterisk in the foreground and see > what it >>>>> outputs as errors? >>>>> >>>>> -- >>>>> Bryan Fields >>>>> >>>>> 727-409-1194 - Voice >>>>> http://bryanfields.net >>>>> _______________________________________________ >>>>> App_rpt-users mailing list >>>>> App_rpt-users at lists.allstarlink.org >>>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>>> >>>>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at lists.allstarlink.org >>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at lists.allstarlink.org >>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. From szingman at msgstor.com Thu Aug 31 03:07:58 2017 From: szingman at msgstor.com (Steve Zingman) Date: Wed, 30 Aug 2017 23:07:58 -0400 Subject: [App_rpt-users] RAT_rc1 on Pi3 a no joy Message-ID: <-6070554961484630192@unknownmsgid> If asterisk is not running, use asterisk -vvvcd Sent via smoke signal (Verizon) On Aug 30, 2017 11:05 PM, Bob wrote: When tried again xxxxxxx:~# asterisk -rvvv Asterisk 1535, Copyright (C) 1999 - 2008 Digium, Inc. and others. Created by Mark Spencer Asterisk comes with ABSOLUTELY NO WARRANTY; type 'core show warranty' for detail s. This is free software, with components licensed under the GNU General Public License version 2 and other licenses; you are welcome to redistribute it under certain conditions. Type 'core show license' for details. ========================================================================= Unable to connect to remote asterisk (does /var/run/asterisk.ctl exist?) -----Original Message----- From: Bob [mailto:k6ecm1 at gmail.com] Sent: Wednesday, August 30, 2017 8:01 PM To: 'Users of Asterisk app_rpt' Subject: RE: [App_rpt-users] RAT_rc1 on Pi3 a no joy Verbosity was 0 and is now 3 [Aug 30 19:59:55] NOTICE[655]: app_rpt.c:22032 rpt_master: RPT thread restarted on 1901 [Aug 30 19:59:55] WARNING[655]: app_rpt.c:22044 rpt_master: rpt_thread restarted on node 1901 -- Re-Loading config for repeater 1901 -- rpt (Rx) initiating call to Radio/usb on Radio/usb == Set device 1-1.2:1.0 to usb [Aug 30 19:59:55] WARNING[693]: chan_usbradio.c:1744 hidthread: File usbradio_tune_usb.conf not found, device usb using default parameters. xxxxxxx*CLI> Disconnected from Asterisk server Executing last minute cleanups -----Original Message----- From: App_rpt-users [mailto:app_rpt-users-bounces at lists.allstarlink.org] On Behalf Of Steve Zingman Sent: Wednesday, August 30, 2017 7:55 PM To: app_rpt-users at lists.allstarlink.org Subject: Re: [App_rpt-users] RAT_rc1 on Pi3 a no joy rename usbradio_tune_usb.conf to usbradio_tune_usb.conf.save and see what happens. Check modules.conf for only the proper channel driver loaded. Steve On 08/30/2017 10:50 PM, Bob wrote: > Bob here, not out of the woods quite yet. > > I'm replacing a private node computer with a RPi3. I've started with copying > over the /etc/asterisk/*.conf files. Asterisk is crashing on me at regular > intervals. Here are the errors I'm receiving. Each time the message > "--Re-loadign config for repeater..." occurs seems to correspond with the > green light going solid instead of pulsing. > > Any ideas are appreciated. > > Thanks, > Bob > > Verbosity was 0 and is now 3 > [Aug 30 19:43:52] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:52] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:52] WARNING[794]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:54] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:54] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:54] WARNING[796]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:56] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:56] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:56] WARNING[798]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:43:58] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:43:58] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:43:58] WARNING[800]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:44:00] NOTICE[764]: app_rpt.c:22032 rpt_master: RPT thread > restarted on 1901 > [Aug 30 19:44:00] WARNING[764]: app_rpt.c:22044 rpt_master: rpt_thread > restarted on node 1901 > -- Re-Loading config for repeater 1901 > -- rpt (Rx) initiating call to Radio/usb on Radio/usb > == Set device 1-1.2:1.0 to usb > [Aug 30 19:44:00] WARNING[802]: chan_usbradio.c:1743 hidthread: Loaded > parameter s from usbradio_tune_usb.conf for > device usb . > [Aug 30 19:44:02] ERROR[764]: app_rpt.c:22027 rpt_master: Continual RPT > thread restarts, killing Asterisk > > -----Original Message----- > From: App_rpt-users [mailto:app_rpt-users-bounces at lists.allstarlink.org] On > Behalf Of Steve Zingman > Sent: Wednesday, August 30, 2017 8:12 AM > To: app_rpt-users at lists.allstarlink.org > Subject: Re: [App_rpt-users] RAT_rc1 on Pi3 a no joy > > Oh what a surprise, a PS issue with a Pi. ;) > do the following as root: > touch /etc/asterisk/firsttime > firsttime > > Or, if all you want to do is set the TZ. > dpkg-reconfigure tzdata > > > On 8/30/2017 11:08 AM, Bob Pyke wrote: >> Powersupply (sigh!!!) >> >> Asterisk is happy. Is ther a first time script for setting up time zone or > is this manual? >> Thanks, >> Bob >> >> Sent from my iPhone >> >>> On Aug 30, 2017, at 5:50 AM, Steve Zingman wrote: >>> >>> We have not had any reports of crashing on a RPI3 I have a test node > built on a RPI3 that I use to verify proper operation. >>> The ssh file is at /etc/ssh/sshd_config >>> >>> 73, Steve N4IRS >>> >>>> On 8/30/2017 8:45 AM, Bob Pyke wrote: >>>> Not able to get past the Linux continual crashing and rebooting. The > experience is quite similar on two RPi3s. It does not crash on an RPi2, > which has allowed me to poke around this build a bit. I can't locate the ssh > file for edit. This build does not seem to follow the docs.Allstarlink > website for file name and location. >>>> The original RPi build seems to work on both variants of RPi. >>>> >>>> Thanks, >>>> Bob >>>> >>>> Sent from my iPhone >>>> >>>>>> On Aug 29, 2017, at 9:42 PM, Bryan Fields > wrote: >>>>>> On 8/30/17 12:41 AM, Bob Pyke wrote: >>>>>> Asterisk does not start. >>>>> What do the logs say? Can you run asterisk in the foreground and see > what it >>>>> outputs as errors? >>>>> >>>>> -- >>>>> Bryan Fields >>>>> >>>>> 727-409-1194 - Voice >>>>> http://bryanfields.net >>>>> _______________________________________________ >>>>> App_rpt-users mailing list >>>>> App_rpt-users at lists.allstarlink.org >>>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>>> >>>>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at lists.allstarlink.org >>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at lists.allstarlink.org >>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> To unsubscribe from this list please visit > http://lists.allstarlink.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. >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at lists.allstarlink.org >> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://lists.allstarlink.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. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at lists.allstarlink.org > http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. _______________________________________________ App_rpt-users mailing list App_rpt-users at lists.allstarlink.org http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://lists.allstarlink.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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From george at dyb.com Thu Aug 31 07:21:30 2017 From: george at dyb.com (George Csahanin) Date: Thu, 31 Aug 2017 02:21:30 -0500 Subject: [App_rpt-users] portal config with "special" requirements Message-ID: <9e79eab3-fee6-183f-0897-d69696b0e401@dyb.com> Using portal config for the first time and found an issue that there must be a work around for: I have two things I need always in rpt.conf, a node number's inside IP address 2360=radio at 192.168.1.100:4569/2360,NONE because from inside the AT&T gateway I cannot get to its public address. So for testing now I need to connect with an entry in rpt.conf under [nodes] Also I need a startup macro to connect to a node I edit this in to the file but as soon as I do a portal upload these two things go away. Is there any way for portal config to allow stuff like this? Thanks all... GeorgeC W2DB/2360 -- George Csahanin 10100 Carson Ranch Rd. Crowley, TX 76036 682-708-5710 office 401-338-0568 cel george at w2db.com -------------- next part -------------- A non-text attachment was scrubbed... Name: george.vcf Type: text/x-vcard Size: 236 bytes Desc: not available URL: