From mike at midnighteng.com Wed Jan 1 05:49:48 2014 From: mike at midnighteng.com (mike at midnighteng.com) Date: Tue, 31 Dec 2013 22:49:48 -0700 Subject: [App_rpt-users] Node Numbers 40000-40500 Message-ID: <20131231224948.71befee5dbd13c5325dd1a521b4e73ee.500d86c7f6.wbe@email06.secureserver.net> An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Wed Jan 1 06:06:08 2014 From: telesistant at hotmail.com (Jim Duuuude) Date: Tue, 31 Dec 2013 22:06:08 -0800 Subject: [App_rpt-users] Node Numbers 40000-40500 In-Reply-To: <20131231224948.71befee5dbd13c5325dd1a521b4e73ee.500d86c7f6.wbe@email06.secureserver.net> References: <20131231224948.71befee5dbd13c5325dd1a521b4e73ee.500d86c7f6.wbe@email06.secureserver.net> Message-ID: reservation potentially for "large block" assignments From: mike at midnighteng.com To: app_rpt-users at ohnosec.org Date: Tue, 31 Dec 2013 22:49:48 -0700 Subject: [App_rpt-users] Node Numbers 40000-40500 A Happy New Year to all you folks, While I "do understand" the reason to jump node numbers past 30000-39999, I was just wondering the reason we jumped from 40000 to 40500. Are these in reservation for a reason ? or a potential conflict ? Just though it would be nice to understand the jump. ...mike/kb8jnm _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From ke2n at cs.com Wed Jan 1 14:57:12 2014 From: ke2n at cs.com (Ken) Date: Wed, 1 Jan 2014 09:57:12 -0500 Subject: [App_rpt-users] allmon all full In-Reply-To: <2591E68A-B6B6-4028-B147-64D40548C123@mac.com> References: <004701cef2f8$e11e8cd0$a35ba670$@cs.com> <2591E68A-B6B6-4028-B147-64D40548C123@mac.com> Message-ID: <002601cf0701$c1d18810$45749830$@cs.com> On Dec 7th I updated the more recently-modified files from the github and went merrily on my way. But yesterday I checked and found 6.5 GB of error messages had accumulated. It seems that files on both Tim Sawyer's Allmon GitHub and Jim Dixon's SVN (for the voter files) both still have the offending "split" statement in them. It's in link.php line 11 and server.php line 29. It is enough to replace "split" with "preg_split" to make the problem go away. Perhaps Tim's "explode()" mod never got in for some reason? 73 and HNY Ken From: Tim Sawyer [mailto:tim.sawyer at mac.com] Sent: Saturday, December 07, 2013 10:28 AM To: Ken Cc: app_rpt mailing list Subject: Re: [App_rpt-users] allmon all full Thanks. I think I've updated that in a current version with explode(). -- Tim :wq On Dec 6, 2013, at 7:03 PM, Ken wrote: My box running the Allstar monitor crashed - because it ran out of disk space. I found that this was due to the error log (/var/log/httpd/error_log) filling up with a zillion messages like this one: [Fri Dec 06 21:36:28 2013] [error] [client 108.18.144.226] PHP Deprecated: Function split() is deprecated in /var/www/html/server.php on line 29, referer: http://108.18.144.226/link.php?node=28204 Line 29 of server.php has the problematical split function $arr = split("\|", trim($line)); I replaced it with $arr = preg_split("/\|/", trim($line)); There is also the same error for line 11 of link.php. After making these changes, I deleted the error log - and it has not come back. My system is running: PHP 5.3.27 httpd-2.2.3-45.el5.centos.1 73 Ken _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Wed Jan 1 15:43:45 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Wed, 01 Jan 2014 07:43:45 -0800 Subject: [App_rpt-users] allmon all full In-Reply-To: <002601cf0701$c1d18810$45749830$@cs.com> References: <004701cef2f8$e11e8cd0$a35ba670$@cs.com> <2591E68A-B6B6-4028-B147-64D40548C123@mac.com> <002601cf0701$c1d18810$45749830$@cs.com> Message-ID: <7B82ED59-F730-44E8-9219-7F2EA597E4BD@mac.com> I?m pretty sure I updated the one on Github. But I?ll verify that next opportunity. -- Tim :wq On Jan 1, 2014, at 6:57 AM, Ken wrote: > On Dec 7th I updated the more recently-modified files from the github and went merrily on my way. > But yesterday I checked and found 6.5 GB of error messages had accumulated. > > It seems that files on both Tim Sawyer?s Allmon GitHub and Jim Dixon?s SVN (for the voter files) both still have the offending ?split? statement in them. It?s in link.php line 11 and server.php line 29. It is enough to replace ?split? with ?preg_split? to make the problem go away. > > Perhaps Tim?s ?explode()? mod never got in for some reason? > > 73 and HNY > > Ken > > > From: Tim Sawyer [mailto:tim.sawyer at mac.com] > Sent: Saturday, December 07, 2013 10:28 AM > To: Ken > Cc: app_rpt mailing list > Subject: Re: [App_rpt-users] allmon all full > > Thanks. I think I?ve updated that in a current version with explode(). > -- > Tim > :wq > > On Dec 6, 2013, at 7:03 PM, Ken wrote: > > > My box running the Allstar monitor crashed ? because it ran out of disk space. > I found that this was due to the error log (/var/log/httpd/error_log) filling up with a zillion messages like this one: > > [Fri Dec 06 21:36:28 2013] [error] [client 108.18.144.226] PHP Deprecated: Function split() is deprecated in /var/www/html/server.php on line 29, referer: http://108.18.144.226/link.php?node=28204 > > Line 29 of server.php has the problematical split function > > $arr = split("\|", trim($line)); > > I replaced it with > > $arr = preg_split("/\|/", trim($line)); > > There is also the same error for line 11 of link.php. > > After making these changes, I deleted the error log ? and it has not come back. > > My system is running: > PHP 5.3.27 > httpd-2.2.3-45.el5.centos.1 > > 73 > Ken > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From g0fhmuk at gmail.com Thu Jan 2 12:45:23 2014 From: g0fhmuk at gmail.com (James Hill) Date: Thu, 2 Jan 2014 12:45:23 +0000 Subject: [App_rpt-users] Parallell Port PTT Issue Message-ID: Hi Guys, My modified CM108 suffered a catastrophic failure yesterday (one of the 3.5mm jacks broke off the board), and for the time being I've had to resort to parallell port PTT switching. It works fine - But I have an issue where when I start the node up, the PTT is being held open until such a time as the node sends a CW ID, and then it will drop after the ID. This is far from ideal, as the TX can be held open for up to 15 minutes at a time! Is there a known fix for this? or can I setup a cron/scheduler event to send a one off CWID, say 10 seconds after initialisation to make the PTT drop? If the answer is yes, then how do I do it? Thanks, James - 29681 -------------- next part -------------- An HTML attachment was scrubbed... URL: From n3fe at repeater.net Thu Jan 2 12:58:32 2014 From: n3fe at repeater.net (Corey Dean) Date: Thu, 2 Jan 2014 07:58:32 -0500 Subject: [App_rpt-users] Parallell Port PTT Issue In-Reply-To: References: Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E0485A0348960@exchange.mail.repeater.net> For now you could call a startup-macro that plays the cw id.... Corey N3FE ________________________________________ From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of James Hill [g0fhmuk at gmail.com] Sent: Thursday, January 02, 2014 7:45 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] Parallell Port PTT Issue Hi Guys, My modified CM108 suffered a catastrophic failure yesterday (one of the 3.5mm jacks broke off the board), and for the time being I've had to resort to parallell port PTT switching. It works fine - But I have an issue where when I start the node up, the PTT is being held open until such a time as the node sends a CW ID, and then it will drop after the ID. This is far from ideal, as the TX can be held open for up to 15 minutes at a time! Is there a known fix for this? or can I setup a cron/scheduler event to send a one off CWID, say 10 seconds after initialisation to make the PTT drop? If the answer is yes, then how do I do it? Thanks, James - 29681 From g0fhmuk at gmail.com Thu Jan 2 13:23:35 2014 From: g0fhmuk at gmail.com (James Hill) Date: Thu, 2 Jan 2014 13:23:35 +0000 Subject: [App_rpt-users] Parallell Port PTT Issue In-Reply-To: <4BCC91CBCFD66C4489B4BD3233140C3E0485A0348960@exchange.mail.repeater.net> References: <4BCC91CBCFD66C4489B4BD3233140C3E0485A0348960@exchange.mail.repeater.net> Message-ID: Thanks guys, all sorted! James On Thu, Jan 2, 2014 at 12:58 PM, Corey Dean wrote: > For now you could call a startup-macro that plays the cw id.... > > Corey N3FE > ________________________________________ > From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] > On Behalf Of James Hill [g0fhmuk at gmail.com] > Sent: Thursday, January 02, 2014 7:45 AM > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] Parallell Port PTT Issue > > Hi Guys, > > My modified CM108 suffered a catastrophic failure yesterday (one of the > 3.5mm jacks broke off the board), and for the time being I've had to resort > to parallell port PTT switching. > > It works fine - But I have an issue where when I start the node up, the > PTT is being held open until such a time as the node sends a CW ID, and > then it will drop after the ID. > > This is far from ideal, as the TX can be held open for up to 15 minutes at > a time! > > Is there a known fix for this? or can I setup a cron/scheduler event to > send a one off CWID, say 10 seconds after initialisation to make the PTT > drop? > > If the answer is yes, then how do I do it? > > Thanks, > > James - 29681 > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ars.w5omr at gmail.com Thu Jan 2 02:04:56 2014 From: ars.w5omr at gmail.com (Geoff) Date: Wed, 01 Jan 2014 20:04:56 -0600 Subject: [App_rpt-users] Parallell Port PTT Issue In-Reply-To: References: <4BCC91CBCFD66C4489B4BD3233140C3E0485A0348960@exchange.mail.repeater.net> Message-ID: <52C4C948.4050304@gmail.com> > > Is there a known fix for this? or can I setup a cron/scheduler > event to send a one off CWID, say 10 seconds after initialisation > to make the PTT drop? > > If the answer is yes, then how do I do it? > I have my node id straight off. it's set in rpt.conf; [wait-times] telemwait=750 idwait=1000 unkeywait=250 calltermwait=50 I like my system is -snappy-. ;-) 73 es Happy New Year ^kx -------------- next part -------------- An HTML attachment was scrubbed... URL: From cypresstower at yahoo.com Thu Jan 2 21:06:52 2014 From: cypresstower at yahoo.com (Johnny Keeker) Date: Thu, 2 Jan 2014 13:06:52 -0800 (PST) Subject: [App_rpt-users] USB-RIM Radio Interface Module Message-ID: <1388696812.11102.YahooMailNeo@web163601.mail.gq1.yahoo.com> Anyone using a USB-RIM Radio Interface Module?? I need 4 or more radio interface modules and was curious to see?what others recommend.?? JK? -------------- next part -------------- An HTML attachment was scrubbed... URL: From n8ohu at yahoo.com Fri Jan 3 00:53:42 2014 From: n8ohu at yahoo.com (Matthew Pitts) Date: Thu, 2 Jan 2014 16:53:42 -0800 (PST) Subject: [App_rpt-users] Automating node connections Message-ID: <1388710422.52649.YahooMailNeo@web141001.mail.bf1.yahoo.com> Good evening folks, I know it's probably possible, but does anyone have a specific method of connecting to specific nodes on a time schedule? I am wanting to start connecting my Echolink configured node to a specific Echolink node at a specific time, then disconnect it after a set time. Any suggestions? Matthew Pitts N8OHU AllStar Link nodes 28713, 28910, 28912, 28913 -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6ko at innercite.com Fri Jan 3 01:11:34 2014 From: kj6ko at innercite.com (KJ6KO) Date: Thu, 2 Jan 2014 17:11:34 -0800 Subject: [App_rpt-users] RTCM DC Coupling? Message-ID: <6F468045A48F4660A3B9AECC3A7C4346@KJ6KO> Is the TX OUT audio on a RTCM AC coupled or do I need to install a coupling cap on it to connect to an audio input that has DC on it (MOTO)? Thanks....Greg __________ Information from ESET NOD32 Antivirus, version of virus signature database 9244 (20140102) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Fri Jan 3 01:18:07 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Thu, 02 Jan 2014 17:18:07 -0800 Subject: [App_rpt-users] Automating node connections In-Reply-To: <1388710422.52649.YahooMailNeo@web141001.mail.bf1.yahoo.com> References: <1388710422.52649.YahooMailNeo@web141001.mail.bf1.yahoo.com> Message-ID: <2671C32C-3C3E-4C98-91CC-22B78C85301F@mac.com> It?s very possible. Look in your rpt.conf for the [scheduler] stanza. If the comments aren?t clear come back here for help. -- Tim :wq On Jan 2, 2014, at 4:53 PM, Matthew Pitts wrote: > Good evening folks, > > I know it's probably possible, but does anyone have a specific method of connecting to specific nodes on a time schedule? I am wanting to start connecting my Echolink configured node to a specific Echolink node at a specific time, then disconnect it after a set time. Any suggestions? > > Matthew Pitts > N8OHU > AllStar Link nodes 28713, 28910, 28912, 28913 > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From rpt2 at chuck.midlandsnetworking.com Fri Jan 3 01:22:23 2014 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Thu, 2 Jan 2014 19:22:23 -0600 Subject: [App_rpt-users] RTCM DC Coupling? In-Reply-To: <6F468045A48F4660A3B9AECC3A7C4346@KJ6KO> References: <6F468045A48F4660A3B9AECC3A7C4346@KJ6KO> Message-ID: There is an output coupling capacitor in the RTCM but I do not know the voltage rating. I wouldn't apply very much DC to it. On Thu, Jan 2, 2014 at 7:11 PM, KJ6KO wrote: > Is the TX OUT audio on a RTCM AC coupled or do I need to install a > coupling cap on it to connect to an audio input that has DC on it (MOTO)? > > Thanks....Greg > > > __________ Information from ESET NOD32 Antivirus, version of virus > signature database 9244 (20140102) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tdanley at suddenlink.net Fri Jan 3 01:24:13 2014 From: tdanley at suddenlink.net (Tad Danley) Date: Thu, 02 Jan 2014 19:24:13 -0600 Subject: [App_rpt-users] USB-RIM Radio Interface Module In-Reply-To: <1388696812.11102.YahooMailNeo@web163601.mail.gq1.yahoo.com> References: <1388696812.11102.YahooMailNeo@web163601.mail.gq1.yahoo.com> Message-ID: <52C6113D.6000807@suddenlink.net> Hi Johnny, I am using two of the Repeater-Builder USB-RIMs - one connected to a Kenwood TK-690H and the other connected to a Midland 70-0520C. I've been active on AllStar for about 2 months and they have performed flawlessly. http://www.repeater-builder.com/products/usb-rim.html Good luck and 73, Tad Danley, K3TD On 1/2/2014 3:06 PM, Johnny Keeker wrote: > Anyone using a USB-RIM Radio Interface Module? I need 4 or more radio > interface modules and was curious to see what others recommend. > JK > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From gregn1 at cox.net Fri Jan 3 02:05:55 2014 From: gregn1 at cox.net (Greg Noneman) Date: Thu, 2 Jan 2014 18:05:55 -0800 Subject: [App_rpt-users] RTCM DC Coupling? In-Reply-To: <9DBk1n00f4KhgcZ01DBmFD> References: <9DBk1n00f4KhgcZ01DBmFD> Message-ID: <8D9733C9-1AD5-4092-BAA9-FB20F68FB5E1@cox.net> Greg, Assuming the production SMT version is like the original through-hole version, the TX OUT pin is AC coupled. There is a 10 uF non-polarized capacitor and 33 ohm resistor between the output op amp and the interface connector. 73, Greg WB6ZSU On Jan 2, 2014, at 5:11 PM, KJ6KO wrote: > Is the TX OUT audio on a RTCM AC coupled or do I need to install a coupling cap on it to connect to an audio input that has DC on it (MOTO)? > > Thanks....Greg > > > __________ Information from ESET NOD32 Antivirus, version of virus signature database 9244 (20140102) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From rogerberchtold at gmail.com Fri Jan 3 15:29:57 2014 From: rogerberchtold at gmail.com (Roger Berchtold) Date: Fri, 3 Jan 2014 07:29:57 -0800 Subject: [App_rpt-users] Invert DMK URI COR_DET Message-ID: I'm wiring a radio to URI. The standard URI COR_DET input expects a 0.0 voltage when squelch and PL are detected. This radio COR_DET goes positive when active. What directory is the URI conf file? Thanks Roger -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Fri Jan 3 16:04:56 2014 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Fri, 3 Jan 2014 11:04:56 -0500 Subject: [App_rpt-users] Invert DMK URI COR_DET In-Reply-To: References: Message-ID: <90844054-A18B-4207-B2C6-8FB929EACF5E@bdboyle.com> where all the others ones are per the documentation. you want to specify an inverted signal. -- Bryan Sent from my iPad > On Jan 3, 2014, at 10:29 AM, Roger Berchtold wrote: > > I?m wiring a radio to URI. > The standard URI COR_DET input expects a 0.0 voltage when squelch and PL are detected. > This radio COR_DET goes positive when active. > What directory is the URI conf file? > > Thanks > Roger > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Fri Jan 3 16:07:13 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Fri, 03 Jan 2014 08:07:13 -0800 Subject: [App_rpt-users] Invert DMK URI COR_DET In-Reply-To: References: Message-ID: <3AB1611C-3AB2-46B4-984B-14E6FCF864AE@mac.com> The directory is /etc/asterisk. The file is either simpleusp.conf or usbradio.conf depending on your channel driver. The parameters are carrierfrom= and ctcssfrom= Also please see http://ohnosec.org/drupal/search/node/ctcssfrom -- Tim :wq On Jan 3, 2014, at 7:29 AM, Roger Berchtold wrote: > I?m wiring a radio to URI. > The standard URI COR_DET input expects a 0.0 voltage when squelch and PL are detected. > This radio COR_DET goes positive when active. > What directory is the URI conf file? > > Thanks > Roger > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk6ecm at gmail.com Fri Jan 3 21:45:11 2014 From: kk6ecm at gmail.com (Bob) Date: Fri, 3 Jan 2014 13:45:11 -0800 Subject: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node In-Reply-To: References: Message-ID: <9A858D9C93934DAA8837FC1FE0CBC019@ThePykesHP> My node 28765 seems to be operating correctly, shows up green on the Allstar node list, and can connect to other nodes, but seems to have an issue with incoming connections. I tried today connecting node 27178 to my node, and 27178 sounded like a calling ring as heard in the receiver of a phone, then reported connection failed. When I connect 28765 to 27178 it worked fine, both sides reporting the connection. Any thoughts? Thanks, Bob kk6ecm -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Fri Jan 3 21:59:10 2014 From: doug at crompton.com (Doug Crompton) Date: Fri, 3 Jan 2014 16:59:10 -0500 Subject: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node In-Reply-To: <9A858D9C93934DAA8837FC1FE0CBC019@ThePykesHP> References: , <9A858D9C93934DAA8837FC1FE0CBC019@ThePykesHP> Message-ID: Do you have port 4569 forwarded to your Allstar server? 73 Doug WA3DSP http://www.crompton.com/hamradio From: kk6ecm at gmail.com To: app_rpt-users at ohnosec.org Date: Fri, 3 Jan 2014 13:45:11 -0800 Subject: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node My node 28765 seems to be operating correctly, shows up green on the Allstar node list, and can connect to other nodes, but seems to have an issue with incoming connections. I tried today connecting node 27178 to my node, and 27178 sounded like a calling ring as heard in the receiver of a phone, then reported connection failed. When I connect 28765 to 27178 it worked fine, both sides reporting the connection. Any thoughts? Thanks, Bob kk6ecm _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk6ecm at gmail.com Sat Jan 4 00:01:22 2014 From: kk6ecm at gmail.com (Bob) Date: Fri, 3 Jan 2014 16:01:22 -0800 Subject: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node In-Reply-To: References: , <9A858D9C93934DAA8837FC1FE0CBC019@ThePykesHP> Message-ID: Yes, also, /var/lib/asterisk/rpt_extnodes has about 1155 nodes listed _____ From: hotmail_97fc649978f54bf0 at live.com [mailto:hotmail_97fc649978f54bf0 at live.com] On Behalf Of Doug Crompton Sent: Friday, January 03, 2014 1:59 PM To: Bob Cc: app_rpt-users at ohnosec.org Subject: RE: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node Do you have port 4569 forwarded to your Allstar server? 73 Doug WA3DSP http://www.crompton.com/hamradio _____ From: kk6ecm at gmail.com To: app_rpt-users at ohnosec.org Date: Fri, 3 Jan 2014 13:45:11 -0800 Subject: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node My node 28765 seems to be operating correctly, shows up green on the Allstar node list, and can connect to other nodes, but seems to have an issue with incoming connections. I tried today connecting node 27178 to my node, and 27178 sounded like a calling ring as heard in the receiver of a phone, then reported connection failed. When I connect 28765 to 27178 it worked fine, both sides reporting the connection. Any thoughts? Thanks, Bob kk6ecm _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk6ecm at gmail.com Sat Jan 4 00:04:16 2014 From: kk6ecm at gmail.com (Bob) Date: Fri, 3 Jan 2014 16:04:16 -0800 Subject: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node References: , <9A858D9C93934DAA8837FC1FE0CBC019@ThePykesHP> Message-ID: Just noticed CLI> [Jan 3 23:46:18] WARNING[24350]: chan_iax2.c:921 jb_warning_output: Resyncing the jb. last_delay -1, this delay 852034, threshold 1026, new offset -851999 [Jan 3 23:59:06] WARNING[24350]: chan_iax2.c:921 jb_warning_output: Resyncing the jb. last_delay -1, this delay 786416, threshold 1024, new offset -1638415 [Jan 4 00:00:35] WARNING[24348]: chan_iax2.c:921 jb_warning_output: Resyncing the jb. last_delay 0, this delay -1638345, threshold 1074, new offset -70 Thanks, Bob kk6ecm _____ From: Bob [mailto:kk6ecm at gmail.com] Sent: Friday, January 03, 2014 4:01 PM Cc: 'app_rpt-users at ohnosec.org' Subject: RE: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node Yes, also, /var/lib/asterisk/rpt_extnodes has about 1155 nodes listed _____ From: hotmail_97fc649978f54bf0 at live.com [mailto:hotmail_97fc649978f54bf0 at live.com] On Behalf Of Doug Crompton Sent: Friday, January 03, 2014 1:59 PM To: Bob Cc: app_rpt-users at ohnosec.org Subject: RE: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node Do you have port 4569 forwarded to your Allstar server? 73 Doug WA3DSP http://www.crompton.com/hamradio _____ From: kk6ecm at gmail.com To: app_rpt-users at ohnosec.org Date: Fri, 3 Jan 2014 13:45:11 -0800 Subject: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node My node 28765 seems to be operating correctly, shows up green on the Allstar node list, and can connect to other nodes, but seems to have an issue with incoming connections. I tried today connecting node 27178 to my node, and 27178 sounded like a calling ring as heard in the receiver of a phone, then reported connection failed. When I connect 28765 to 27178 it worked fine, both sides reporting the connection. Any thoughts? Thanks, Bob kk6ecm _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk6ecm at gmail.com Sat Jan 4 00:09:46 2014 From: kk6ecm at gmail.com (Bob) Date: Fri, 3 Jan 2014 16:09:46 -0800 Subject: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node In-Reply-To: References: , <9A858D9C93934DAA8837FC1FE0CBC019@ThePykesHP> Message-ID: Yes, also, /var/lib/asterisk/rpt_extnodes has about 1155 nodes listed Just noticed CLI> [Jan 3 23:46:18] WARNING[24350]: chan_iax2.c:921 jb_warning_output: Resyncing the jb. last_delay -1, this delay 852034, threshold 1026, new offset -851999 [Jan 3 23:59:06] WARNING[24350]: chan_iax2.c:921 jb_warning_output: Resyncing the jb. last_delay -1, this delay 786416, threshold 1024, new offset -1638415 [Jan 4 00:00:35] WARNING[24348]: chan_iax2.c:921 jb_warning_output: Resyncing the jb. last_delay 0, this delay -1638345, threshold 1074, new offset -70 Not sure what it means??? Thanks, Bob kk6ecm _____ From: hotmail_97fc649978f54bf0 at live.com [mailto:hotmail_97fc649978f54bf0 at live.com] On Behalf Of Doug Crompton Sent: Friday, January 03, 2014 1:59 PM To: Bob Cc: app_rpt-users at ohnosec.org Subject: RE: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node Do you have port 4569 forwarded to your Allstar server? 73 Doug WA3DSP http://www.crompton.com/hamradio _____ From: kk6ecm at gmail.com To: app_rpt-users at ohnosec.org Date: Fri, 3 Jan 2014 13:45:11 -0800 Subject: [App_rpt-users] Rreceive incoming connection fail from other All* Link Node My node 28765 seems to be operating correctly, shows up green on the Allstar node list, and can connect to other nodes, but seems to have an issue with incoming connections. I tried today connecting node 27178 to my node, and 27178 sounded like a calling ring as heard in the receiver of a phone, then reported connection failed. When I connect 28765 to 27178 it worked fine, both sides reporting the connection. Any thoughts? Thanks, Bob kk6ecm _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk4rjy at gmail.com Sun Jan 5 01:38:09 2014 From: kk4rjy at gmail.com (Donny Parent Jr.) Date: Sat, 4 Jan 2014 20:38:09 -0500 Subject: [App_rpt-users] How to temp disable and enable Echo link Message-ID: Can someone tell me what I need to add to my RPT.config file and scheduler to allow me to connect to a node without my EchoLink and then disconnects with EchoLink turned back on. I've was told that I can make a cop command to disallow all incoming connections and put it into telemetry and make a macro's and put that in my scheduler but I'm just not sure how to do all that if someone can explain it a little easier for me so I know how to do it I would really like to use my echo link as well as Allstar. Thanks and Happy New Year Donny KK4RJY Sent from my iPhone5 From Bryan at bryanfields.net Sun Jan 5 02:47:44 2014 From: Bryan at bryanfields.net (Bryan Fields) Date: Sat, 04 Jan 2014 21:47:44 -0500 Subject: [App_rpt-users] old app_rpt archives Message-ID: <52C8C7D0.6030101@bryanfields.net> Back from 2005-2008 Illiana.net hosted this list. I've had my former business partner (KB9YEJ) dig up the HD they were on and I've moved them online here. http://keekles.org/~bryan/archives/app_rpt/ or as a single tarball http://keekles.org/~bryan/archives/app_rpt.tar.bz2 I still feel bad about the service outage with little notice when we sold the company, but it was beyond our control. 73's -- Bryan Fields 727-409-1194 - Voice 727-214-2508 - Fax http://bryanfields.net From tim.sawyer at mac.com Sun Jan 5 16:52:12 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Sun, 05 Jan 2014 08:52:12 -0800 Subject: [App_rpt-users] Lat/Lng Fixed Message-ID: <321805D9-B7EE-4591-B4B0-1AE585675290@mac.com> The broken latitude/longitude selection has been fixed. There is a whole new map with the usual Google Maps features. -- Tim :wq From doug at crompton.com Sun Jan 5 18:08:24 2014 From: doug at crompton.com (Doug Crompton) Date: Sun, 5 Jan 2014 13:08:24 -0500 Subject: [App_rpt-users] Lat/Lng Fixed In-Reply-To: <321805D9-B7EE-4591-B4B0-1AE585675290@mac.com> References: <321805D9-B7EE-4591-B4B0-1AE585675290@mac.com> Message-ID: Tim, I can confirm that. Works great! Thanks, 73 Doug WA3DSP http://www.crompton.com/hamradio > From: tim.sawyer at mac.com > Date: Sun, 5 Jan 2014 08:52:12 -0800 > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] Lat/Lng Fixed > > The broken latitude/longitude selection has been fixed. There is a whole new map with the usual Google Maps features. > -- > Tim > :wq > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Sun Jan 5 20:19:07 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Sun, 05 Jan 2014 12:19:07 -0800 Subject: [App_rpt-users] Lat/Lng Fixed In-Reply-To: References: <321805D9-B7EE-4591-B4B0-1AE585675290@mac.com> Message-ID: <78A36497-9A78-43A1-AA8E-032D35607888@mac.com> You?re welcome. It took a while to get this done because we had to set up a new development server (somehow the prior one got trashed). While I was in there I updated from GoogleMaps API v2 to v3, hence the new look and features. -- Tim :wq On Jan 5, 2014, at 10:08 AM, Doug Crompton wrote: > Tim, > > I can confirm that. Works great! > > Thanks, > > > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > > > > From: tim.sawyer at mac.com > > Date: Sun, 5 Jan 2014 08:52:12 -0800 > > To: app_rpt-users at ohnosec.org > > Subject: [App_rpt-users] Lat/Lng Fixed > > > > The broken latitude/longitude selection has been fixed. There is a whole new map with the usual Google Maps features. > > -- > > Tim > > :wq > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rpt2 at chuck.midlandsnetworking.com Sun Jan 5 22:08:57 2014 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Sun, 5 Jan 2014 16:08:57 -0600 Subject: [App_rpt-users] Kerchunks counter question?? Message-ID: I have noticed the kerchunks counter on my repeater is always zero even though the repeater gets kerchunked often. Is there something that needs to be configured to get the repeater to count kerchunks? Or is the Kerchunks counter a feature that was never implemented? Chuck, CCIE2285, WB9UUS -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeppelin.1 at netzero.com Sun Jan 5 23:02:34 2014 From: zeppelin.1 at netzero.com (zeppelin.1 at netzero.com) Date: Sun, 5 Jan 2014 23:02:34 GMT Subject: [App_rpt-users] Lat/ Long Message-ID: <20140105.180234.11714.0@webmail06.dca.untd.com> Thank You Tim; 73 Anton /kc2rqr Node 29103 ---------- Original Message ---------- From: app_rpt-users-request at ohnosec.org To: app_rpt-users at ohnosec.org Subject: App_rpt-users Digest, Vol 59, Issue 7 Date: Sun, 05 Jan 2014 12:00:02 -0500 Send App_rpt-users mailing list submissions to app_rpt-users at ohnosec.org To subscribe or unsubscribe via the World Wide Web, visit http://ohnosec.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 ohnosec.org You can reach the person managing the list at app_rpt-users-owner at ohnosec.org When replying, please edit your Subject line so it is more specific than "Re: Contents of App_rpt-users digest..." Today's Topics: 1. How to temp disable and enable Echo link (Donny Parent Jr.) 2. old app_rpt archives (Bryan Fields) 3. Lat/Lng Fixed (Tim Sawyer) ---------------------------------------------------------------------- Message: 1 Date: Sat, 4 Jan 2014 20:38:09 -0500 From: "Donny Parent Jr." To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] How to temp disable and enable Echo link Message-ID: Content-Type: text/plain; charset=us-ascii Can someone tell me what I need to add to my RPT.config file and scheduler to allow me to connect to a node without my EchoLink and then disconnects with EchoLink turned back on. I've was told that I can make a cop command to disallow all incoming connections and put it into telemetry and make a macro's and put that in my scheduler but I'm just not sure how to do all that if someone can explain it a little easier for me so I know how to do it I would really like to use my echo link as well as Allstar. Thanks and Happy New Year Donny KK4RJY Sent from my iPhone5 ------------------------------ Message: 2 Date: Sat, 04 Jan 2014 21:47:44 -0500 From: Bryan Fields To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] old app_rpt archives Message-ID: <52C8C7D0.6030101 at bryanfields.net> Content-Type: text/plain; charset=ISO-8859-1 Back from 2005-2008 Illiana.net hosted this list. I've had my former business partner (KB9YEJ) dig up the HD they were on and I've moved them online here. http://keekles.org/~bryan/archives/app_rpt/ or as a single tarball http://keekles.org/~bryan/archives/app_rpt.tar.bz2 I still feel bad about the service outage with little notice when we sold the company, but it was beyond our control. 73's -- Bryan Fields 727-409-1194 - Voice 727-214-2508 - Fax http://bryanfields.net ------------------------------ Message: 3 Date: Sun, 05 Jan 2014 08:52:12 -0800 From: Tim Sawyer To: app_rpt mailing list Subject: [App_rpt-users] Lat/Lng Fixed Message-ID: <321805D9-B7EE-4591-B4B0-1AE585675290 at mac.com> Content-Type: text/plain; charset=us-ascii The broken latitude/longitude selection has been fixed. There is a whole new map with the usual Google Maps features. -- Tim :wq ------------------------------ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users End of App_rpt-users Digest, Vol 59, Issue 7 ******************************************** ____________________________________________________________ 5 Ways to LOWER blood sugar 1 EASY tip to increase fat-burning, lower blood sugar & decrease fat storage http://thirdpartyoffers.netzero.net/TGL3231/52c9e4d7ac97d64d704ecst01duc From doug at crompton.com Mon Jan 6 01:49:58 2014 From: doug at crompton.com (Doug Crompton) Date: Sun, 5 Jan 2014 20:49:58 -0500 Subject: [App_rpt-users] Kerchunks counter question?? In-Reply-To: References: Message-ID: Well I have the opposite problem here. My counter seems to count normal transmissions or at least it often does. I am not sure how it is setup. Maybe to detect transmissions without audio or of a certain duration. You could have very short transmissions with audio and longer transmissions without. I am not sure how useful it really is. I never really paid attention to it until you mentioned it. 73 Doug WA3DSP http://www.crompton.com/hamradio From: rpt2 at chuck.midlandsnetworking.com Date: Sun, 5 Jan 2014 16:08:57 -0600 To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] Kerchunks counter question?? I have noticed the kerchunks counter on my repeater is always zero even though the repeater gets kerchunked often. Is there something that needs to be configured to get the repeater to count kerchunks? Or is the Kerchunks counter a feature that was never implemented? Chuck, CCIE2285, WB9UUS _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb1ncj at gmail.com Mon Jan 6 13:38:06 2014 From: kb1ncj at gmail.com (Greg) Date: Mon, 06 Jan 2014 08:38:06 -0500 Subject: [App_rpt-users] allmon In-Reply-To: References: Message-ID: <52CAB1BE.8080202@gmail.com> Any link providing clear instructions of how to install Allmon on a local Acid install? Thanks, Greg From doug at crompton.com Mon Jan 6 14:48:39 2014 From: doug at crompton.com (Doug Crompton) Date: Mon, 6 Jan 2014 09:48:39 -0500 Subject: [App_rpt-users] allmon In-Reply-To: <52CAB1BE.8080202@gmail.com> References: , <52CAB1BE.8080202@gmail.com> Message-ID: Greg, I assume you read this - https://github.com/tsawyer/allmon/blob/master/README I installed it from this readme and I am sure others have so if you have specific questions ask. You need to install httpd and python in the basic acid release if you have not already. Google is your friend to do that and other system things. 73 Doug WA3DSP http://www.crompton.com/hamradio > Date: Mon, 6 Jan 2014 08:38:06 -0500 > From: kb1ncj at gmail.com > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] allmon > > Any link providing clear instructions of how to install Allmon on a > local Acid install? > Thanks, > Greg > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Mon Jan 6 14:57:59 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Mon, 06 Jan 2014 06:57:59 -0800 Subject: [App_rpt-users] allmon In-Reply-To: <52CAB1BE.8080202@gmail.com> References: <52CAB1BE.8080202@gmail.com> Message-ID: Install instructions are in the README, what?s not clear? -- Tim :wq On Jan 6, 2014, at 5:38 AM, Greg wrote: > Any link providing clear instructions of how to install Allmon on a local Acid install? > Thanks, > Greg > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From markjohnston73 at gmail.com Mon Jan 6 16:48:57 2014 From: markjohnston73 at gmail.com (Mark Johnston) Date: Mon, 6 Jan 2014 08:48:57 -0800 Subject: [App_rpt-users] allmon causing packet loss Message-ID: [root at KC7DMF allmon]# uptime 08:44:31 up 10:32, 1 user, load average: 5.05, 13.11, 10.29 any idea why when allmon is running the load avg is so high? Do I need something a lot more then an intel Atom @1.86Ghz to run this with allstar? I also end up with severe packet loss... -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Mon Jan 6 17:28:51 2014 From: doug at crompton.com (Doug Crompton) Date: Mon, 6 Jan 2014 12:28:51 -0500 Subject: [App_rpt-users] allmon causing packet loss In-Reply-To: References: Message-ID: I had the same problem. The update was happening much too quick and it took a lot of resources. I changes in server.php the following: $response = getNode($fp, $node); print ""; printNode($node, $response); print "
"; } sleep(1); #usleep(10000); exit; This updates once a second. You can try more often using usleep with higher numbers. . 73 Doug WA3DSP http://www.crompton.com/hamradio Date: Mon, 6 Jan 2014 08:48:57 -0800 From: markjohnston73 at gmail.com To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] allmon causing packet loss [root at KC7DMF allmon]# uptime 08:44:31 up 10:32, 1 user, load average: 5.05, 13.11, 10.29 any idea why when allmon is running the load avg is so high? Do I need something a lot more then an intel Atom @1.86Ghz to run this with allstar? I also end up with severe packet loss... _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb1ncj at gmail.com Mon Jan 6 18:12:45 2014 From: kb1ncj at gmail.com (Greg) Date: Mon, 06 Jan 2014 13:12:45 -0500 Subject: [App_rpt-users] allmon In-Reply-To: References: , <52CAB1BE.8080202@gmail.com> Message-ID: <52CAF21D.9030707@gmail.com> Did, yes. I find instructions unclear though. On 01/06/2014 09:48 AM, Doug Crompton wrote: > Greg, > > I assume you read this - > > https://github.com/tsawyer/allmon/blob/master/README > > I installed it from this readme and I am sure others have so if you > have specific questions ask. > > You need to install httpd and python in the basic acid release if you > have not already. Google is your friend to do that and other system > things. > > *73 Doug > WA3DSP > http://www.crompton.com/hamradio* > > > > Date: Mon, 6 Jan 2014 08:38:06 -0500 > > From: kb1ncj at gmail.com > > To: app_rpt-users at ohnosec.org > > Subject: [App_rpt-users] allmon > > > > Any link providing clear instructions of how to install Allmon on a > > local Acid install? > > Thanks, > > Greg > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Mon Jan 6 22:02:05 2014 From: doug at crompton.com (Doug Crompton) Date: Mon, 6 Jan 2014 17:02:05 -0500 Subject: [App_rpt-users] 'lsnodes' node status and control web viewer Message-ID: I have written a Perl script web viewer which shows status of your local Allstar nodes and allows app_rpt command control as you would have from your radio. You can access this locally or from anywhere on the Internet. This is an effective but rather simple viewer which I find very useful and thats why I wanted to share it with you. I wanted something that was easy to modify and understand. I have been using this for several weeks but consider it beta code. Installation is a little involved but I think I have supplied good instructions on how to implement it. It requires httpd, PHP, and Perl on your server. Acid comes with Perl but unless you have installed httpd and PHP for other applications like Allmon you will have to install them. Included in the package is a simple command version to show connected nodes called 'lsnodes'. I welcome your comments and suggestions and I am sure there will be some evolution of the code and install instructions. I hope it is useful to you. More info, install instructions, screenshots, and the tarball are at - http://crompton.com/hamradio/allstar/lsnodes.html I primarily use firefox but I tested it with Chrome and it seems to work fine. I would not recommend explorer. Actually I wouldn't recommend explorer for anything! In firefox you can use the zoom feature to change the text size to suit your needs. It is also nice to have multiple tabs open if you have more than one node. 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc7rjk at comcast.net Mon Jan 6 22:46:43 2014 From: kc7rjk at comcast.net (Ross Johnson) Date: Mon, 6 Jan 2014 14:46:43 -0800 Subject: [App_rpt-users] 'lsnodes' node status and control web viewer In-Reply-To: References: Message-ID: <86B554D0E9E24D588D22A15ED31DABF9@SamUltraBook> Nice work Doug, Will or can this be setup to display (local) private 1xxx node status as well? Ross www.kc7rjk.net From: Doug Crompton Sent: Monday, January 6, 2014 2:02 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] 'lsnodes' node status and control web viewer I have written a Perl script web viewer which shows status of your local Allstar nodes and allows app_rpt command control as you would have from your radio. You can access this locally or from anywhere on the Internet. This is an effective but rather simple viewer which I find very useful and thats why I wanted to share it with you. I wanted something that was easy to modify and understand. I have been using this for several weeks but consider it beta code. Installation is a little involved but I think I have supplied good instructions on how to implement it. It requires httpd, PHP, and Perl on your server. Acid comes with Perl but unless you have installed httpd and PHP for other applications like Allmon you will have to install them. Included in the package is a simple command version to show connected nodes called 'lsnodes'. I welcome your comments and suggestions and I am sure there will be some evolution of the code and install instructions. I hope it is useful to you. More info, install instructions, screenshots, and the tarball are at - http://crompton.com/hamradio/allstar/lsnodes.html I primarily use firefox but I tested it with Chrome and it seems to work fine. I would not recommend explorer. Actually I wouldn't recommend explorer for anything! In firefox you can use the zoom feature to change the text size to suit your needs. It is also nice to have multiple tabs open if you have more than one node. 73 Doug WA3DSP http://www.crompton.com/hamradio -------------------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From anthony at olivero.us Mon Jan 6 23:22:36 2014 From: anthony at olivero.us (Tony Olivero) Date: Mon, 6 Jan 2014 17:22:36 -0600 Subject: [App_rpt-users] Execute Schedule Only If Certain Conditions are Met In-Reply-To: References: Message-ID: Hi all: As I've been playing with a node I finally got set up running on a Sheevaplug I was wondering if it's possible to schedule events, but only have them fire if conditions are met? I can think of a few ways to use this, but a quick example: schedule an hourly time announcement followed by a recorded announcement file about the club meeting that night, but do not allow it to play if RPT_TXKEYED. In other words, we don't want the announcement to play over someone talking, whether they be on a link or a local receiver. I can see how to check variables in the event management system, but I don't quite know how, or if, variables can be tied into the scheduler. The best option I can see for conditional events would be to go outside app_rpt and use cron and asterisk -rx. Using a shell script it might be possible to read in the node channel vars and fire off the desired macro through a cli command. This might also allow you to periodically check to see if the node is still in transmit, say every 15 seconds for 15 minutes, and if the node goes quiet play the announcement. If it never does, just forget about it for that hour. This is maybe a simplistic example, but I'm trying to learn the intricacies of app_rpt with the simple stuff :). Thanks for any pointers. 73, Tony AD9O From doug at crompton.com Tue Jan 7 00:57:16 2014 From: doug at crompton.com (Doug Crompton) Date: Mon, 6 Jan 2014 19:57:16 -0500 Subject: [App_rpt-users] 'lsnodes' node status and control web viewer In-Reply-To: References: , <86B554D0E9E24D588D22A15ED31DABF9@SamUltraBook>, Message-ID: Ross, I looked in the database and it starts at node 2000 and obviously local private nodes would not be there so the local nodes would show the node but say 'no info' for the rest of the data because it would not be in the database. If you wanted something to show for the local nodes you could create a local database with the same format as the public one and then at each grab of the public database append it to your local database. The "database" is nothing more than a text file with four fields separated by a vertical bar one entry per line. Node|Call|Frequency|Location 27225|WA3DSP|446.1 Simplex|Richboro, PA 73 Doug WA3DSP http://www.crompton.com/hamradio From: kc7rjk at comcast.net To: app_rpt-users at ohnosec.org Date: Mon, 6 Jan 2014 14:46:43 -0800 Subject: Re: [App_rpt-users] 'lsnodes' node status and control web viewer Nice work Doug, Will or can this be setup to display (local) private 1xxx node status as well? Ross www.kc7rjk.net From: Doug Crompton Sent: Monday, January 6, 2014 2:02 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] 'lsnodes' node status and control web viewer I have written a Perl script web viewer which shows status of your local Allstar nodes and allows app_rpt command control as you would have from your radio. You can access this locally or from anywhere on the Internet. This is an effective but rather simple viewer which I find very useful and thats why I wanted to share it with you. I wanted something that was easy to modify and understand. I have been using this for several weeks but consider it beta code. Installation is a little involved but I think I have supplied good instructions on how to implement it. It requires httpd, PHP, and Perl on your server. Acid comes with Perl but unless you have installed httpd and PHP for other applications like Allmon you will have to install them. Included in the package is a simple command version to show connected nodes called 'lsnodes'. I welcome your comments and suggestions and I am sure there will be some evolution of the code and install instructions. I hope it is useful to you. More info, install instructions, screenshots, and the tarball are at - http://crompton.com/hamradio/allstar/lsnodes.html I primarily use firefox but I tested it with Chrome and it seems to work fine. I would not recommend explorer. Actually I wouldn't recommend explorer for anything! In firefox you can use the zoom feature to change the text size to suit your needs. It is also nice to have multiple tabs open if you have more than one node. 73 Doug WA3DSP http://www.crompton.com/hamradio _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From brett.friermood at gmail.com Tue Jan 7 02:40:22 2014 From: brett.friermood at gmail.com (Brett Friermood) Date: Mon, 6 Jan 2014 20:40:22 -0600 Subject: [App_rpt-users] Execute Schedule Only If Certain Conditions are Met In-Reply-To: References: Message-ID: I haven't gotten a chance to delve into just how much info is available through the Asterisk command line, but that's the way I would go. Use either cron or the scheduler to call an external script which accesses the command line and views the variables, then calls whatever commands or macros. And once you have a script running externally you can really do some interesting stuff as you observed because it is completely external to the asterisk processes. That's the beauty of linux being the underlying OS and a glimpse at how it can be so powerful yet still stay flexible. Everything can be broken down to simple scripts. Even very complex operations, such as the linux boot process, can just be a sequence of scripts written to do only a single small task and then call the next. Brett KQ9N On Mon, Jan 6, 2014 at 5:22 PM, Tony Olivero wrote: > Hi all: > > As I've been playing with a node I finally got set up running on a > Sheevaplug I was wondering if it's possible to schedule events, but > only have them fire if conditions are met? > > I can think of a few ways to use this, but a quick example: schedule > an hourly time announcement followed by a recorded announcement file > about the club meeting that night, but do not allow it to play if > RPT_TXKEYED. In other words, we don't want the announcement to play > over someone talking, whether they be on a link or a local receiver. I > can see how to check variables in the event management system, but I > don't quite know how, or if, variables can be tied into the scheduler. > > The best option I can see for conditional events would be to go > outside app_rpt and use cron and asterisk -rx. Using a shell script it > might be possible to read in the node channel vars and fire off the > desired macro through a cli command. This might also allow you to > periodically check to see if the node is still in transmit, say every > 15 seconds for 15 minutes, and if the node goes quiet play the > announcement. If it never does, just forget about it for that hour. > > This is maybe a simplistic example, but I'm trying to learn the > intricacies of app_rpt with the simple stuff :). > > Thanks for any pointers. > > 73, > Tony AD9O > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From markjohnston73 at gmail.com Tue Jan 7 07:49:10 2014 From: markjohnston73 at gmail.com (Mark Johnston) Date: Mon, 6 Jan 2014 23:49:10 -0800 Subject: [App_rpt-users] allmon causing packet loss In-Reply-To: References: Message-ID: Thanks Doug, that works well - not sure why anyone would want it to sleep 0.01 seconds that's just way too fast, not sure my eyes could even catch it, lol "Got Root?" How many software engineers does it take to change a light bulb? *None. It's a hardware problem.* Unix is user friendly. It's just very particular about who it's friends are. WINDOWS: Will Install Needless Data On Whole System MICROSOFT: Most Intelligent Customers Realize Our Software Only Fools Teenagers. A ntennas P oorly P laced L acks E ngineering The best way to accelerate a computer running Windows is at 9.81 m/s?. *"I get paid to support Windows, I use Linux to get work done."* On Mon, Jan 6, 2014 at 9:28 AM, Doug Crompton wrote: > I had the same problem. The update was happening much too quick and it > took a lot of resources. > > I changes in server.php the following: > > $response = getNode($fp, $node); > print ""; > printNode($node, $response); > print "
"; > } > sleep(1); > #usleep(10000); > exit; > > This updates once a second. You can try more often using usleep with > higher numbers. . > > > > *73 DougWA3DSPhttp://www.crompton.com/hamradio > * > > > ------------------------------ > Date: Mon, 6 Jan 2014 08:48:57 -0800 > From: markjohnston73 at gmail.com > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] allmon causing packet loss > > > [root at KC7DMF allmon]# uptime > 08:44:31 up 10:32, 1 user, load average: 5.05, 13.11, 10.29 > > any idea why when allmon is running the load avg is so high? > Do I need something a lot more then an intel Atom @1.86Ghz to run this > with allstar? > > I also end up with severe packet loss... > > _______________________________________________ App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb1ncj at gmail.com Tue Jan 7 10:11:19 2014 From: kb1ncj at gmail.com (Greg) Date: Tue, 07 Jan 2014 05:11:19 -0500 Subject: [App_rpt-users] allmon question In-Reply-To: References: Message-ID: <52CBD2C7.8080108@gmail.com> Thanks to the help of one sending me a comprehensive set of instructions I do have a remote web server with Allmon functional. Now I am wondering if there is any capability to see recent (not active) connections with Allmon. I suppose this is like CDR in a similar asterisk based PBX. Thanks, Greg From kb1ncj at gmail.com Tue Jan 7 10:27:32 2014 From: kb1ncj at gmail.com (Greg) Date: Tue, 07 Jan 2014 05:27:32 -0500 Subject: [App_rpt-users] another allmon question In-Reply-To: <52CBD2C7.8080108@gmail.com> References: <52CBD2C7.8080108@gmail.com> Message-ID: <52CBD694.2010903@gmail.com> I am also wondering of the use of "Permanent" check box. From tim.sawyer at mac.com Tue Jan 7 15:09:09 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Tue, 07 Jan 2014 07:09:09 -0800 Subject: [App_rpt-users] another allmon question In-Reply-To: <52CBD694.2010903@gmail.com> References: <52CBD2C7.8080108@gmail.com> <52CBD694.2010903@gmail.com> Message-ID: <12F6C46A-2596-41FD-B9DF-22BBD22BEF2D@mac.com> Permanent connections are reconnected automatically if the far end reboots or the network fails. If the end that initiated the permanent connection reboots the connection will not be reestablished. You need a startup macro to do that. Reconnects can be monitored with the Asterisk CLI. For example: HB-Hub*CLI> rpt lstats 2530 NODE PEER RECONNECTS DIRECTION CONNECT TIME CONNECT STATE ---- ---- ---------- --------- ------------ ------------- 2521 192.168.1.6 0 IN 103:14:18.191 ESTABLISHED 2523 192.168.1.6 0 IN 127:49:25.382 ESTABLISHED 2529 192.168.1.6 0 IN 103:14:44.239 ESTABLISHED 27439 173.164.198.177 0 IN 22:16:29.610 ESTABLISHED 40501 108.13.3.89 2 IN 22:16:17.877 ESTABLISHED 29227 206.128.121.172 0 IN 22:09:19.586 ESTABLISHED 2531 192.168.1.6 0 IN 20:47:47.36 ESTABLISHED 28020 68.104.125.62 2 IN 17:21:40.634 ESTABLISHED 29520 70.112.52.236 1 IN 12:53:31.694 ESTABLISHED HB-Hub*CLI> -- Tim :wq On Jan 7, 2014, at 2:27 AM, Greg wrote: > I am also wondering of the use of "Permanent" check box. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Tue Jan 7 15:11:19 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Tue, 07 Jan 2014 07:11:19 -0800 Subject: [App_rpt-users] allmon question In-Reply-To: <52CBD2C7.8080108@gmail.com> References: <52CBD2C7.8080108@gmail.com> Message-ID: <54B03ABE-DB0A-477B-84C7-59B6151B3EE9@mac.com> Allmon only shows current connections, no history. You?d have to dig through the Asterisk logs located at /var/log/asterisk/messages for any history. -- Tim :wq On Jan 7, 2014, at 2:11 AM, Greg wrote: > Thanks to the help of one sending me a comprehensive set of instructions I do have a remote web server with Allmon functional. Now I am wondering if there is any capability to see recent (not active) connections with Allmon. I suppose this is like CDR in a similar asterisk based PBX. > Thanks, > Greg > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From kb1ncj at gmail.com Tue Jan 7 16:11:58 2014 From: kb1ncj at gmail.com (Greg) Date: Tue, 07 Jan 2014 11:11:58 -0500 Subject: [App_rpt-users] allmon question In-Reply-To: <54B03ABE-DB0A-477B-84C7-59B6151B3EE9@mac.com> References: <52CBD2C7.8080108@gmail.com> <54B03ABE-DB0A-477B-84C7-59B6151B3EE9@mac.com> Message-ID: <52CC274E.5090500@gmail.com> Thank you. 73 Greg On 01/07/2014 10:11 AM, Tim Sawyer wrote: > Allmon only shows current connections, no history. You?d have to dig through the Asterisk logs located at /var/log/asterisk/messages for any history. > -- > Tim > :wq > > On Jan 7, 2014, at 2:11 AM, Greg wrote: > >> Thanks to the help of one sending me a comprehensive set of instructions I do have a remote web server with Allmon functional. Now I am wondering if there is any capability to see recent (not active) connections with Allmon. I suppose this is like CDR in a similar asterisk based PBX. >> Thanks, >> Greg >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From bob at w5evh.org Tue Jan 7 17:30:09 2014 From: bob at w5evh.org (Bob Roszkowski) Date: Tue, 7 Jan 2014 11:30:09 -0600 Subject: [App_rpt-users] Dual PL Tone? Possible? In-Reply-To: <527AA8C6.7030604@kuggie.com> References: <527A3CA6.9030706@cogeco.ca> <527AA8C6.7030604@kuggie.com> Message-ID: Hello Kevin, Not sure if I have something goofed up in the conf files but I can access the repeater with both tones I have set. 88.5 and 100.0. Both tones key up the repeater and transmit out the link. I have waiting until the transmitter drops with the same results. Do you know of any other parameters that could be causing this? boB - W5EVH On Wed, Nov 6, 2013 at 2:38 PM, Kevin Custer wrote: > On 11/6/2013 12:43 PM, Bob Roszkowski wrote: > >> >> Hello Jon, >> >> I did try what you mentioned and was able to get the repeater to key up >> on two different PL tones. However, both tones did key up the link. I >> matched all parameters in the usbradio.conf file and restarted. >> >> > > As I remember, you have to wait until the repeater transmitter drops > before you can access it with the other tone. Sort of like a community > tone panel. > > Kevin > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6ko at innercite.com Tue Jan 7 22:12:56 2014 From: kj6ko at innercite.com (KJ6KO) Date: Tue, 7 Jan 2014 14:12:56 -0800 Subject: [App_rpt-users] Web Tranceiver on a new MAC? Message-ID: <4F60DD5D439B475489F111A83BCCF0AD@KJ6KO> Anyone having issues using the web tranceiver on a new mac? Doesn't seem to like it. Java issues? Thanks...Greg __________ Information from ESET NOD32 Antivirus, version of virus signature database 9261 (20140107) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From keith at goobie.org Tue Jan 7 22:32:04 2014 From: keith at goobie.org (Keith Goobie) Date: Tue, 07 Jan 2014 17:32:04 -0500 Subject: [App_rpt-users] Web Tranceiver on a new MAC? In-Reply-To: <4F60DD5D439B475489F111A83BCCF0AD@KJ6KO> Message-ID: On a mac must be careful which browser is used. It must be the same bit version as the java program. Otherwise things will not work. Keith On 1/7/14 5:12 PM, "KJ6KO" wrote: > Anyone having issues using the web tranceiver on a new mac? > > Doesn't seem to like it. > > Java issues? > > Thanks...Greg > > > __________ Information from ESET NOD32 Antivirus, version of virus signature > database 9261 (20140107) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- keith at goobie.org Keith Goobie Richmond Hill, ON, CANADA -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Wed Jan 8 00:02:34 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Tue, 07 Jan 2014 16:02:34 -0800 Subject: [App_rpt-users] Web Tranceiver on a new MAC? In-Reply-To: <4F60DD5D439B475489F111A83BCCF0AD@KJ6KO> References: <4F60DD5D439B475489F111A83BCCF0AD@KJ6KO> Message-ID: <842EEC86-4A00-4976-941F-F298749CB662@mac.com> You have to allow Java access to everything. In Safari, preferences, security, manage web site settings, allstarlink.org select ?Run in unsafe mode?. -- Tim :wq On Jan 7, 2014, at 2:12 PM, KJ6KO wrote: > Anyone having issues using the web tranceiver on a new mac? > > Doesn't seem to like it. > > Java issues? > > Thanks...Greg > > > __________ Information from ESET NOD32 Antivirus, version of virus signature database 9261 (20140107) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb9mwr at yahoo.com Wed Jan 8 03:58:51 2014 From: kb9mwr at yahoo.com (Steve) Date: Tue, 7 Jan 2014 19:58:51 -0800 (PST) Subject: [App_rpt-users] Allstar newsline reflector? Message-ID: <1389153531.14843.YahooMailBasic@web140505.mail.bf1.yahoo.com> Does such a thing exist? Like the IRLP experimental reflector 0016 From anthony at olivero.us Wed Jan 8 06:04:49 2014 From: anthony at olivero.us (Tony Olivero) Date: Wed, 8 Jan 2014 00:04:49 -0600 Subject: [App_rpt-users] Allstar newsline reflector? In-Reply-To: <1389153531.14843.YahooMailBasic@web140505.mail.bf1.yahoo.com> References: <1389153531.14843.YahooMailBasic@web140505.mail.bf1.yahoo.com> Message-ID: I'm not sure about an Allstar node, but there is the EchoLink node 6397 (NEWS) that will play the latest Newsline with periodic pauses. Tony AD9O On 1/7/14, Steve wrote: > Does such a thing exist? Like the IRLP experimental reflector 0016 > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > From hromano at earthlink.net Wed Jan 8 17:44:44 2014 From: hromano at earthlink.net (Harry Romano) Date: Wed, 8 Jan 2014 12:44:44 -0500 Subject: [App_rpt-users] tone pass thru Message-ID: <000501cf0c99$51956ab0$f4c04010$@net> Hi All, I found an audio problem with my allstar but do not know how to fix it. The sub audible tone is coming out of the receiver and going thru the fob to allstar and thru the net from the VHF receiver . I was able to install iaxrpt and that's what I found. Could someone please tell me if there is some allstar setting that blocks the sub-audible tone from entering the net. 73 Harry Director ARASWF KC4RPP Skype: hromano777 Phone 1-239-455-1411 www.ed2.biz http://www.youtube.com/inventionsareus http://www.youtube.com/magnetman777 God Bless America -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Wed Jan 8 20:37:34 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Wed, 08 Jan 2014 12:37:34 -0800 Subject: [App_rpt-users] tone pass thru In-Reply-To: <000501cf0c99$51956ab0$f4c04010$@net> References: <000501cf0c99$51956ab0$f4c04010$@net> Message-ID: <6277E7C0-CB55-4C67-862D-D0428395A78C@mac.com> In simpleusb.conf (or usbradio.conf depending on your setup) add this line: plfilter=yes http://ohnosec.org/drupal/search/node/plfilter -- Tim :wq On Jan 8, 2014, at 9:44 AM, Harry Romano wrote: > Hi All, > > I found an audio problem with my allstar but do not know how to fix it. The sub audible tone is coming out of the receiver and going thru the fob to allstar and thru the net from the VHF receiver . I was able to install iaxrpt and that?s what I found. Could someone please tell me if there is some allstar setting that blocks the sub-audible tone from entering the net. > > > 73 > > Harry > Director ARASWF > KC4RPP > Skype: hromano777 > Phone 1-239-455-1411 > www.ed2.biz > http://www.youtube.com/inventionsareus > http://www.youtube.com/magnetman777 > > God Bless America > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sat Jan 11 03:41:19 2014 From: doug at crompton.com (Doug Crompton) Date: Fri, 10 Jan 2014 22:41:19 -0500 Subject: [App_rpt-users] Incoming connects Message-ID: I am remotely trying to troubleshoot a friends new Allstar installation. I can ssh in and connect out to nodes but I cannot connect in to the system from external nodes. Port 4569 is forwarded. I discovered this link - http://www.voip-info.org/wiki/view/IAX about consistent NAT and I was wondering if that might be the problem. I was able to connect in one time right after a reboot which might support the NAT issue. The router is an Actiontek MI424WR GigE as supplied by Verizon on their FIOS system. Is anyone else having a problem with this router or have any ideas on this? Nothing is logged at the server or shows up in the client on the system which kind of points to a routing failure. Is there a good way to check for open port 4569 as I don't think normal port scan programs will check this. 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From Bryan at bryanfields.net Sat Jan 11 04:12:54 2014 From: Bryan at bryanfields.net (Bryan Fields) Date: Fri, 10 Jan 2014 23:12:54 -0500 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: Message-ID: <52D0C4C6.7020001@bryanfields.net> Doug, If you don't mind shutting down asterisk you can test with netcat. have netcat listen on 4569 udp and then connect to it from the external box with netcat in client mode. type some stuff on standard in and see if it shows up on the server on standard out. Server bryan at keekles:~$ netcat -lu 4569 testing to the server Client bryan at keekles:~$ netcat -u 192.168.1.2 4569 testing to the server This will isolate it down to the network. On 1/10/14 10:41 PM, Doug Crompton wrote: > I am remotely trying to troubleshoot a friends new Allstar installation. I > can ssh in and connect out to nodes but I cannot connect in to the system > from external nodes. Port 4569 is forwarded. > > I discovered this link - > > http://www.voip-info.org/wiki/view/IAX > > about consistent NAT and I was wondering if that might be the problem. > > I was able to connect in one time right after a reboot which might support > the NAT issue. > > The router is an Actiontek MI424WR GigE as supplied by Verizon on their > FIOS system. > > Is anyone else having a problem with this router or have any ideas on this? > > Nothing is logged at the server or shows up in the client on the system > which kind of points to a routing failure. > > Is there a good way to check for open port 4569 as I don't think normal port > scan programs will check this. > > *73 Doug > WA3DSP > http://www.crompton.com/hamradio* > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- Bryan Fields 727-409-1194 - Voice 727-214-2508 - Fax http://bryanfields.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From asylthe at kc9ona.com Sat Jan 11 04:19:29 2014 From: asylthe at kc9ona.com (Andrew Sylthe) Date: Fri, 10 Jan 2014 22:19:29 -0600 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: Message-ID: Hello Doug, I found the following article detailing NAT table issues with that specific router: http://www.dslreports.com/faq/16233 It appears that one possible work around is to upgrade the firmware to increase the size of the NAT table. You may want to check if there is a firmware upgrade available for your friend's router. It sounds like you could be experiencing a potential NAT timeout issue. I believe IAX has a 60 second refresh set by default. The router could possibly be expiring the NAT translation if the NAT timeout on the router is set to something less than 60 seconds. In which case you'd have to recompile iax2.h with '#define IAX_DEFAULT_REG_EXPIRE 60' set to something like '#define IAX_DEFAULT_REG_EXPIRE 29', or change the NAT timeout setting in the router. You could easily do a 'tcpdump port 4569' on your friends system from the command prompt (logged in as root) to see if traffic is reaching his system on port 4569. I hope this helps. Thanks! On Fri, Jan 10, 2014 at 9:41 PM, Doug Crompton wrote: > I am remotely trying to troubleshoot a friends new Allstar installation. > I can ssh in and connect out to nodes but I cannot connect in to the system > from external nodes. Port 4569 is forwarded. > > I discovered this link - > > http://www.voip-info.org/wiki/view/IAX > > about consistent NAT and I was wondering if that might be the problem. > > I was able to connect in one time right after a reboot which might support > the NAT issue. > > The router is an Actiontek MI424WR GigE as supplied by Verizon on their > FIOS system. > > Is anyone else having a problem with this router or have any ideas on > this? > > Nothing is logged at the server or shows up in the client on the system > which kind of points to a routing failure. > > Is there a good way to check for open port 4569 as I don't think normal > port scan programs will check this. > > > > *73 DougWA3DSPhttp://www.crompton.com/hamradio > * > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -- Andrew Sylthe KC9ONA Cell: 224.623.3853 -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Sat Jan 11 04:29:46 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Fri, 10 Jan 2014 20:29:46 -0800 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: Message-ID: Do a ?tcpdump port 4569? at the Linux command line and incite a connect from another node. You should see inbound packets. I have seen ISP?s block port 4569 but not FiOS. I?m on FiOS with an actiontek router and it works fine. -- Tim :wq On Jan 10, 2014, at 7:41 PM, Doug Crompton wrote: > I am remotely trying to troubleshoot a friends new Allstar installation. I can ssh in and connect out to nodes but I cannot connect in to the system from external nodes. Port 4569 is forwarded. > > I discovered this link - > > http://www.voip-info.org/wiki/view/IAX > > about consistent NAT and I was wondering if that might be the problem. > > I was able to connect in one time right after a reboot which might support the NAT issue. > > The router is an Actiontek MI424WR GigE as supplied by Verizon on their FIOS system. > > Is anyone else having a problem with this router or have any ideas on this? > > Nothing is logged at the server or shows up in the client on the system which kind of points to a routing failure. > > Is there a good way to check for open port 4569 as I don't think normal port scan programs will check this. > > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sat Jan 11 05:29:50 2014 From: doug at crompton.com (Doug Crompton) Date: Sat, 11 Jan 2014 00:29:50 -0500 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: , Message-ID: Tim, I can connect to it from my location (IF) I connect right after I disconnect after having connected from his node to me via ssh. I see this bidirectionally on the tcpdump on his system. If I then disconnect and try to connect from another location or this same location later I see nothing on tcpdump and I get - [Jan 11 00:20:36] NOTICE[9224]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response -- Hungup 'IAX2/71.185.222.180:4569-697' -- Hungup 'Zap/pseudo-546901569' -- Hungup 'Zap/pseudo-1177483345' at my end. I really think this is a router issue. The router has been reset. Not sure where to go from here. Is there a setting on this router for persistent NAT? This is node 29971 at IP 71.185.222.180 73 Doug WA3DSP http://www.crompton.com/hamradio Subject: Re: [App_rpt-users] Incoming connects From: tim.sawyer at mac.com Date: Fri, 10 Jan 2014 20:29:46 -0800 CC: app_rpt-users at ohnosec.org To: doug at crompton.com Do a ?tcpdump port 4569? at the Linux command line and incite a connect from another node. You should see inbound packets. I have seen ISP?s block port 4569 but not FiOS. I?m on FiOS with an actiontek router and it works fine. -- Tim :wq On Jan 10, 2014, at 7:41 PM, Doug Crompton wrote:I am remotely trying to troubleshoot a friends new Allstar installation. I can ssh in and connect out to nodes but I cannot connect in to the system from external nodes. Port 4569 is forwarded. I discovered this link - http://www.voip-info.org/wiki/view/IAX about consistent NAT and I was wondering if that might be the problem. I was able to connect in one time right after a reboot which might support the NAT issue. The router is an Actiontek MI424WR GigE as supplied by Verizon on their FIOS system. Is anyone else having a problem with this router or have any ideas on this? Nothing is logged at the server or shows up in the client on the system which kind of points to a routing failure. Is there a good way to check for open port 4569 as I don't think normal port scan programs will check this. 73 Doug WA3DSP http://www.crompton.com/hamradio _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at af6d.com Sat Jan 11 09:55:54 2014 From: bob at af6d.com (Bob - AF6D) Date: Sat, 11 Jan 2014 01:55:54 -0800 Subject: [App_rpt-users] RPM's & Virtuozzo Message-ID: <9EBEA7F1A65D4066BA2F3C1BD7712E08@desktop> Are RPMs available, or could they be created for those of that run Virtuozzo for Linux by Parallels, as well as other virtualization software? I generally run one-two virtual servers on an Intel quad core XEON for unparalleled performance and have the security of daily backups and the ability to "bounce" a "container" from a failing "hardware node" to another "hardware node." I use CentOS on all of my over 100 machines. All of my motherboards have at least one serial port as do most server boards in production. OpenVZ is the free version of Virtuozzo and serves as the test bed for it. The ability to backup and restore anywhere, as well as to bounce or migrate anywhere have saved my butt many times. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Sat Jan 11 15:17:11 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Sat, 11 Jan 2014 07:17:11 -0800 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: Message-ID: Not that I have seen. Mine just works. It would be worth a try to move the port as it?s easy to do. -- Tim :wq On Jan 10, 2014, at 9:29 PM, Doug Crompton wrote: > Is there a setting on this router for persistent NAT? -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sat Jan 11 17:22:49 2014 From: doug at crompton.com (Doug Crompton) Date: Sat, 11 Jan 2014 12:22:49 -0500 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: , , , Message-ID: What is the procedure to change the port. I don't see a place in the server config to do this?? I know the bindport in iax.conf but where is the different port setup at allstarlink.org? What is the significance of the last few sentences of this help text where it says about a small number of nat..... Does this apply? http://ohnosec.org/drupal/node/66 73 Doug WA3DSP http://www.crompton.com/hamradio Subject: Re: [App_rpt-users] Incoming connects From: tim.sawyer at mac.com Date: Sat, 11 Jan 2014 07:17:11 -0800 CC: app_rpt-users at ohnosec.org To: doug at crompton.com Not that I have seen. Mine just works. It would be worth a try to move the port as it?s easy to do. --Tim:wq On Jan 10, 2014, at 9:29 PM, Doug Crompton wrote:Is there a setting on this router for persistent NAT? -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Sat Jan 11 17:49:45 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Sat, 11 Jan 2014 09:49:45 -0800 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: Message-ID: <6B662744-083A-4924-85F1-286EFD94024F@mac.com> In IAX.conf set the port like this: ; Inter-Asterisk eXchange driver definition ; ; [general] bindport=4568 bindaddr=0.0.0.0 bindport has to be above bindaddr. Then on the allstarlink.org site in the server network config set the port there. Restart asterisk, give it 30 mins to propagate and test again. -- Tim :wq On Jan 11, 2014, at 9:22 AM, Doug Crompton wrote: > What is the procedure to change the port. I don't see a place in the server config to do this?? I know the bindport in iax.conf but where is the different port setup at allstarlink.org? > > What is the significance of the last few sentences of this help text where it says about a small number of nat..... Does this apply? > > http://ohnosec.org/drupal/node/66 > > > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > > > Subject: Re: [App_rpt-users] Incoming connects > From: tim.sawyer at mac.com > Date: Sat, 11 Jan 2014 07:17:11 -0800 > CC: app_rpt-users at ohnosec.org > To: doug at crompton.com > > Not that I have seen. Mine just works. It would be worth a try to move the port as it?s easy to do. > -- > Tim > :wq > > On Jan 10, 2014, at 9:29 PM, Doug Crompton wrote: > > Is there a setting on this router for persistent NAT? -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sat Jan 11 21:38:16 2014 From: doug at crompton.com (Doug Crompton) Date: Sat, 11 Jan 2014 16:38:16 -0500 Subject: [App_rpt-users] Incoming connects In-Reply-To: <6B662744-083A-4924-85F1-286EFD94024F@mac.com> References: , , , , , <6B662744-083A-4924-85F1-286EFD94024F@mac.com> Message-ID: Tim, Thanks. I may try that but personally I think FIOS is a mess. I was looking at the possibility of using another router and I am sure glad I decided to go with Comcast at both my locations. Zero Internet problems and I use my own routers. FIOS is so intertwined with the TV and Internet service that trying to use your own router is a real hassle and in most cases causes a loss of some FIOS capability. The TV depends on the Internet for the guide and other screwy things. Having talked to someone in our club that works for Verizon and is involved in FIOS it seems it is a money loser for them and they are not doing any new system installs. Perhaps that is a good thing! 73 Doug WA3DSP http://www.crompton.com/hamradio From: tim.sawyer at mac.com Date: Sat, 11 Jan 2014 09:49:45 -0800 To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Incoming connects In IAX.conf set the port like this: ; Inter-Asterisk eXchange driver definition;; [general]bindport=4568bindaddr=0.0.0.0 bindport has to be above bindaddr. Then on the allstarlink.org site in the server network config set the port there. Restart asterisk, give it 30 mins to propagate and test again.--Tim :wq On Jan 11, 2014, at 9:22 AM, Doug Crompton wrote:What is the procedure to change the port. I don't see a place in the server config to do this?? I know the bindport in iax.conf but where is the different port setup at allstarlink.org? What is the significance of the last few sentences of this help text where it says about a small number of nat..... Does this apply? http://ohnosec.org/drupal/node/66 73 Doug WA3DSP http://www.crompton.com/hamradio Subject: Re: [App_rpt-users] Incoming connects From: tim.sawyer at mac.com Date: Sat, 11 Jan 2014 07:17:11 -0800 CC: app_rpt-users at ohnosec.org To: doug at crompton.com Not that I have seen. Mine just works. It would be worth a try to move the port as it?s easy to do. --Tim:wq On Jan 10, 2014, at 9:29 PM, Doug Crompton wrote:Is there a setting on this router for persistent NAT? _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Sat Jan 11 22:29:01 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Sat, 11 Jan 2014 14:29:01 -0800 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: <6B662744-083A-4924-85F1-286EFD94024F@mac.com> Message-ID: I love my FiOS. It?s the most solid and fastest internet I?ve ever had, bar none. The TV part is easy to separate and and then you can use your own router. there are a couple of different ways to approach that. But the new ?N? router is great. Have your guy ask for it. Just tell them you need the extended WiFi range of the ?N? router and they will give it to him for free. -- Tim :wq On Jan 11, 2014, at 1:38 PM, Doug Crompton wrote: > Tim, > > Thanks. I may try that but personally I think FIOS is a mess. I was looking at the possibility of using another router and I am sure glad I decided to go with Comcast at both my locations. Zero Internet problems and I use my own routers. FIOS is so intertwined with the TV and Internet service that trying to use your own router is a real hassle and in most cases causes a loss of some FIOS capability. The TV depends on the Internet for the guide and other screwy things. Having talked to someone in our club that works for Verizon and is involved in FIOS it seems it is a money loser for them and they are not doing any new system installs. Perhaps that is a good thing! > > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > > > From: tim.sawyer at mac.com > Date: Sat, 11 Jan 2014 09:49:45 -0800 > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Incoming connects > > In IAX.conf set the port like this: > > ; Inter-Asterisk eXchange driver definition > ; > ; > > [general] > bindport=4568 > bindaddr=0.0.0.0 > > bindport has to be above bindaddr. > > Then on the allstarlink.org site in the server network config set the port there. Restart asterisk, give it 30 mins to propagate and test again. > -- > Tim > :wq > > On Jan 11, 2014, at 9:22 AM, Doug Crompton wrote: > > What is the procedure to change the port. I don't see a place in the server config to do this?? I know the bindport in iax.conf but where is the different port setup at allstarlink.org? > > What is the significance of the last few sentences of this help text where it says about a small number of nat..... Does this apply? > > http://ohnosec.org/drupal/node/66 > > > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > > > Subject: Re: [App_rpt-users] Incoming connects > From: tim.sawyer at mac.com > Date: Sat, 11 Jan 2014 07:17:11 -0800 > CC: app_rpt-users at ohnosec.org > To: doug at crompton.com > > Not that I have seen. Mine just works. It would be worth a try to move the port as it?s easy to do. > -- > Tim > :wq > > On Jan 10, 2014, at 9:29 PM, Doug Crompton wrote: > > Is there a setting on this router for persistent NAT? > > > _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sun Jan 12 03:21:38 2014 From: doug at crompton.com (Doug Crompton) Date: Sat, 11 Jan 2014 22:21:38 -0500 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: , Message-ID: OK I think this is solved. Unfortunately it is hard to diagnose all problems when you have an inexperienced person at the other end. It turns out the router was forwarding the right port BUT it was set to tcp instead of udp. I had gone over this several times with the operator and I had thought it was right but when we looked at it again it was wrong. When set in the tcp mode it did accept connections but only for a short window of time after a prior disconnect from the other direction. Thanks for all the input and sorry to cause all the back and forth on this. I learned that you have to be extremely concise when dealing with someone remotely who is inexperienced! 73 Doug WA3DSP http://www.crompton.com/hamradio Subject: Re: [App_rpt-users] Incoming connects From: tim.sawyer at mac.com Date: Fri, 10 Jan 2014 20:29:46 -0800 CC: app_rpt-users at ohnosec.org To: doug at crompton.com Do a ?tcpdump port 4569? at the Linux command line and incite a connect from another node. You should see inbound packets. I have seen ISP?s block port 4569 but not FiOS. I?m on FiOS with an actiontek router and it works fine. -- Tim :wq On Jan 10, 2014, at 7:41 PM, Doug Crompton wrote:I am remotely trying to troubleshoot a friends new Allstar installation. I can ssh in and connect out to nodes but I cannot connect in to the system from external nodes. Port 4569 is forwarded. I discovered this link - http://www.voip-info.org/wiki/view/IAX about consistent NAT and I was wondering if that might be the problem. I was able to connect in one time right after a reboot which might support the NAT issue. The router is an Actiontek MI424WR GigE as supplied by Verizon on their FIOS system. Is anyone else having a problem with this router or have any ideas on this? Nothing is logged at the server or shows up in the client on the system which kind of points to a routing failure. Is there a good way to check for open port 4569 as I don't think normal port scan programs will check this. 73 Doug WA3DSP http://www.crompton.com/hamradio _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sun Jan 12 03:25:40 2014 From: doug at crompton.com (Doug Crompton) Date: Sat, 11 Jan 2014 22:25:40 -0500 Subject: [App_rpt-users] PATA SSD drives Message-ID: Since many of us are using older computers for our servers that have PATA hard drives I was wondering if anyone has installed a replacement SSD and if so what has worked? I imagine that the drives are transparent and should have no OS problems? Here is a link to one that looks like it would work - http://www.crucial.com/store/ssd.aspx?gclid=CLadwPrT97sCFeFlOgodYwYA0g&cpe=pd_google_us&ef_id=UtIGvwAABE7D at Wq4:20140112030639:s 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Sun Jan 12 03:37:17 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Sat, 11 Jan 2014 19:37:17 -0800 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: Message-ID: TeamViewer or one of the other screensharing programs comes in handy in that situation. -- Tim :wq On Jan 11, 2014, at 7:21 PM, Doug Crompton wrote: > OK I think this is solved. Unfortunately it is hard to diagnose all problems when you have an inexperienced person at the other end. > > It turns out the router was forwarding the right port BUT it was set to tcp instead of udp. I had gone over this several times with the operator and I had thought it was right but when we looked at it again it was wrong. > > When set in the tcp mode it did accept connections but only for a short window of time after a prior disconnect from the other direction. > > Thanks for all the input and sorry to cause all the back and forth on this. I learned that you have to be extremely concise when dealing with someone remotely who is inexperienced! > > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > > > Subject: Re: [App_rpt-users] Incoming connects > From: tim.sawyer at mac.com > Date: Fri, 10 Jan 2014 20:29:46 -0800 > CC: app_rpt-users at ohnosec.org > To: doug at crompton.com > > Do a ?tcpdump port 4569? at the Linux command line and incite a connect from another node. You should see inbound packets. > > I have seen ISP?s block port 4569 but not FiOS. I?m on FiOS with an actiontek router and it works fine. > -- > Tim > :wq > > On Jan 10, 2014, at 7:41 PM, Doug Crompton wrote: > > I am remotely trying to troubleshoot a friends new Allstar installation. I can ssh in and connect out to nodes but I cannot connect in to the system from external nodes. Port 4569 is forwarded. > > I discovered this link - > > http://www.voip-info.org/wiki/view/IAX > > about consistent NAT and I was wondering if that might be the problem. > > I was able to connect in one time right after a reboot which might support the NAT issue. > > The router is an Actiontek MI424WR GigE as supplied by Verizon on their FIOS system. > > Is anyone else having a problem with this router or have any ideas on this? > > Nothing is logged at the server or shows up in the client on the system which kind of points to a routing failure. > > Is there a good way to check for open port 4569 as I don't think normal port scan programs will check this. > > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk6ecm at gmail.com Sun Jan 12 04:46:26 2014 From: kk6ecm at gmail.com (Bob) Date: Sat, 11 Jan 2014 20:46:26 -0800 Subject: [App_rpt-users] app_rpt statistics In-Reply-To: References: Message-ID: <8269619D50794FDD828CF48F11CDB520@ThePykesHP> I'm looking for a way to capture and e-mail repeater useage statistics. In searching through app_rpt.c, I found the following. >From app_rpt.c myrpt->dailytxtime = 0; myrpt->totaltxtime = 0; myrpt->dailykeyups = 0; myrpt->totalkeyups = 0; myrpt->dailykerchunks = 0; myrpt->totalkerchunks = 0; myrpt->dailyexecdcommands = 0; myrpt->totalexecdcommands = 0; My next questions is what is the form of an rpt.conf stanza that could utilize these variables, capturing these statistics? Is there a way of saving these statistics to a log file, or perhaps a way to send by e-mail from the repeater to my e-mail address? Thanks, Bob kk6ecm -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sun Jan 12 05:11:34 2014 From: doug at crompton.com (Doug Crompton) Date: Sun, 12 Jan 2014 00:11:34 -0500 Subject: [App_rpt-users] PATA SSD drives In-Reply-To: <7ea49ea1.f12c5.14384a728f6.Webtop.43@charter.net> References: <7ea49ea1.f12c5.14384a728f6.Webtop.43@charter.net> Message-ID: Here is one that would work - http://www.newegg.com/Product/Product.aspx?Item=9SIA1K61312389 73 Doug WA3DSP http://www.crompton.com/hamradio > Date: Sat, 11 Jan 2014 23:13:04 -0500 > From: ehrkep at charter.net > To: doug at crompton.com > Subject: RE: [App_rpt-users] PATA SSD drives > > I do not think it will work. Although the type of drive should be > transparent, the SSD drive is a SATA and not a PATA/IDE, UNLESS you use > some sort of adaptor > > Phil > > > On Sat, Jan 11, 2014 at 7:25 PM, Doug Crompton wrote: > > > Since many of us are using older computers for our servers that have > > PATA hard drives I was wondering if anyone has installed a replacement > > SSD and if so what has worked? > > > > I imagine that the drives are transparent and should have no OS > > problems? > > > > Here is a link to one that looks like it would work - > > > > > > http://www.crucial.com/store/ssd.aspx?gclid=CLadwPrT97sCFeFlOgodYwYA0g&cpe=pd_google_us&ef_id=UtIGvwAABE7D at Wq4:20140112030639:s > > 73 Doug > > WA3DSP > > http://www.crompton.com/hamradio > > > > ------------------------------ > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sun Jan 12 05:20:11 2014 From: doug at crompton.com (Doug Crompton) Date: Sun, 12 Jan 2014 00:20:11 -0500 Subject: [App_rpt-users] app_rpt statistics In-Reply-To: <8269619D50794FDD828CF48F11CDB520@ThePykesHP> References: , <8269619D50794FDD828CF48F11CDB520@ThePykesHP> Message-ID: Bob, Not exactly sure what your wanting but the following at the linux command prompt will save the stats to a file - asterisk -rx "rpt stats 27225" > 27225stats cat 27225stats ************************ NODE 27225 STATISTICS ************************* Selected system state............................: 0 Signal on input..................................: NO System...........................................: ENABLED Parrot Mode......................................: DISABLED Scheduler........................................: ENABLED Tail Time........................................: STANDARD Time out timer...................................: ENABLED Incoming connections.............................: ENABLED Time out timer state.............................: RESET Time outs since system initialization............: 0 Identifier state.................................: CLEAN Kerchunks today..................................: 0 Kerchunks since system initialization............: 949 Keyups today.....................................: 4 Keyups since system initialization...............: 15773 DTMF commands today..............................: 0 DTMF commands since system initialization........: 89 Last DTMF command executed.......................: 329971 TX time today....................................: 00:01:53.172 TX time since system initialization..............: 70:17:18.962 Uptime...........................................: 456:34:43 Nodes currently connected to us..................: 28190, 29971, 28795 Autopatch........................................: ENABLED Autopatch state..................................: DOWN Autopatch called number..........................: N/A Reverse patch/IAXRPT connected...................: DOWN User linking commands............................: ENABLED User functions...................................: ENABLED You could make up a script to do this and then email the file somewhere. It could be done periodically by a cron job. My lsnodes program also displays this status to a web page - http://crompton.com/hamradio/allstar/lsnodes.html 73 Doug WA3DSP http://www.crompton.com/hamradio From: kk6ecm at gmail.com To: app_rpt-users at ohnosec.org Date: Sat, 11 Jan 2014 20:46:26 -0800 Subject: [App_rpt-users] app_rpt statistics I?m looking for a way to capture and e-mail repeater useage statistics. In searching through app_rpt.c, I found the following. >From app_rpt.c myrpt->dailytxtime = 0; myrpt->totaltxtime = 0; myrpt->dailykeyups = 0; myrpt->totalkeyups = 0; myrpt->dailykerchunks = 0; myrpt->totalkerchunks = 0; myrpt->dailyexecdcommands = 0; myrpt->totalexecdcommands = 0; My next questions is what is the form of an rpt.conf stanza that could utilize these variables, capturing these statistics? Is there a way of saving these statistics to a log file, or perhaps a way to send by e-mail from the repeater to my e-mail address? Thanks, Bob kk6ecm _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From yokshs at gmail.com Sun Jan 12 05:56:28 2014 From: yokshs at gmail.com (K&R Yoksh) Date: Sat, 11 Jan 2014 23:56:28 -0600 Subject: [App_rpt-users] app_rpt statistics Message-ID: <3A2663D3E38A496FBB275FB989811D24@main> Hi Bob, I'm not sure exactly what you're looking for, but I wrote a script (stats) to grep parts of the 'stats' command and use a cron job that executes another script (dailystats) just before midnight each night. Both of these scripts can be found here http://www.qsl.net/k0kn/scripts.html for individual download, or you can download all of my scripts in a tarball. You can easily configure which fields in the stats page you want to monitor, and you can run this for any/all nodes on your Asterisk box. Here's an example of what my daily email looks like: ************************ NODE 2210 STATISTICS ************************* System...........................................: ENABLED Incoming connections.............................: ENABLED Time outs since system initialization............: 0 Keyups today.....................................: 136 Keyups since system initialization...............: 481 DTMF commands today..............................: 1 TX time today....................................: 00:13:24.247 TX time since system initialization..............: 00:58:26.838 Uptime...........................................: 95:56:45 Nodes currently connected to us..................: 28891, 29216, 28073, 2212 : 29737, 28980, 2216 ************************ NODE 2211 STATISTICS ************************* System...........................................: ENABLED Incoming connections.............................: ENABLED Time outs since system initialization............: 0 Keyups today.....................................: 6 Keyups since system initialization...............: 6 DTMF commands today..............................: 3 TX time today....................................: 00:00:50.476 TX time since system initialization..............: 00:00:50.476 Uptime...........................................: 95:56:51 Nodes currently connected to us..................: ************************ NODE 2212 STATISTICS ************************* System...........................................: ENABLED Incoming connections.............................: ENABLED Time outs since system initialization............: 0 Keyups today.....................................: 110 Keyups since system initialization...............: 110 DTMF commands today..............................: 4 TX time today....................................: 00:15:23.893 TX time since system initialization..............: 00:15:23.893 Uptime...........................................: 95:56:56 Nodes currently connected to us..................: 2210 If you want to see all of the available stats, go to your Asterisk CLI and type: rpt stats 1000 (replace 1000 with your node number) The files generated by my scripts are saved to /dev/shm by default, and could easily be redirected to a log file if you'd like. As for the email capability of the node, I have an installer that will automatically configure email on your node. It's also available for download from my web page. It was written specifically to support Gmail, so if you want to use a different provider, some changes would have to be made in the script. 73, Kyle Yoksh K0KN Olathe, KS Allstar 2210-2219 --- Original Message --- I'm looking for a way to capture and e-mail repeater useage statistics. In searching through app_rpt.c, I found the following. >From app_rpt.c myrpt->dailytxtime = 0; myrpt->totaltxtime = 0; myrpt->dailykeyups = 0; myrpt->totalkeyups = 0; myrpt->dailykerchunks = 0; myrpt->totalkerchunks = 0; myrpt->dailyexecdcommands = 0; myrpt->totalexecdcommands = 0; My next questions is what is the form of an rpt.conf stanza that could utilize these variables, capturing these statistics? Is there a way of saving these statistics to a log file, or perhaps a way to send by e-mail from the repeater to my e-mail address? Thanks, Bob kk6ecm From w7ry at centurytel.net Sun Jan 12 06:00:38 2014 From: w7ry at centurytel.net (Jim W7RY) Date: Sat, 11 Jan 2014 22:00:38 -0800 Subject: [App_rpt-users] Incoming connects In-Reply-To: References: , Message-ID: <52D22F86.90308@centurytel.net> One of the very first things to do when testing connection issues is to put the node in the DMZ of the router. Easy, simple and can quickly eliminate lots of settings. In fact, my node is on the DMZ with a strong password. Never had an issue. 73 Jim W7RY On 1/11/2014 7:21 PM, Doug Crompton wrote: > OK I think this is solved. Unfortunately it is hard to diagnose all > problems when you have an inexperienced person at the other end. > > It turns out the router was forwarding the right port BUT it was set > to tcp instead of udp. I had gone over this several times with the > operator and I had thought it was right but when we looked at it again > it was wrong. > > When set in the tcp mode it did accept connections but only for a > short window of time after a prior disconnect from the other direction. > > Thanks for all the input and sorry to cause all the back and forth on > this. I learned that you have to be extremely concise when dealing > with someone remotely who is inexperienced! > > *73 Doug > WA3DSP > http://www.crompton.com/hamradio* > > > ------------------------------------------------------------------------ > Subject: Re: [App_rpt-users] Incoming connects > From: tim.sawyer at mac.com > Date: Fri, 10 Jan 2014 20:29:46 -0800 > CC: app_rpt-users at ohnosec.org > To: doug at crompton.com > > Do a "tcpdump port 4569" at the Linux command line and incite a > connect from another node. You should see inbound packets. > > I have seen ISP's block port 4569 but not FiOS. I'm on FiOS with an > actiontek router and it works fine. > -- > Tim > :wq > > On Jan 10, 2014, at 7:41 PM, Doug Crompton > wrote: > > I am remotely trying to troubleshoot a friends new Allstar > installation. I can ssh in and connect out to nodes but I cannot > connect in to the system from external nodes. Port 4569 is forwarded. > > I discovered this link - > > http://www.voip-info.org/wiki/view/IAX > > about consistent NAT and I was wondering if that might be the problem. > > I was able to connect in one time right after a reboot which might > support the NAT issue. > > The router is an Actiontek MI424WR GigE as supplied by Verizon on > their FIOS system. > > Is anyone else having a problem with this router or have any ideas > on this? > > Nothing is logged at the server or shows up in the client on the > system which kind of points to a routing failure. > > Is there a good way to check for open port 4569 as I don't think > normal port scan programs will check this. > > *73 Doug > WA3DSP > http://www.crompton.com/hamradio* > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From vencl at att.net Sun Jan 12 12:48:19 2014 From: vencl at att.net (Lu Vencl) Date: Sun, 12 Jan 2014 07:48:19 -0500 Subject: [App_rpt-users] Incoming connects In-Reply-To: <52D22F86.90308@centurytel.net> References: <52D22F86.90308@centurytel.net> Message-ID: Hope you at least have employed a firewall such as via webmin. Hackers are likely to be targeting your box some day. Just saying from experience. Sent from my iPhone, Lu Vencl > On Jan 12, 2014, at 1:00 AM, Jim W7RY wrote: > > One of the very first things to do when testing connection issues is to put the node in the DMZ of the router. Easy, simple and can quickly eliminate lots of settings. > > In fact, my node is on the DMZ with a strong password. Never had an issue. > > 73 > Jim W7RY > >> On 1/11/2014 7:21 PM, Doug Crompton wrote: >> OK I think this is solved. Unfortunately it is hard to diagnose all problems when you have an inexperienced person at the other end. >> >> It turns out the router was forwarding the right port BUT it was set to tcp instead of udp. I had gone over this several times with the operator and I had thought it was right but when we looked at it again it was wrong. >> >> When set in the tcp mode it did accept connections but only for a short window of time after a prior disconnect from the other direction. >> >> Thanks for all the input and sorry to cause all the back and forth on this. I learned that you have to be extremely concise when dealing with someone remotely who is inexperienced! >> >> 73 Doug >> WA3DSP >> http://www.crompton.com/hamradio >> >> >> Subject: Re: [App_rpt-users] Incoming connects >> From: tim.sawyer at mac.com >> Date: Fri, 10 Jan 2014 20:29:46 -0800 >> CC: app_rpt-users at ohnosec.org >> To: doug at crompton.com >> >> Do a ?tcpdump port 4569? at the Linux command line and incite a connect from another node. You should see inbound packets. >> >> I have seen ISP?s block port 4569 but not FiOS. I?m on FiOS with an actiontek router and it works fine. >> -- >> Tim >> :wq >> >> On Jan 10, 2014, at 7:41 PM, Doug Crompton wrote: >> >> I am remotely trying to troubleshoot a friends new Allstar installation. I can ssh in and connect out to nodes but I cannot connect in to the system from external nodes. Port 4569 is forwarded. >> >> I discovered this link - >> >> http://www.voip-info.org/wiki/view/IAX >> >> about consistent NAT and I was wondering if that might be the problem. >> >> I was able to connect in one time right after a reboot which might support the NAT issue. >> >> The router is an Actiontek MI424WR GigE as supplied by Verizon on their FIOS system. >> >> Is anyone else having a problem with this router or have any ideas on this? >> >> Nothing is logged at the server or shows up in the client on the system which kind of points to a routing failure. >> >> Is there a good way to check for open port 4569 as I don't think normal port scan programs will check this. >> >> 73 Doug >> WA3DSP >> http://www.crompton.com/hamradio >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From keith at goobie.org Sun Jan 12 12:48:20 2014 From: keith at goobie.org (Keith Goobie) Date: Sun, 12 Jan 2014 07:48:20 -0500 Subject: [App_rpt-users] PATA SSD drives In-Reply-To: Message-ID: Doug I would be extremely leery about the use of Crucial SSD?s. While they have been a strong product line in the past, their quality control of late has translated into products that do not work. Most recently they have been accused of flooding the market with product that they know to be defective. Buyer beware! We got lured lured in by their defective product, and spent many wasted hours, doing problem analysis and OS rebuilds. When we dug in further through research on the net, and confirmed what is printed above, we abandoned Crucial and quickly moved to another product. At our remote site we are using OCZ (x2) and SANDISK. Both have been great performers. We are running Centos on all SSD?s. (DNS/Web/Mail, DSTAR and Allstar). Keith / VA3YC On 1/11/14 10:25 PM, "Doug Crompton" wrote: > Since many of us are using older computers for our servers that have PATA hard > drives I was wondering if anyone has installed a replacement SSD and if so > what has worked? > > I imagine that the drives are transparent and should have no OS problems? > > Here is a link to one that looks like it would work - > > http://www.crucial.com/store/ssd.aspx?gclid=CLadwPrT97sCFeFlOgodYwYA0g&cpe=pd_ > google_us&ef_id=UtIGvwAABE7D at Wq4:20140112030639:s > > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- keith at goobie.org Keith Goobie Richmond Hill, ON, CANADA -------------- next part -------------- An HTML attachment was scrubbed... URL: From kilo7alphazulu at verizon.net Sun Jan 12 14:16:49 2014 From: kilo7alphazulu at verizon.net (Chris Hill) Date: Sun, 12 Jan 2014 06:16:49 -0800 Subject: [App_rpt-users] Clipping last 20mS of RX Audio? Message-ID: Greetings Group: I am looking for the setting that will allow clipping off about 20mS of radio received audio to prevent passing squelch burst onto the network. Receiver in use has PL and COR gated logic to the URIx but for those users without reverse burst PL radios, the noise burst is an issue. Thanks, Chris K7AZ 29275 From ars.w5omr at gmail.com Sat Jan 11 14:49:26 2014 From: ars.w5omr at gmail.com (Geoff) Date: Sat, 11 Jan 2014 08:49:26 -0600 Subject: [App_rpt-users] RPM's & Virtuozzo In-Reply-To: <9EBEA7F1A65D4066BA2F3C1BD7712E08@desktop> References: <9EBEA7F1A65D4066BA2F3C1BD7712E08@desktop> Message-ID: <52D159F6.8040506@gmail.com> On 01/11/2014 03:55 AM, Bob - AF6D wrote: > > Are RPMs available, or could they be created for those of that run > Virtuozzo for Linux by Parallels, as well as other virtualization > software? I generally run one-two virtual servers on an Intel quad > core XEON for unparalleled performance and have the security of daily > backups and the ability to "bounce" a "container" from a failing > "hardware node" to another "hardware node." I use CentOS on all of my > over 100 machines. All of my motherboards have at least one serial > port as do most server boards in production. OpenVZ is the free > version of Virtuozzo and serves as the test bed for it. The ability to > backup and restore anywhere, as well as to bounce or migrate anywhere > have saved my butt many times. > > Couldn't you just install from CD into a VM? or even mount -o loop disk1.iso /mnt/point/ There are claims all over this list that acid/allstar/asterisk works fine in a VM. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ars.w5omr at gmail.com Sat Jan 11 15:06:45 2014 From: ars.w5omr at gmail.com (Geoff) Date: Sat, 11 Jan 2014 09:06:45 -0600 Subject: [App_rpt-users] Clipping last 20mS of RX Audio? In-Reply-To: References: Message-ID: <52D15E05.3060006@gmail.com> On 01/12/2014 08:16 AM, Chris Hill wrote: > Greetings Group: > > I am looking for the setting that will allow clipping off about 20mS of radio received audio to prevent passing squelch burst onto the network. > Receiver in use has PL and COR gated logic to the URIx but for those users without reverse burst PL radios, the noise burst is an issue. > Bear with me, I'm asking this question for a specific reason, Chris... Does the noise burst happen on -every- transmission, or just when -some- operators key up? -Geoff/W5OMR 29655 29656 29657 From cypresstower at yahoo.com Sun Jan 12 16:05:42 2014 From: cypresstower at yahoo.com (Johnny Keeker) Date: Sun, 12 Jan 2014 08:05:42 -0800 (PST) Subject: [App_rpt-users] app_rpt statistics In-Reply-To: <3A2663D3E38A496FBB275FB989811D24@main> References: <3A2663D3E38A496FBB275FB989811D24@main> Message-ID: <1389542742.92330.YahooMailNeo@web163605.mail.gq1.yahoo.com> Kyle: Thanks for sharing your?scripts,?you?do great work.? JK ________________________________ From: K&R Yoksh To: app_rpt Sent: Sunday, January 12, 2014 12:56 AM Subject: Re: [App_rpt-users] app_rpt statistics Hi Bob, I'm not sure exactly what you're looking for, but I wrote a script (stats) to grep parts of the 'stats' command and use a cron job that executes another script (dailystats) just before midnight each night. Both of these scripts can be found here http://www.qsl.net/k0kn/scripts.html for individual download, or you can download all of my scripts in a tarball. You can easily configure which fields in the stats page you want to monitor, and you can run this for any/all nodes on your Asterisk box. Here's an example of what my daily email looks like: ************************ NODE 2210 STATISTICS ************************* System...........................................: ENABLED Incoming connections.............................: ENABLED Time outs since system initialization............: 0 Keyups today.....................................: 136 Keyups since system initialization...............: 481 DTMF commands today..............................: 1 TX time today....................................: 00:13:24.247 TX time since system initialization..............: 00:58:26.838 Uptime...........................................: 95:56:45 Nodes currently connected to us..................: 28891, 29216, 28073, 2212 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? : 29737, 28980, 2216 ************************ NODE 2211 STATISTICS ************************* System...........................................: ENABLED Incoming connections.............................: ENABLED Time outs since system initialization............: 0 Keyups today.....................................: 6 Keyups since system initialization...............: 6 DTMF commands today..............................: 3 TX time today....................................: 00:00:50.476 TX time since system initialization..............: 00:00:50.476 Uptime...........................................: 95:56:51 Nodes currently connected to us..................: ************************ NODE 2212 STATISTICS ************************* System...........................................: ENABLED Incoming connections.............................: ENABLED Time outs since system initialization............: 0 Keyups today.....................................: 110 Keyups since system initialization...............: 110 DTMF commands today..............................: 4 TX time today....................................: 00:15:23.893 TX time since system initialization..............: 00:15:23.893 Uptime...........................................: 95:56:56 Nodes currently connected to us..................: 2210 If you want to see all of the available stats, go to your Asterisk CLI and type: rpt stats 1000? ? ? ? ? (replace 1000 with your node number) The files generated by my scripts are saved to /dev/shm by default, and could easily be redirected to a log file if you'd like. As for the email capability of the node, I have an installer that will automatically configure email on your node. It's also available for download from my web page. It was written specifically to support Gmail, so if you want to use a different provider, some changes would have to be made in the script. 73, Kyle Yoksh K0KN Olathe, KS Allstar 2210-2219 --- Original Message --- I'm looking for a way to capture and e-mail repeater useage statistics. In searching through app_rpt.c, I found the following. >From app_rpt.c ? ? ? ? ? ? myrpt->dailytxtime = 0; ? ? ? ? ? ? myrpt->totaltxtime = 0; ? ? ? ? ? ? myrpt->dailykeyups = 0; ? ? ? ? ? ? myrpt->totalkeyups = 0; ? ? ? ? ? ? myrpt->dailykerchunks = 0; ? ? ? ? ? ? myrpt->totalkerchunks = 0; ? ? ? ? ? ? myrpt->dailyexecdcommands = 0; ? ? ? ? ? ? myrpt->totalexecdcommands = 0; My next questions is what is the form of an rpt.conf stanza that could utilize these variables, capturing these statistics? Is there a way of saving these statistics to a log file, or perhaps a way to send by e-mail from the repeater to my e-mail address? Thanks, Bob kk6ecm _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From cypresstower at yahoo.com Sun Jan 12 17:11:20 2014 From: cypresstower at yahoo.com (Johnny Keeker) Date: Sun, 12 Jan 2014 09:11:20 -0800 (PST) Subject: [App_rpt-users] Incoming connects In-Reply-To: References: <52D22F86.90308@centurytel.net> Message-ID: <1389546680.78092.YahooMailNeo@web163604.mail.gq1.yahoo.com> I had a port forwarding issue with a Xipar node on its own ISP. I bypassed the router for testing purposes ONLY. The router was blocking the ports.? Seeing I had to wait for another router to arrive, I decided to leave the node unprotected just to see if Hackers would actually find it.? With in a day, there were so many hits, I couldn't type a single character without it scrolling off the screen.? I let it run away with itself until I got another router, then powered down the modem, hooked up the router. I waited before applying power to the modem. I got a different IP, everything was fine after that.....???? JK? knowledge is experience!!!? ________________________________ From: Lu Vencl To: Jim W7RY Cc: "app_rpt-users at ohnosec.org" Sent: Sunday, January 12, 2014 7:48 AM Subject: Re: [App_rpt-users] Incoming connects Hope you at least have employed a firewall such as via webmin. ?Hackers are likely to be targeting your box some day. Just saying from experience.? Sent from my iPhone, Lu Vencl On Jan 12, 2014, at 1:00 AM, Jim W7RY wrote: One of the very first things to do when testing connection issues is to put the node in the DMZ of the router. Easy, simple and can quickly eliminate lots of settings. In fact, my node is on the DMZ with a strong password. Never had an issue. 73 Jim W7RY On 1/11/2014 7:21 PM, Doug Crompton wrote: OK I think this is solved. Unfortunately it is hard to diagnose all problems when you have an inexperienced person at the other end. > >It turns out the router was forwarding the right port BUT it was set to tcp instead of udp.? I had gone over this several times with the operator and I had thought it was right but when we looked at it again it was wrong. > >When set in the tcp mode it did accept connections but only for a short window of time after a prior disconnect from the other direction. > >Thanks for all the input and sorry to cause all the back and forth on this. I learned that you have to be extremely concise when dealing with someone remotely who is inexperienced! > >73 Doug >WA3DSP >http://www.crompton.com/hamradio > > > > >________________________________ >Subject: Re: [App_rpt-users] Incoming connects >From: tim.sawyer at mac.com >Date: Fri, 10 Jan 2014 20:29:46 -0800 >CC: app_rpt-users at ohnosec.org >To: doug at crompton.com > >Do a ?tcpdump port 4569? at the Linux command line and incite a connect from another node. You should see inbound packets. > > >I have seen ISP?s block port 4569 but not FiOS. I?m on FiOS with an actiontek router and it works fine. > >-- >Tim >:wq > >On Jan 10, 2014, at 7:41 PM, Doug Crompton wrote: > >I am remotely trying to troubleshoot a friends new Allstar installation.? I can ssh in and connect out to nodes but I cannot connect in to the system from external nodes. Port 4569 is forwarded. >> >>I discovered this link - >> >>http://www.voip-info.org/wiki/view/IAX >> >>about consistent NAT and I was wondering if that might be the problem. >> >>I was able to connect in one time right after a reboot which might support the NAT issue. >> >>The router is an Actiontek MI424WR GigE? as supplied by Verizon on their FIOS system. >> >>Is anyone else having a problem with this router or have any ideas on this?? >> >>Nothing is logged at the server or shows up in the client on the system which kind of points to a routing failure. >> >>Is there a good way to check for open port 4569 as I don't think normal port scan programs will check this. >> >>73 Doug >>WA3DSP >>http://www.crompton.com/hamradio >>_______________________________________________ >>App_rpt-users mailing list >>App_rpt-users at ohnosec.org >>http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > >_______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users _______________________________________________ >App_rpt-users mailing list >App_rpt-users at ohnosec.org >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb4fxc at inttek.net Sun Jan 12 18:18:00 2014 From: kb4fxc at inttek.net (David McGough) Date: Sun, 12 Jan 2014 13:18:00 -0500 (EST) Subject: [App_rpt-users] PATA SSD drives In-Reply-To: Message-ID: I will 2nd Keith's comments. I run thru a rash of Crucial SATA SSD's in the 128GB (more or less) class that seem to fail after a few weeks of use. VERY annoying!!! On Sun, 12 Jan 2014, Keith Goobie wrote: > Doug > > I would be extremely leery about the use of Crucial SSD?s. While they have > been a strong product line in the past, their quality control of late has > translated into products that do not work. Most recently they have been > accused of flooding the market with product that they know to be defective. > Buyer beware! > > We got lured lured in by their defective product, and spent many wasted > hours, doing problem analysis and OS rebuilds. When we dug in further > through research on the net, and confirmed what is printed above, we > abandoned Crucial and quickly moved to another product. > > At our remote site we are using OCZ (x2) and SANDISK. Both have been great > performers. > > We are running Centos on all SSD?s. (DNS/Web/Mail, DSTAR and Allstar). > > Keith / VA3YC > > > On 1/11/14 10:25 PM, "Doug Crompton" wrote: > > > Since many of us are using older computers for our servers that have PATA hard > > drives I was wondering if anyone has installed a replacement SSD and if so > > what has worked? > > > > I imagine that the drives are transparent and should have no OS problems? > > > > Here is a link to one that looks like it would work - > > > > http://www.crucial.com/store/ssd.aspx?gclid=CLadwPrT97sCFeFlOgodYwYA0g&cpe=pd_ > > google_us&ef_id=UtIGvwAABE7D at Wq4:20140112030639:s > > > > 73 Doug > > WA3DSP > > http://www.crompton.com/hamradio > > > > > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > From bob at af6d.com Sun Jan 12 19:58:10 2014 From: bob at af6d.com (Bob - AF6D) Date: Sun, 12 Jan 2014 11:58:10 -0800 Subject: [App_rpt-users] RPM's & Virtuozzo In-Reply-To: References: Message-ID: Virtuozzo is the same as a VM (in purpose) but it doesn't work the same way as VMWare. Virtuozzo natively installs the current version of Centos as an "OS Package" when one creates a "container." This is why I asked about a RPM or other means of installing core packages of Asterisks. Virtuozzo is an integrated environment with the ability to "bounce" a "container" to another "hardware node" in the event of a hardware failure, such as a failing RAID. It has an integrated ability to do a scheduled backup do a dedicated back-up server(s). Resources may be allocated at the hardware node level or from a master control panel known as HSP. My network sits behind a very capable hardware firewall with 100Mbps available at any time. I have a substantial investment in Virtuozzo. I have a dual processor dedicated server with RAID sitting next to me capable of running Asterisks on its own but on its own it doesn't have the ability to use a very strong feature set of Virtuozzo. Virtualization is easy; integrated and managed virtualization is a different story. -----Original Message----- From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of app_rpt-users-request at ohnosec.org Sent: Sunday, January 12, 2014 6:49 AM To: app_rpt-users at ohnosec.org Subject: App_rpt-users Digest, Vol 59, Issue 20 Send App_rpt-users mailing list submissions to app_rpt-users at ohnosec.org To subscribe or unsubscribe via the World Wide Web, visit http://ohnosec.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 ohnosec.org You can reach the person managing the list at app_rpt-users-owner at ohnosec.org When replying, please edit your Subject line so it is more specific than "Re: Contents of App_rpt-users digest..." Today's Topics: 1. Re: Incoming connects (Lu Vencl) 2. Re: PATA SSD drives (Keith Goobie) 3. Clipping last 20mS of RX Audio? (Chris Hill) 4. Re: RPM's & Virtuozzo (Geoff) ---------------------------------------------------------------------- Message: 1 Date: Sun, 12 Jan 2014 07:48:19 -0500 From: Lu Vencl To: Jim W7RY Cc: "app_rpt-users at ohnosec.org" Subject: Re: [App_rpt-users] Incoming connects Message-ID: Content-Type: text/plain; charset="utf-8" Hope you at least have employed a firewall such as via webmin. Hackers are likely to be targeting your box some day. Just saying from experience. Sent from my iPhone, Lu Vencl > On Jan 12, 2014, at 1:00 AM, Jim W7RY wrote: > > One of the very first things to do when testing connection issues is to put the node in the DMZ of the router. Easy, simple and can quickly eliminate lots of settings. > > In fact, my node is on the DMZ with a strong password. Never had an issue. > > 73 > Jim W7RY > >> On 1/11/2014 7:21 PM, Doug Crompton wrote: >> OK I think this is solved. Unfortunately it is hard to diagnose all problems when you have an inexperienced person at the other end. >> >> It turns out the router was forwarding the right port BUT it was set to tcp instead of udp. I had gone over this several times with the operator and I had thought it was right but when we looked at it again it was wrong. >> >> When set in the tcp mode it did accept connections but only for a short window of time after a prior disconnect from the other direction. >> >> Thanks for all the input and sorry to cause all the back and forth on this. I learned that you have to be extremely concise when dealing with someone remotely who is inexperienced! >> >> 73 Doug >> WA3DSP >> http://www.crompton.com/hamradio >> >> >> Subject: Re: [App_rpt-users] Incoming connects >> From: tim.sawyer at mac.com >> Date: Fri, 10 Jan 2014 20:29:46 -0800 >> CC: app_rpt-users at ohnosec.org >> To: doug at crompton.com >> >> Do a ?tcpdump port 4569? at the Linux command line and incite a connect from another node. You should see inbound packets. >> >> I have seen ISP?s block port 4569 but not FiOS. I?m on FiOS with an actiontek router and it works fine. >> -- >> Tim >> :wq >> >> On Jan 10, 2014, at 7:41 PM, Doug Crompton wrote: >> >> I am remotely trying to troubleshoot a friends new Allstar installation. I can ssh in and connect out to nodes but I cannot connect in to the system from external nodes. Port 4569 is forwarded. >> >> I discovered this link - >> >> http://www.voip-info.org/wiki/view/IAX >> >> about consistent NAT and I was wondering if that might be the problem. >> >> I was able to connect in one time right after a reboot which might support the NAT issue. >> >> The router is an Actiontek MI424WR GigE as supplied by Verizon on their FIOS system. >> >> Is anyone else having a problem with this router or have any ideas on this? >> >> Nothing is logged at the server or shows up in the client on the system which kind of points to a routing failure. >> >> Is there a good way to check for open port 4569 as I don't think normal port scan programs will check this. >> >> 73 Doug >> WA3DSP >> http://www.crompton.com/hamradio >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Sun, 12 Jan 2014 07:48:20 -0500 From: Keith Goobie To: Doug Crompton , "app_rpt-users at ohnosec.org" Subject: Re: [App_rpt-users] PATA SSD drives Message-ID: Content-Type: text/plain; charset="iso-8859-1" Doug I would be extremely leery about the use of Crucial SSD?s. While they have been a strong product line in the past, their quality control of late has translated into products that do not work. Most recently they have been accused of flooding the market with product that they know to be defective. Buyer beware! We got lured lured in by their defective product, and spent many wasted hours, doing problem analysis and OS rebuilds. When we dug in further through research on the net, and confirmed what is printed above, we abandoned Crucial and quickly moved to another product. At our remote site we are using OCZ (x2) and SANDISK. Both have been great performers. We are running Centos on all SSD?s. (DNS/Web/Mail, DSTAR and Allstar). Keith / VA3YC On 1/11/14 10:25 PM, "Doug Crompton" wrote: > Since many of us are using older computers for our servers that have PATA hard > drives I was wondering if anyone has installed a replacement SSD and if so > what has worked? > > I imagine that the drives are transparent and should have no OS problems? > > Here is a link to one that looks like it would work - > > http://www.crucial.com/store/ssd.aspx?gclid=CLadwPrT97sCFeFlOgodYwYA0g&cpe=p d_ > google_us&ef_id=UtIGvwAABE7D at Wq4:20140112030639:s > > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- keith at goobie.org Keith Goobie Richmond Hill, ON, CANADA -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Sun, 12 Jan 2014 06:16:49 -0800 From: Chris Hill To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] Clipping last 20mS of RX Audio? Message-ID: Content-Type: text/plain; charset=us-ascii Greetings Group: I am looking for the setting that will allow clipping off about 20mS of radio received audio to prevent passing squelch burst onto the network. Receiver in use has PL and COR gated logic to the URIx but for those users without reverse burst PL radios, the noise burst is an issue. Thanks, Chris K7AZ 29275 ------------------------------ Message: 4 Date: Sat, 11 Jan 2014 08:49:26 -0600 From: Geoff To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] RPM's & Virtuozzo Message-ID: <52D159F6.8040506 at gmail.com> Content-Type: text/plain; charset="iso-8859-1"; Format="flowed" On 01/11/2014 03:55 AM, Bob - AF6D wrote: > > Are RPMs available, or could they be created for those of that run > Virtuozzo for Linux by Parallels, as well as other virtualization > software? I generally run one-two virtual servers on an Intel quad > core XEON for unparalleled performance and have the security of daily > backups and the ability to "bounce" a "container" from a failing > "hardware node" to another "hardware node." I use CentOS on all of my > over 100 machines. All of my motherboards have at least one serial > port as do most server boards in production. OpenVZ is the free > version of Virtuozzo and serves as the test bed for it. The ability to > backup and restore anywhere, as well as to bounce or migrate anywhere > have saved my butt many times. > > Couldn't you just install from CD into a VM? or even mount -o loop disk1.iso /mnt/point/ There are claims all over this list that acid/allstar/asterisk works fine in a VM. -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users End of App_rpt-users Digest, Vol 59, Issue 20 ********************************************* From ars.w5omr at gmail.com Sat Jan 11 20:32:04 2014 From: ars.w5omr at gmail.com (Geoff) Date: Sat, 11 Jan 2014 14:32:04 -0600 Subject: [App_rpt-users] Has this been updated? Message-ID: <52D1AA44.7050701@gmail.com> kd3su.us/*allStar*/acid-sysadmin.pdf? how far out of date, is it? -Geoff/W5OMR -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb3ors at gmail.com Sun Jan 12 21:00:18 2014 From: kb3ors at gmail.com (Brian Burton) Date: Sun, 12 Jan 2014 16:00:18 -0500 Subject: [App_rpt-users] App_rpt-users Digest, Vol 59, Issue 22 In-Reply-To: References: Message-ID: On Sun, Jan 12, 2014 at 2:58 PM, wrote: > Send App_rpt-users mailing list submissions to > app_rpt-users at ohnosec.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://ohnosec.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 ohnosec.org > > You can reach the person managing the list at > app_rpt-users-owner at ohnosec.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of App_rpt-users digest..." > > > Today's Topics: > > 1. Re: Incoming connects (Johnny Keeker) > 2. Re: PATA SSD drives (David McGough) > 3. Re: RPM's & Virtuozzo (Bob - AF6D) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 12 Jan 2014 09:11:20 -0800 (PST) > From: Johnny Keeker > To: Lu Vencl , Jim W7RY > Cc: "app_rpt-users at ohnosec.org" > Subject: Re: [App_rpt-users] Incoming connects > Message-ID: > <1389546680.78092.YahooMailNeo at web163604.mail.gq1.yahoo.com> > Content-Type: text/plain; charset="utf-8" > > I had a port forwarding issue with a Xipar node on its own ISP. I bypassed > the router for testing purposes ONLY. The router was blocking the ports.? > Seeing I had to wait for another router to arrive, I decided to leave the > node unprotected just to see if Hackers would actually find it.? With in a > day, there were so many hits, I couldn't type a single character without it > scrolling off the screen.? I let it run away with itself until I got > another router, then powered down the modem, hooked up the router. I waited > before applying power to the modem. I got a different IP, everything was > fine after that.....???? > JK? > knowledge is experience!!!? > > WAN has several nodes, running XIPAR exclussively, right on the interenet with no problems. IPtables must be utilized.. Built in firewall in just about any linux version.. > ________________________________ > From: Lu Vencl > To: Jim W7RY > Cc: "app_rpt-users at ohnosec.org" > Sent: Sunday, January 12, 2014 7:48 AM > Subject: Re: [App_rpt-users] Incoming connects > > > > Hope you at least have employed a firewall such as via webmin. ?Hackers > are likely to be targeting your box some day. Just saying from experience.? > > Sent from my iPhone, Lu Vencl > > On Jan 12, 2014, at 1:00 AM, Jim W7RY wrote: > > > One of the very first things to do when testing connection issues is to > put the node in the DMZ of the router. Easy, simple and can quickly > eliminate lots of settings. > > In fact, my node is on the DMZ with a strong password. Never had an issue. > > 73 > Jim W7RY > > > On 1/11/2014 7:21 PM, Doug Crompton wrote: > > OK I think this is solved. Unfortunately it is hard to diagnose all > problems when you have an inexperienced person at the other end. > > > >It turns out the router was forwarding the right port BUT it was set to > tcp instead of udp.? I had gone over this several times with the operator > and I had thought it was right but when we looked at it again it was wrong. > > > >When set in the tcp mode it did accept connections but only for a short > window of time after a prior disconnect from the other direction. > > > >Thanks for all the input and sorry to cause all the back and forth on > this. I learned that you have to be extremely concise when dealing with > someone remotely who is inexperienced! > > > >73 Doug > >WA3DSP > >http://www.crompton.com/hamradio > > > > > > > > > >________________________________ > >Subject: Re: [App_rpt-users] Incoming connects > >From: tim.sawyer at mac.com > >Date: Fri, 10 Jan 2014 20:29:46 -0800 > >CC: app_rpt-users at ohnosec.org > >To: doug at crompton.com > > > >Do a ?tcpdump port 4569? at the Linux command line and incite a connect > from another node. You should see inbound packets. > > > > > >I have seen ISP?s block port 4569 but not FiOS. I?m on FiOS with an > actiontek router and it works fine. > > > >-- > >Tim > >:wq > > > >On Jan 10, 2014, at 7:41 PM, Doug Crompton wrote: > > > >I am remotely trying to troubleshoot a friends new Allstar installation.? > I can ssh in and connect out to nodes but I cannot connect in to the system > from external nodes. Port 4569 is forwarded. > >> > >>I discovered this link - > >> > >>http://www.voip-info.org/wiki/view/IAX > >> > >>about consistent NAT and I was wondering if that might be the problem. > >> > >>I was able to connect in one time right after a reboot which might > support the NAT issue. > >> > >>The router is an Actiontek MI424WR GigE? as supplied by Verizon on their > FIOS system. > >> > >>Is anyone else having a problem with this router or have any ideas on > this?? > >> > >>Nothing is logged at the server or shows up in the client on the system > which kind of points to a routing failure. > >> > >>Is there a good way to check for open port 4569 as I don't think normal > port scan programs will check this. > >> > >>73 Doug > >>WA3DSP > >>http://www.crompton.com/hamradio > >>_______________________________________________ > >>App_rpt-users mailing list > >>App_rpt-users at ohnosec.org > >>http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > > > > >_______________________________________________ > App_rpt-users mailing list App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > _______________________________________________ > >App_rpt-users mailing list > >App_rpt-users at ohnosec.org > >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://ohnosec.org/pipermail/app_rpt-users/attachments/20140112/ffa98818/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Sun, 12 Jan 2014 13:18:00 -0500 (EST) > From: David McGough > To: Keith Goobie > Cc: "app_rpt-users at ohnosec.org" > Subject: Re: [App_rpt-users] PATA SSD drives > Message-ID: > > Content-Type: TEXT/PLAIN; charset=ISO-8859-1 > > > I will 2nd Keith's comments. I run thru a rash of Crucial SATA SSD's in > the 128GB (more or less) class that seem to fail after a few weeks of use. > VERY annoying!!! > > > > On Sun, 12 Jan 2014, Keith Goobie wrote: > > > Doug > > > > I would be extremely leery about the use of Crucial SSD?s. While they > have > > been a strong product line in the past, their quality control of late has > > translated into products that do not work. Most recently they have been > > accused of flooding the market with product that they know to be > defective. > > Buyer beware! > > > > We got lured lured in by their defective product, and spent many wasted > > hours, doing problem analysis and OS rebuilds. When we dug in further > > through research on the net, and confirmed what is printed above, we > > abandoned Crucial and quickly moved to another product. > > > > At our remote site we are using OCZ (x2) and SANDISK. Both have been > great > > performers. > > > > We are running Centos on all SSD?s. (DNS/Web/Mail, DSTAR and Allstar). > > > > Keith / VA3YC > > > > > > On 1/11/14 10:25 PM, "Doug Crompton" wrote: > > > > > Since many of us are using older computers for our servers that have > PATA hard > > > drives I was wondering if anyone has installed a replacement SSD and > if so > > > what has worked? > > > > > > I imagine that the drives are transparent and should have no OS > problems? > > > > > > Here is a link to one that looks like it would work - > > > > > > > http://www.crucial.com/store/ssd.aspx?gclid=CLadwPrT97sCFeFlOgodYwYA0g&cpe=pd_ > > > google_us&ef_id=UtIGvwAABE7D at Wq4:20140112030639:s > > > > > > 73 Doug > > > WA3DSP > > > http://www.crompton.com/hamradio > > > > > > > > > > > > _______________________________________________ > > > App_rpt-users mailing list > > > App_rpt-users at ohnosec.org > > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > > > > > ------------------------------ > > Message: 3 > Date: Sun, 12 Jan 2014 11:58:10 -0800 > From: "Bob - AF6D" > To: > Subject: Re: [App_rpt-users] RPM's & Virtuozzo > Message-ID: > Content-Type: text/plain; charset="us-ascii" > > Virtuozzo is the same as a VM (in purpose) but it doesn't work the same way > as VMWare. Virtuozzo natively installs the current version of Centos as an > "OS Package" when one creates a "container." This is why I asked about a > RPM > or other means of installing core packages of Asterisks. > > Virtuozzo is an integrated environment with the ability to "bounce" a > "container" to another "hardware node" in the event of a hardware failure, > such as a failing RAID. It has an integrated ability to do a scheduled > backup do a dedicated back-up server(s). Resources may be allocated at the > hardware node level or from a master control panel known as HSP. My network > sits behind a very capable hardware firewall with 100Mbps available at any > time. > > I have a substantial investment in Virtuozzo. I have a dual processor > dedicated server with RAID sitting next to me capable of running Asterisks > on its own but on its own it doesn't have the ability to use a very strong > feature set of Virtuozzo. Virtualization is easy; integrated and managed > virtualization is a different story. > > -----Original Message----- > From: app_rpt-users-bounces at ohnosec.org > [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of > app_rpt-users-request at ohnosec.org > Sent: Sunday, January 12, 2014 6:49 AM > To: app_rpt-users at ohnosec.org > Subject: App_rpt-users Digest, Vol 59, Issue 20 > > Send App_rpt-users mailing list submissions to > app_rpt-users at ohnosec.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://ohnosec.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 ohnosec.org > > You can reach the person managing the list at > app_rpt-users-owner at ohnosec.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of App_rpt-users digest..." > > > Today's Topics: > > 1. Re: Incoming connects (Lu Vencl) > 2. Re: PATA SSD drives (Keith Goobie) > 3. Clipping last 20mS of RX Audio? (Chris Hill) > 4. Re: RPM's & Virtuozzo (Geoff) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 12 Jan 2014 07:48:19 -0500 > From: Lu Vencl > To: Jim W7RY > Cc: "app_rpt-users at ohnosec.org" > Subject: Re: [App_rpt-users] Incoming connects > Message-ID: > Content-Type: text/plain; charset="utf-8" > > Hope you at least have employed a firewall such as via webmin. Hackers are > likely to be targeting your box some day. Just saying from experience. > > Sent from my iPhone, Lu Vencl > > > On Jan 12, 2014, at 1:00 AM, Jim W7RY wrote: > > > > One of the very first things to do when testing connection issues is to > put the node in the DMZ of the router. Easy, simple and can quickly > eliminate lots of settings. > > > > In fact, my node is on the DMZ with a strong password. Never had an > issue. > > > > 73 > > Jim W7RY > > > >> On 1/11/2014 7:21 PM, Doug Crompton wrote: > >> OK I think this is solved. Unfortunately it is hard to diagnose all > problems when you have an inexperienced person at the other end. > >> > >> It turns out the router was forwarding the right port BUT it > was set to tcp instead of udp. I had gone over this several times with the > operator and I had thought it was right but when we looked at it again it > was wrong. > >> > >> When set in the tcp mode it did accept connections but only for a short > window of time after a prior disconnect from the other direction. > >> > >> Thanks for all the input and sorry to cause all the back and > forth on this. I learned that you have to be extremely concise when dealing > with someone remotely who is inexperienced! > >> > >> 73 Doug > >> WA3DSP > >> http://www.crompton.com/hamradio > >> > >> > >> Subject: Re: [App_rpt-users] Incoming connects > >> From: tim.sawyer at mac.com > >> Date: Fri, 10 Jan 2014 20:29:46 -0800 > >> CC: app_rpt-users at ohnosec.org > >> To: doug at crompton.com > >> > >> Do a ?tcpdump port 4569? at the Linux command line and incite a connect > from another node. You should see inbound packets. > >> > >> I have seen ISP?s block port 4569 but not FiOS. I?m on FiOS with an > actiontek router and it works fine. > >> -- > >> Tim > >> :wq > >> > >> On Jan 10, 2014, at 7:41 PM, Doug Crompton wrote: > >> > >> I am remotely trying to troubleshoot a friends new Allstar installation. > I can ssh in and connect out to nodes but I cannot connect in to the system > from external nodes. Port 4569 is forwarded. > >> > >> I discovered this link - > >> > >> http://www.voip-info.org/wiki/view/IAX > >> > >> about consistent NAT and I was wondering if that might be the problem. > >> > >> I was able to connect in one time right after a reboot which might > support the NAT issue. > >> > >> The router is an Actiontek MI424WR GigE as supplied by Verizon on their > FIOS system. > >> > >> Is anyone else having a problem with this router or have any ideas on > this? > >> > >> Nothing is logged at the server or shows up in the client on the system > which kind of points to a routing failure. > >> > >> Is there a good way to check for open port 4569 as I don't think normal > port scan programs will check this. > >> > >> 73 Doug > >> WA3DSP > >> http://www.crompton.com/hamradio > >> _______________________________________________ > >> App_rpt-users mailing list > >> App_rpt-users at ohnosec.org > >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > >> > >> > >> > >> _______________________________________________ > >> App_rpt-users mailing list > >> App_rpt-users at ohnosec.org > >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > < > http://ohnosec.org/pipermail/app_rpt-users/attachments/20140112/02dfc666/at > tachment-0001.html> > > ------------------------------ > > Message: 2 > Date: Sun, 12 Jan 2014 07:48:20 -0500 > From: Keith Goobie > To: Doug Crompton , "app_rpt-users at ohnosec.org" > > Subject: Re: [App_rpt-users] PATA SSD drives > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > Doug > > I would be extremely leery about the use of Crucial SSD?s. While they have > been a strong product line in the past, their quality control of late has > translated into products that do not work. Most recently they have been > accused of flooding the market with product that they know to be defective. > Buyer beware! > > We got lured lured in by their defective product, and spent many wasted > hours, doing problem analysis and OS rebuilds. When we dug in further > through research on the net, and confirmed what is printed above, we > abandoned Crucial and quickly moved to another product. > > At our remote site we are using OCZ (x2) and SANDISK. Both have been great > performers. > > We are running Centos on all SSD?s. (DNS/Web/Mail, DSTAR and Allstar). > > Keith / VA3YC > > > On 1/11/14 10:25 PM, "Doug Crompton" wrote: > > > Since many of us are using older computers for our servers that have PATA > hard > > drives I was wondering if anyone has installed a replacement SSD and if > so > > what has worked? > > > > I imagine that the drives are transparent and should have no OS problems? > > > > Here is a link to one that looks like it would work - > > > > > > http://www.crucial.com/store/ssd.aspx?gclid=CLadwPrT97sCFeFlOgodYwYA0g&cpe=p > d_ > > google_us&ef_id=UtIGvwAABE7D at Wq4:20140112030639:s > > > > 73 Doug > > WA3DSP > > http://www.crompton.com/hamradio > > > > > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -- > keith at goobie.org > Keith Goobie > Richmond Hill, ON, CANADA > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > < > http://ohnosec.org/pipermail/app_rpt-users/attachments/20140112/7f645932/at > tachment-0001.html> > > ------------------------------ > > Message: 3 > Date: Sun, 12 Jan 2014 06:16:49 -0800 > From: Chris Hill > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] Clipping last 20mS of RX Audio? > Message-ID: > Content-Type: text/plain; charset=us-ascii > > Greetings Group: > > I am looking for the setting that will allow clipping off about 20mS of > radio received audio to prevent passing squelch burst onto the network. > Receiver in use has PL and COR gated logic to the URIx but for those users > without reverse burst PL radios, the noise burst is an issue. > > Thanks, > Chris K7AZ > 29275 > > ------------------------------ > > Message: 4 > Date: Sat, 11 Jan 2014 08:49:26 -0600 > From: Geoff > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] RPM's & Virtuozzo > Message-ID: <52D159F6.8040506 at gmail.com> > Content-Type: text/plain; charset="iso-8859-1"; Format="flowed" > > > On 01/11/2014 03:55 AM, Bob - AF6D wrote: > > > > Are RPMs available, or could they be created for those of that run > > Virtuozzo for Linux by Parallels, as well as other virtualization > > software? I generally run one-two virtual servers on an Intel quad > > core XEON for unparalleled performance and have the security of daily > > backups and the ability to "bounce" a "container" from a failing > > "hardware node" to another "hardware node." I use CentOS on all of my > > over 100 machines. All of my motherboards have at least one serial > > port as do most server boards in production. OpenVZ is the free > > version of Virtuozzo and serves as the test bed for it. The ability to > > backup and restore anywhere, as well as to bounce or migrate anywhere > > have saved my butt many times. > > > > > > Couldn't you just install from CD into a VM? > > or even > mount -o loop disk1.iso /mnt/point/ > > There are claims all over this list that acid/allstar/asterisk works > fine in a VM. > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > < > http://ohnosec.org/pipermail/app_rpt-users/attachments/20140111/60cee473/at > tachment.html> > > ------------------------------ > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > End of App_rpt-users Digest, Vol 59, Issue 20 > ********************************************* > > > > > ------------------------------ > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > End of App_rpt-users Digest, Vol 59, Issue 22 > ********************************************* > -- Brian KB3ORS Trustee W3WAN WAN-RS Tech Support -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sun Jan 12 21:04:18 2014 From: doug at crompton.com (Doug Crompton) Date: Sun, 12 Jan 2014 16:04:18 -0500 Subject: [App_rpt-users] PATA SSD drives In-Reply-To: References: , Message-ID: OK or not so OK on the Crucial SSD's. I suspect an adapater like this - http://www.newegg.com/Product/Product.aspx?Item=9SIA1EF1924311 and a standard SATA SSD might be the best way to go. No point in buying old technology. 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb4fxc at inttek.net Sun Jan 12 21:18:03 2014 From: kb4fxc at inttek.net (David McGough) Date: Sun, 12 Jan 2014 16:18:03 -0500 (EST) Subject: [App_rpt-users] PATA SSD drives In-Reply-To: Message-ID: I agree. Get a SATA adapter of some sort and abandon PATA. Then, you've got direct forward compatibility to newer SATA motherboards, too, if you need to replace the MB. A PCI adapter might be an useful option, too. Something like these: http://www.newegg.com/Product/Product.aspx?Item=N82E16816124013 http://www.newegg.com/Product/Product.aspx?Item=N82E16815124006 73, David KB4FXC On Sun, 12 Jan 2014, Doug Crompton wrote: > OK or not so OK on the Crucial SSD's. > > I suspect an adapater like this - > > http://www.newegg.com/Product/Product.aspx?Item=9SIA1EF1924311 > > and a standard SATA SSD might be the best way to go. No point in buying old technology. > 73 Doug > WA3DSP > http://www.crompton.com/hamradio > > > > From jrh at g0fhm.co.uk Sun Jan 12 21:24:24 2014 From: jrh at g0fhm.co.uk (James) Date: Sun, 12 Jan 2014 21:24:24 +0000 Subject: [App_rpt-users] Update Limey Node - Howto? Message-ID: <52D30808.2010300@g0fhm.co.uk> Hi Guys, My Limey node hasn't been updated for the best part of 6 months. The last time I did, something went wrong (I think ALSA had changed) and it took Jim some time poking around inside to fix it! Is there a documented "How to" on how to update a Limey node anywhere on the net? I've done a bit of googling, and all the stuff I managed to find was ACiD related! Thanks, James - 29681 --- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com From jrh at g0fhm.co.uk Sun Jan 12 21:34:06 2014 From: jrh at g0fhm.co.uk (James) Date: Sun, 12 Jan 2014 21:34:06 +0000 Subject: [App_rpt-users] Update Limey Node - Howto? In-Reply-To: <52D30808.2010300@g0fhm.co.uk> References: <52D30808.2010300@g0fhm.co.uk> Message-ID: <52D30A4E.7010303@g0fhm.co.uk> Cancel my last.... I didn't think to look on allstarlink.org! Compiling as we speak.. James On 12/01/2014 21:24, James wrote: > Hi Guys, > > My Limey node hasn't been updated for the best part of 6 months. The > last time I did, something went wrong (I think ALSA had changed) and > it took Jim some time poking around inside to fix it! > > Is there a documented "How to" on how to update a Limey node anywhere > on the net? > > I've done a bit of googling, and all the stuff I managed to find was > ACiD related! > > Thanks, > > James - 29681 > > --- > This email is free from viruses and malware because avast! Antivirus > protection is active. > http://www.avast.com > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users --- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com From ke2n at cs.com Mon Jan 13 00:06:42 2014 From: ke2n at cs.com (Ken) Date: Sun, 12 Jan 2014 19:06:42 -0500 Subject: [App_rpt-users] squelch Message-ID: <007601cf0ff3$56b62180$04226480$@cs.com> You would seem to want the rxsquelchdelay=xxx parameter in your usbradio.conf files This is a carrier squelch-tail-eliminator "delay line" The delay xxx is milliseconds. 73 Ken From cypresstower at yahoo.com Mon Jan 13 03:32:31 2014 From: cypresstower at yahoo.com (Johnny Keeker) Date: Sun, 12 Jan 2014 19:32:31 -0800 (PST) Subject: [App_rpt-users] PATA SSD drives In-Reply-To: References: Message-ID: <1389583951.6156.YahooMailNeo@web163605.mail.gq1.yahoo.com> Brag List! ?I've been running a node for 2 years using a 8GB Innodisk SATADOM D150QV SLC CFDISK satadom. It's not suppose to be a good idea using these devices. I also use only SSD Samsung drives with?TRIM?Support but I don't know that linux supports?TRIM???? http://www.mini-box.com/Storage-Devices ? From: Keith Goobie To: Doug Crompton ; "app_rpt-users at ohnosec.org" Sent: Sunday, January 12, 2014 7:48 AM Subject: Re: [App_rpt-users] PATA SSD drives Doug I would be extremely leery about the use of Crucial SSD?s. ?While they have been a strong product line in the past, their quality control of late has translated into products that do not work. ?Most recently they have been accused of flooding the market with product that they know to be defective. ?Buyer beware! We got lured lured in by their defective product, and spent many wasted hours, doing problem analysis and OS rebuilds. ?When we dug in further through research on the net, and confirmed what is printed above, we abandoned Crucial and quickly moved to another product. At our remote site we are using OCZ (x2) and SANDISK. ?Both have been great performers. We are running Centos on all SSD?s. (DNS/Web/Mail, DSTAR and Allstar). Keith / VA3YC On 1/11/14 10:25 PM, "Doug Crompton" wrote: Since many of us are using older computers for our servers that have PATA hard drives I was wondering if anyone has installed a replacement SSD and if so what has worked? > >I imagine that the drives are transparent and should have no OS problems? > >Here is a link to one that looks like it would work - > >http://www.crucial.com/store/ssd.aspx?gclid=CLadwPrT97sCFeFlOgodYwYA0g&cpe=pd_google_us&ef_id=UtIGvwAABE7D at Wq4:20140112030639:s > >73 Doug >WA3DSP >http://www.crompton.com/hamradio >?????? > >_______________________________________________ >App_rpt-users mailing list >App_rpt-users at ohnosec.org >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -- keith at goobie.org Keith Goobie Richmond Hill, ON, CANADA _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kilo7AlphaZulu at verizon.net Mon Jan 13 04:43:12 2014 From: kilo7AlphaZulu at verizon.net (Chris K7AZ) Date: Sun, 12 Jan 2014 20:43:12 -0800 Subject: [App_rpt-users] squelch In-Reply-To: <007601cf0ff3$56b62180$04226480$@cs.com> Message-ID: Thanks Ken, I will give that a try. 73 Chris On 1/12/14 16:06, "Ken" wrote: > You would seem to want the > rxsquelchdelay=xxx > parameter in your usbradio.conf files > > This is a carrier squelch-tail-eliminator "delay line" > The delay xxx is milliseconds. > > 73 > Ken > > > > From tim.sawyer at mac.com Mon Jan 13 05:34:16 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Sun, 12 Jan 2014 21:34:16 -0800 Subject: [App_rpt-users] Has this been updated? In-Reply-To: <52D1AA44.7050701@gmail.com> References: <52D1AA44.7050701@gmail.com> Message-ID: <3DD57EA1-17B9-4D23-B38D-A75895F8DD0A@mac.com> Seeing as there is a 2008 date right on the top if it, I?d say it's well out of date. On the other hand, most of the stuff on Allstarlink.org and ohnosec.org/drupal is much more current. -- Tim :wq On Jan 11, 2014, at 12:32 PM, Geoff wrote: > kd3su.us/allStar/acid-sysadmin.pdf? > > how far out of date, is it? > > -Geoff/W5OMR > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Mon Jan 13 05:37:41 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Sun, 12 Jan 2014 21:37:41 -0800 Subject: [App_rpt-users] PATA SSD drives In-Reply-To: <1389583951.6156.YahooMailNeo@web163605.mail.gq1.yahoo.com> References: <1389583951.6156.YahooMailNeo@web163605.mail.gq1.yahoo.com> Message-ID: <7CA7D0A3-5816-4629-9350-6A3DB3C9D098@mac.com> It does with current kernels and ext4. -- Tim :wq On Jan 12, 2014, at 7:32 PM, Johnny Keeker wrote: > but I don't know that linux > supports TRIM???? -------------- next part -------------- An HTML attachment was scrubbed... URL: From ars.w5omr at gmail.com Sun Jan 12 14:40:20 2014 From: ars.w5omr at gmail.com (Geoff) Date: Sun, 12 Jan 2014 08:40:20 -0600 Subject: [App_rpt-users] Has this been updated? In-Reply-To: <52D3374F.8080608@kuggie.com> References: <52D1AA44.7050701@gmail.com> <52D3374F.8080608@kuggie.com> Message-ID: <52D2A954.8070204@gmail.com> On 01/12/2014 06:46 PM, Kevin Custer wrote: > On 1/11/2014 3:32 PM, Geoff wrote: >> kd3su.us/*allStar*/acid-sysadmin.pdf? >> >> how far out of date, is it? >> >> -Geoff/W5OMR > > > Geoff, > > Considering it was written at the end of 2008, a good bit might be > missing. Some commands like ctcssfrom=usbinvert and rxsquelchdelay= > are not mentioned in this document, so it's certainly inconsistent > with more modern documentation like what's available directly on the > allstarlink.org site. Yup. I got that from the guy's site it's on. My observation was, that it was fairly well documented and easier to understand than anything I can look up on ohnosec.org. Perhaps -that- could be a project for someone who's more fluent in allstareese. ;-) Don't get yer bottom lip pooched out, Tim... I appreciate all the time, work, and effort you put into your project, and this just may be -me- (and if so, I'll find other sources and not drag the rest down to my level) but cumbersom, non-intuitive and lacking on information (providing you find it) are what *I* get from stumbling and fumbling around in drupal. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kuggie at kuggie.com Mon Jan 13 16:16:36 2014 From: kuggie at kuggie.com (Kevin Custer) Date: Mon, 13 Jan 2014 11:16:36 -0500 Subject: [App_rpt-users] Has this been updated? In-Reply-To: <52D2A954.8070204@gmail.com> References: <52D1AA44.7050701@gmail.com> <52D3374F.8080608@kuggie.com> <52D2A954.8070204@gmail.com> Message-ID: <52D41164.8050400@kuggie.com> On 1/12/2014 9:40 AM, Geoff wrote: > > > My observation was, that it was fairly well documented and easier to > understand than anything I can look up on ohnosec.org. > > Perhaps -that- could be a project for someone who's more fluent in > allstareese. ;-) > > Don't get yer bottom lip pooched out, Tim... I appreciate all the > time, work, and effort you put into your project, and this just may be > -me- (and if so, I'll find other sources and not drag the rest down to > my level) but cumbersom, non-intuitive and lacking on information > (providing you find it) are what *I* get from stumbling and fumbling > around in drupal. Here are two documents that are provided without warranty or promise of usefulness: http://allstarnode.com/wiki/doku.php Links are located at the bottom of the page. Thanks, Kevin - WJ8G -------------- next part -------------- An HTML attachment was scrubbed... URL: From w7ry at centurytel.net Mon Jan 13 20:13:03 2014 From: w7ry at centurytel.net (Jim W7RY) Date: Mon, 13 Jan 2014 12:13:03 -0800 Subject: [App_rpt-users] Has this been updated? In-Reply-To: <52D2A954.8070204@gmail.com> References: <52D1AA44.7050701@gmail.com> <52D3374F.8080608@kuggie.com> <52D2A954.8070204@gmail.com> Message-ID: <52D448CF.2010807@centurytel.net> On 1/12/2014 6:40 AM, Geoff wrote: > > My observation was, that it was fairly well documented and easier to > understand than anything I can look up on ohnosec.org. > > Perhaps -that- could be a project for someone who's more fluent in > allstareese. ;-) > > Don't get yer bottom lip pooched out, Tim... I appreciate all the > time, work, and effort you put into your project, and this just may be > -me- (and if so, I'll find other sources and not drag the rest down to > my level) but cumbersom, non-intuitive and lacking on information > (providing you find it) are what *I* get from stumbling and fumbling > around in drupal. > > Agreed! 73 Jim W7RY > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb1ncj at gmail.com Tue Jan 14 00:21:26 2014 From: kb1ncj at gmail.com (Greg) Date: Mon, 13 Jan 2014 19:21:26 -0500 Subject: [App_rpt-users] allmon local monitor In-Reply-To: References: Message-ID: <52D48306.7080302@gmail.com> Just looking at this again and I'm not sure what "local monitor" is compared to "monitor"? Thanks Greg From cypresstower at yahoo.com Tue Jan 14 01:22:57 2014 From: cypresstower at yahoo.com (Johnny Keeker) Date: Mon, 13 Jan 2014 17:22:57 -0800 (PST) Subject: [App_rpt-users] allmon local monitor In-Reply-To: <52D48306.7080302@gmail.com> References: <52D48306.7080302@gmail.com> Message-ID: <1389662577.65524.YahooMailNeo@web163602.mail.gq1.yahoo.com> Lets say you were connected to the WAN system and you issued a Monitor connection, all nodes on the WAN system would hear the audio A Local Monitor connection, only your node heard the audio ________________________________ From: Greg To: app_rpt-users at ohnosec.org Sent: Monday, January 13, 2014 7:21 PM Subject: [App_rpt-users] allmon local monitor Just looking at this again and I'm not sure what "local monitor" is compared to "monitor"? Thanks Greg _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From w0anm73 at gmail.com Thu Jan 16 02:48:01 2014 From: w0anm73 at gmail.com (Christopher Kovacs) Date: Wed, 15 Jan 2014 20:48:01 -0600 Subject: [App_rpt-users] iax2 Registry Revisted - Question Message-ID: Further info and clarification I am using the Xipar Asterisk release. If I loose WAN network connection, I loose my iax registration which is what I would expect. Note, this loss usually is a result of a cable modem resetting, or some other issues with the cable company and it does not happen frequently. This reset does not result in a new IP address being assigned. I noticed that the State toggles between Timeout and Request Sent, but never will get re-registered until I stop and start asterisk (amportal stop/start). My questions is, Is this normal behavior? should I need to restart asterisk? I am using the following script in cron to check the status and reboot if necessary: #!/bin/bash # # IAX Registration Check, Nofity if offline. # if offline, then allstar will be unavailable # check iax2 registration: IAX_REG=`asterisk -r -x "iax2 show registry" | awk '{ print $6 }' | grep -v State` IAX_REG1=`echo $IAX_REG | awk '{ print $1 }'` IAX_REG2=`echo $IAX_REG | awk '{ print $2 }'` if [ "$IAX_REG1" != "Registered" ] || [ "$IAX_REG2" != "Registered" ]; then echo "Not Registered, take action..." amportal stop sleep 120 service portreserve restart amportal start else echo " All is good..." fi This will get iax to register, but I would think there is some thing wrong with asterisk not being able to re-register without a restart/reboot. Or is this normal behavior? Thanks, 73, Chris w0anm -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Thu Jan 16 04:32:02 2014 From: doug at crompton.com (Doug Crompton) Date: Wed, 15 Jan 2014 23:32:02 -0500 Subject: [App_rpt-users] iax2 Registry Revisted - Question In-Reply-To: References: Message-ID: Just a note that reloading iax will also restart the registration. iax2 reload Not sure about the loss of connection. The registration is done by domain name so you need to have DNS working. When the connection fails that does also. Maybe it does not come back right away? 73 Doug WA3DSP http://www.crompton.com/hamradio Date: Wed, 15 Jan 2014 20:48:01 -0600 From: w0anm73 at gmail.com To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] iax2 Registry Revisted - Question Further info and clarification I am using the Xipar Asterisk release. If I loose WAN network connection, I loose my iax registration which is what I would expect. Note, this loss usually is a result of a cable modem resetting, or some other issues with the cable company and it does not happen frequently. This reset does not result in a new IP address being assigned. I noticed that the State toggles between Timeout and Request Sent, but never will get re-registered until I stop and start asterisk (amportal stop/start). My questions is, Is this normal behavior? should I need to restart asterisk? I am using the following script in cron to check the status and reboot if necessary: #!/bin/bash ## IAX Registration Check, Nofity if offline. # if offline, then allstar will be unavailable # check iax2 registration: IAX_REG=`asterisk -r -x "iax2 show registry" | awk '{ print $6 }' | grep -v State`IAX_REG1=`echo $IAX_REG | awk '{ print $1 }'` IAX_REG2=`echo $IAX_REG | awk '{ print $2 }'` if [ "$IAX_REG1" != "Registered" ] || [ "$IAX_REG2" != "Registered" ]; then echo "Not Registered, take action..." amportal stop sleep 120 service portreserve restart amportal start else echo " All is good..." fi This will get iax to register, but I would think there is some thing wrong with asterisk not being able to re-register without a restart/reboot. Or is this normal behavior? Thanks, 73, Chris w0anm _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From w5jr.lists at att.net Thu Jan 16 06:36:55 2014 From: w5jr.lists at att.net (Mike/W5JR) Date: Thu, 16 Jan 2014 01:36:55 -0500 Subject: [App_rpt-users] Echolink node Message-ID: <82288B6A-2CD0-4544-98F3-20BC35502579@att.net> Need some direction here. I have added the echolink.conf file and the Echolink server is listing the callsign as available. This is the extent of the Echolink help that I've found on the ohnosec site. What I've not be able to locate is what (proper) entries need to be made in the rpt.conf file to support a given AllStar node as an Echolink node. I found the old "announcement" proclaiming Echolink support but following the detail for rpt.conf has not resulted in a working node nor the AllStar node showing active in the web listing. Loading my modified rpt.conf file kills one of my repeater nodes while another and two hubs continue to work. Any examples or pointing me to additional on-line help would be much appreciated. This is an ACID installation. tnx Mike / W5JR Milton GA From tim.sawyer at mac.com Thu Jan 16 15:48:06 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Thu, 16 Jan 2014 07:48:06 -0800 Subject: [App_rpt-users] Echolink node In-Reply-To: <82288B6A-2CD0-4544-98F3-20BC35502579@att.net> References: <82288B6A-2CD0-4544-98F3-20BC35502579@att.net> Message-ID: There is nothing to set in rpt.conf other than the two level adjustments and the (not required) announcement setting. Here?s my echolink.conf from a working node. Note the Allstar node is set here, not in rpt.conf and must point to an active node on your server. [el0] confmode=no call=WD6AWP-L ; Change this! pwd=xxxxxx ; Change this! name=Tim ; Change this to your real name! qth=HB RACES [Allstar 2534] ; Change this to your actual QTH! email=xxxxxxx at gmail.com ; Change this! maxstns=20 rtcptimeout=10 node=520439 ; Change this! recfile=/tmp/recorded.gsm astnode=2534 ; Change this to your active Allstar node number! context=radio-secure server1=server1.echolink.org server2=server5.echolink.org server3=server3.echolink.org ;naeast.echolink.org ;nasouth.echolink.org ;servers.echolink.org ;backup.echolink.org freq=145.140 tone=110.9 lat=33.677793 lon=-118.000978 power=10 height=50 gain=6 dir=0 -- Tim :wq On Jan 15, 2014, at 10:36 PM, Mike/W5JR wrote: > Need some direction here. I have added the echolink.conf file and the Echolink server is listing the callsign as available. This is the extent of the Echolink help that I've found on the ohnosec site. > > What I've not be able to locate is what (proper) entries need to be made in the rpt.conf file to support a given AllStar node as an Echolink node. I found the old "announcement" proclaiming Echolink support but following the detail for rpt.conf has not resulted in a working node nor the AllStar node showing active in the web listing. Loading my modified rpt.conf file kills one of my repeater nodes while another and two hubs continue to work. > > Any examples or pointing me to additional on-line help would be much appreciated. > > This is an ACID installation. > > tnx > Mike / W5JR > Milton GA > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From tim.sawyer at mac.com Thu Jan 16 20:05:21 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Thu, 16 Jan 2014 12:05:21 -0800 Subject: [App_rpt-users] Echolink node In-Reply-To: References: <82288B6A-2CD0-4544-98F3-20BC35502579@att.net> Message-ID: <854E8849-A526-41F2-88BE-46E10F7EB0BC@mac.com> Right, the Echolink node can be any existing node in your system. I have a node dedicated to Echolink with no radio attached. That way I can completely dis/connect Echolink as needed. -- Tim :wq On Jan 16, 2014, at 9:14 AM, Mike/W5JR wrote: > Tim, thanks. I think I get it. The echolink.conf points to a defined node. If I set up a node as non-radio (hub) or even private, then that can be the "Echolink" node. > > tnx > Mike / W5JR > Milton GA > >> On Jan 16, 2014, at 10:48 AM, Tim Sawyer wrote: >> >> There is nothing to set in rpt.conf other than the two level adjustments and the (not required) announcement setting. >> >> Here?s my echolink.conf from a working node. Note the Allstar node is set here, not in rpt.conf and must point to an active node on your server. >> >> [el0] >> confmode=no >> call=WD6AWP-L ; Change this! >> pwd=xxxxxx ; Change this! >> name=Tim ; Change this to your real name! >> qth=HB RACES [Allstar 2534] ; Change this to your actual QTH! >> email=xxxxxxx at gmail.com ; Change this! >> maxstns=20 >> rtcptimeout=10 >> node=520439 ; Change this! >> recfile=/tmp/recorded.gsm >> astnode=2534 ; Change this to your active Allstar node number! >> context=radio-secure >> server1=server1.echolink.org >> server2=server5.echolink.org >> server3=server3.echolink.org >> ;naeast.echolink.org >> ;nasouth.echolink.org >> ;servers.echolink.org >> ;backup.echolink.org >> freq=145.140 >> tone=110.9 >> lat=33.677793 >> lon=-118.000978 >> power=10 >> height=50 >> gain=6 >> dir=0 >> >> >> -- >> Tim >> :wq >> >>> On Jan 15, 2014, at 10:36 PM, Mike/W5JR wrote: >>> >>> Need some direction here. I have added the echolink.conf file and the Echolink server is listing the callsign as available. This is the extent of the Echolink help that I've found on the ohnosec site. >>> >>> What I've not be able to locate is what (proper) entries need to be made in the rpt.conf file to support a given AllStar node as an Echolink node. I found the old "announcement" proclaiming Echolink support but following the detail for rpt.conf has not resulted in a working node nor the AllStar node showing active in the web listing. Loading my modified rpt.conf file kills one of my repeater nodes while another and two hubs continue to work. >>> >>> Any examples or pointing me to additional on-line help would be much appreciated. >>> >>> This is an ACID installation. >>> >>> tnx >>> Mike / W5JR >>> Milton GA >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at ohnosec.org >>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> From bdboyle at bdboyle.com Thu Jan 16 20:39:41 2014 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Thu, 16 Jan 2014 15:39:41 -0500 Subject: [App_rpt-users] Echolink node In-Reply-To: <854E8849-A526-41F2-88BE-46E10F7EB0BC@mac.com> References: <82288B6A-2CD0-4544-98F3-20BC35502579@att.net> <854E8849-A526-41F2-88BE-46E10F7EB0BC@mac.com> Message-ID: <92111DF6-FC7E-4799-BA94-6894422E6837@bdboyle.com> Same here, Tim. Keeps the drive-bys and other low-info Echolink types occupied and the networked systems free of clutter so the rf and allstar users are able/free to use them without an issue. -- Bryan Sent from my iPad > On Jan 16, 2014, at 3:05 PM, Tim Sawyer wrote: > > Right, the Echolink node can be any existing node in your system. I have a node dedicated to Echolink with no radio attached. That way I can completely dis/connect Echolink as needed. > -- > Tim > :wq > >> On Jan 16, 2014, at 9:14 AM, Mike/W5JR wrote: >> >> Tim, thanks. I think I get it. The echolink.conf points to a defined node. If I set up a node as non-radio (hub) or even private, then that can be the "Echolink" node. >> >> tnx >> Mike / W5JR >> Milton GA >> >>> On Jan 16, 2014, at 10:48 AM, Tim Sawyer wrote: >>> >>> There is nothing to set in rpt.conf other than the two level adjustments and the (not required) announcement setting. >>> >>> Here?s my echolink.conf from a working node. Note the Allstar node is set here, not in rpt.conf and must point to an active node on your server. >>> >>> [el0] >>> confmode=no >>> call=WD6AWP-L ; Change this! >>> pwd=xxxxxx ; Change this! >>> name=Tim ; Change this to your real name! >>> qth=HB RACES [Allstar 2534] ; Change this to your actual QTH! >>> email=xxxxxxx at gmail.com ; Change this! >>> maxstns=20 >>> rtcptimeout=10 >>> node=520439 ; Change this! >>> recfile=/tmp/recorded.gsm >>> astnode=2534 ; Change this to your active Allstar node number! >>> context=radio-secure >>> server1=server1.echolink.org >>> server2=server5.echolink.org >>> server3=server3.echolink.org >>> ;naeast.echolink.org >>> ;nasouth.echolink.org >>> ;servers.echolink.org >>> ;backup.echolink.org >>> freq=145.140 >>> tone=110.9 >>> lat=33.677793 >>> lon=-118.000978 >>> power=10 >>> height=50 >>> gain=6 >>> dir=0 >>> >>> >>> -- >>> Tim >>> :wq >>> >>>> On Jan 15, 2014, at 10:36 PM, Mike/W5JR wrote: >>>> >>>> Need some direction here. I have added the echolink.conf file and the Echolink server is listing the callsign as available. This is the extent of the Echolink help that I've found on the ohnosec site. >>>> >>>> What I've not be able to locate is what (proper) entries need to be made in the rpt.conf file to support a given AllStar node as an Echolink node. I found the old "announcement" proclaiming Echolink support but following the detail for rpt.conf has not resulted in a working node nor the AllStar node showing active in the web listing. Loading my modified rpt.conf file kills one of my repeater nodes while another and two hubs continue to work. >>>> >>>> Any examples or pointing me to additional on-line help would be much appreciated. >>>> >>>> This is an ACID installation. >>>> >>>> tnx >>>> Mike / W5JR >>>> Milton GA >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at ohnosec.org >>>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From anthony at olivero.us Thu Jan 16 21:34:49 2014 From: anthony at olivero.us (Tony Olivero) Date: Thu, 16 Jan 2014 15:34:49 -0600 Subject: [App_rpt-users] Echolink node In-Reply-To: <92111DF6-FC7E-4799-BA94-6894422E6837@bdboyle.com> References: <82288B6A-2CD0-4544-98F3-20BC35502579@att.net> <854E8849-A526-41F2-88BE-46E10F7EB0BC@mac.com> <92111DF6-FC7E-4799-BA94-6894422E6837@bdboyle.com> Message-ID: Bryan and Tim, Thanks. You just answered a question I had been wondering about. I'd seen some "echolink" nodes on the stats page and wondered why folks would use an Echolink only node. It didn't occur to me that there wasn't a way to shut off Echolink linking without shutting off all linking. >From an operational perspective, do you use a permenant link to connect your Echolink node then disconnect that link if you choose to, or do you have your users link the echolink node before they can do any Echolink activity? Tony On 1/16/14, Bryan D. Boyle wrote: > Same here, Tim. Keeps the drive-bys and other low-info Echolink types > occupied and the networked systems free of clutter so the rf and allstar > users are able/free to use them without an issue. > > -- > Bryan > Sent from my iPad > >> On Jan 16, 2014, at 3:05 PM, Tim Sawyer wrote: >> >> Right, the Echolink node can be any existing node in your system. I have a >> node dedicated to Echolink with no radio attached. That way I can >> completely dis/connect Echolink as needed. >> -- >> Tim >> :wq >> >>> On Jan 16, 2014, at 9:14 AM, Mike/W5JR wrote: >>> >>> Tim, thanks. I think I get it. The echolink.conf points to a defined >>> node. If I set up a node as non-radio (hub) or even private, then that >>> can be the "Echolink" node. >>> >>> tnx >>> Mike / W5JR >>> Milton GA >>> >>>> On Jan 16, 2014, at 10:48 AM, Tim Sawyer wrote: >>>> >>>> There is nothing to set in rpt.conf other than the two level adjustments >>>> and the (not required) announcement setting. >>>> >>>> Here?s my echolink.conf from a working node. Note the Allstar node is >>>> set here, not in rpt.conf and must point to an active node on your >>>> server. >>>> >>>> [el0] >>>> confmode=no >>>> call=WD6AWP-L ; Change this! >>>> pwd=xxxxxx ; Change this! >>>> name=Tim ; Change this to your real name! >>>> qth=HB RACES [Allstar 2534] ; Change this to your actual QTH! >>>> email=xxxxxxx at gmail.com ; Change this! >>>> maxstns=20 >>>> rtcptimeout=10 >>>> node=520439 ; Change this! >>>> recfile=/tmp/recorded.gsm >>>> astnode=2534 ; Change this to your active Allstar node number! >>>> context=radio-secure >>>> server1=server1.echolink.org >>>> server2=server5.echolink.org >>>> server3=server3.echolink.org >>>> ;naeast.echolink.org >>>> ;nasouth.echolink.org >>>> ;servers.echolink.org >>>> ;backup.echolink.org >>>> freq=145.140 >>>> tone=110.9 >>>> lat=33.677793 >>>> lon=-118.000978 >>>> power=10 >>>> height=50 >>>> gain=6 >>>> dir=0 >>>> >>>> >>>> -- >>>> Tim >>>> :wq >>>> >>>>> On Jan 15, 2014, at 10:36 PM, Mike/W5JR wrote: >>>>> >>>>> Need some direction here. I have added the echolink.conf file and the >>>>> Echolink server is listing the callsign as available. This is the >>>>> extent of the Echolink help that I've found on the ohnosec site. >>>>> >>>>> What I've not be able to locate is what (proper) entries need to be >>>>> made in the rpt.conf file to support a given AllStar node as an >>>>> Echolink node. I found the old "announcement" proclaiming Echolink >>>>> support but following the detail for rpt.conf has not resulted in a >>>>> working node nor the AllStar node showing active in the web listing. >>>>> Loading my modified rpt.conf file kills one of my repeater nodes while >>>>> another and two hubs continue to work. >>>>> >>>>> Any examples or pointing me to additional on-line help would be much >>>>> appreciated. >>>>> >>>>> This is an ACID installation. >>>>> >>>>> tnx >>>>> Mike / W5JR >>>>> Milton GA >>>>> _______________________________________________ >>>>> App_rpt-users mailing list >>>>> App_rpt-users at ohnosec.org >>>>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > From tim.sawyer at mac.com Thu Jan 16 21:46:51 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Thu, 16 Jan 2014 13:46:51 -0800 Subject: [App_rpt-users] Echolink node In-Reply-To: References: <82288B6A-2CD0-4544-98F3-20BC35502579@att.net> <854E8849-A526-41F2-88BE-46E10F7EB0BC@mac.com> <92111DF6-FC7E-4799-BA94-6894422E6837@bdboyle.com> Message-ID: We generally keep the Echolink node connected all the time. But we run with telemetry mode 2 so we don?t hear all the drive-bys. -- Tim :wq On Jan 16, 2014, at 1:34 PM, Tony Olivero wrote: > Bryan and Tim, > > Thanks. You just answered a question I had been wondering about. I'd > seen some "echolink" nodes on the stats page and wondered why folks > would use an Echolink only node. It didn't occur to me that there > wasn't a way to shut off Echolink linking without shutting off all > linking. > > From an operational perspective, do you use a permenant link to > connect your Echolink node then disconnect that link if you choose to, > or do you have your users link the echolink node before they can do > any Echolink activity? > > Tony > > On 1/16/14, Bryan D. Boyle wrote: >> Same here, Tim. Keeps the drive-bys and other low-info Echolink types >> occupied and the networked systems free of clutter so the rf and allstar >> users are able/free to use them without an issue. >> >> -- >> Bryan >> Sent from my iPad >> >>> On Jan 16, 2014, at 3:05 PM, Tim Sawyer wrote: >>> >>> Right, the Echolink node can be any existing node in your system. I have a >>> node dedicated to Echolink with no radio attached. That way I can >>> completely dis/connect Echolink as needed. >>> -- >>> Tim >>> :wq >>> >>>> On Jan 16, 2014, at 9:14 AM, Mike/W5JR wrote: >>>> >>>> Tim, thanks. I think I get it. The echolink.conf points to a defined >>>> node. If I set up a node as non-radio (hub) or even private, then that >>>> can be the "Echolink" node. >>>> >>>> tnx >>>> Mike / W5JR >>>> Milton GA >>>> >>>>> On Jan 16, 2014, at 10:48 AM, Tim Sawyer wrote: >>>>> >>>>> There is nothing to set in rpt.conf other than the two level adjustments >>>>> and the (not required) announcement setting. >>>>> >>>>> Here?s my echolink.conf from a working node. Note the Allstar node is >>>>> set here, not in rpt.conf and must point to an active node on your >>>>> server. >>>>> >>>>> [el0] >>>>> confmode=no >>>>> call=WD6AWP-L ; Change this! >>>>> pwd=xxxxxx ; Change this! >>>>> name=Tim ; Change this to your real name! >>>>> qth=HB RACES [Allstar 2534] ; Change this to your actual QTH! >>>>> email=xxxxxxx at gmail.com ; Change this! >>>>> maxstns=20 >>>>> rtcptimeout=10 >>>>> node=520439 ; Change this! >>>>> recfile=/tmp/recorded.gsm >>>>> astnode=2534 ; Change this to your active Allstar node number! >>>>> context=radio-secure >>>>> server1=server1.echolink.org >>>>> server2=server5.echolink.org >>>>> server3=server3.echolink.org >>>>> ;naeast.echolink.org >>>>> ;nasouth.echolink.org >>>>> ;servers.echolink.org >>>>> ;backup.echolink.org >>>>> freq=145.140 >>>>> tone=110.9 >>>>> lat=33.677793 >>>>> lon=-118.000978 >>>>> power=10 >>>>> height=50 >>>>> gain=6 >>>>> dir=0 >>>>> >>>>> >>>>> -- >>>>> Tim >>>>> :wq >>>>> >>>>>> On Jan 15, 2014, at 10:36 PM, Mike/W5JR wrote: >>>>>> >>>>>> Need some direction here. I have added the echolink.conf file and the >>>>>> Echolink server is listing the callsign as available. This is the >>>>>> extent of the Echolink help that I've found on the ohnosec site. >>>>>> >>>>>> What I've not be able to locate is what (proper) entries need to be >>>>>> made in the rpt.conf file to support a given AllStar node as an >>>>>> Echolink node. I found the old "announcement" proclaiming Echolink >>>>>> support but following the detail for rpt.conf has not resulted in a >>>>>> working node nor the AllStar node showing active in the web listing. >>>>>> Loading my modified rpt.conf file kills one of my repeater nodes while >>>>>> another and two hubs continue to work. >>>>>> >>>>>> Any examples or pointing me to additional on-line help would be much >>>>>> appreciated. >>>>>> >>>>>> This is an ACID installation. >>>>>> >>>>>> tnx >>>>>> Mike / W5JR >>>>>> Milton GA >>>>>> _______________________________________________ >>>>>> App_rpt-users mailing list >>>>>> App_rpt-users at ohnosec.org >>>>>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at ohnosec.org >>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From tameadows at suddenlink.net Thu Jan 16 22:05:24 2014 From: tameadows at suddenlink.net (Terry Meadows) Date: Thu, 16 Jan 2014 17:05:24 -0500 Subject: [App_rpt-users] not in data base Message-ID: <52D857A4.7090109@suddenlink.net> My node (28549) was up in running fine. With IAXRPt working and Zoiper. Just fine-until I went to the allstar portal and tried to implement a APRS change. I now can no longer access other nodes, or use Zoiper or in the web transceiver list. I think I am no longer in the data base. I can access echolink stations,but not allstar nodes. From ea8ee1 at gmail.com Fri Jan 17 22:05:17 2014 From: ea8ee1 at gmail.com (ea8ee) Date: Fri, 17 Jan 2014 22:05:17 +0000 Subject: [App_rpt-users] echolink station denied Message-ID: Hello I would like to put on the list of stations not allowed to echolink some stations as I can do into the asterisk node -------------- next part -------------- An HTML attachment was scrubbed... URL: From w2ymm1 at gmail.com Fri Jan 17 22:37:02 2014 From: w2ymm1 at gmail.com (W2YMM) Date: Fri, 17 Jan 2014 17:37:02 -0500 Subject: [App_rpt-users] Telemetry Help Message-ID: Hello, I wanted to know if there is a way to shut off or limit announcements that I hear on my Allstar node. When connected to a large hub I very often hear "Remote Already In This Mode" and I'll hear when stations connect and Disconnect from each other, or if a call fails. I'd like to turn that off, but can't seem figure out where to do it. I looked at the Telemetry section here http://ohnosec.org/drupal/node/102 but It doesn't look like anything on my node.. At least in /etc/asterisk/rpt.conf Any help would be greatly appreciated. Thanks Robert Prybyzerski Jr W2YMM 631-960-1051 http://www.w2ymm.com Allstar 28183 -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk6ecm at gmail.com Fri Jan 17 22:53:03 2014 From: kk6ecm at gmail.com (kk6ecm) Date: Fri, 17 Jan 2014 14:53:03 -0800 Subject: [App_rpt-users] echolink station denied In-Reply-To: References: Message-ID: See http://ohnosec.org/drupal/node/56, how to deny Echolink nodes in Asterisk Echolink.conf. Bob kk6ecm Sent from iPad On Jan 17, 2014, at 2:05 PM, ea8ee wrote: > > > Hello I would like to put on the list of stations not allowed to echolink some stations as I can do into the asterisk node > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk6ecm at gmail.com Fri Jan 17 23:36:48 2014 From: kk6ecm at gmail.com (kk6ecm) Date: Fri, 17 Jan 2014 15:36:48 -0800 Subject: [App_rpt-users] Fwd: echolink station denied References: Message-ID: <28AE7FE8-E8F8-4055-A9E3-CAFFA68D7DDF@gmail.com> deny=ea8cab, ea7jse ; on a line by itself Like your last statement but with "deny" one "d" Sent from iPad Begin forwarded message: > From: ea8ee > Date: January 17, 2014, 3:25:04 PM PST > To: kk6ecm > Subject: Re: [App_rpt-users] echolink station denied > > [el0] > confmode=no > call=W6ABC-R ; Change this! > pwd=XXXXX ; Change this! > name=Asterisk-EL-channel-driver ; Change this to your real name! > qth=Asterisk-EL-channel-driver ; Change this to your actual QTH! > email=foo at bar.com ; Change this! > maxstns=20 > rtcptimeout=10 > node=123456 ; Change this! > recfile=/tmp/recorded.gsm > astnode=2345 ; Change this to your active Allstar node number! > context=radio-secure > server1=server1.echolink.org > server2=server2.echolink.org > server3=server3.echolink.org > freq=145.000 ; Freq in MHz > tone=100.0 ; CTCSS Tone (0 for none) > lat=34.74978 ; Latitude in decimal degrees > lon=-92.27666 ; Longitude in decimal degrees > power=0 ; 0=0W, 1=1W, 2=4W, 3=9W, 4=16W, 5=25W, 6=36W, 7=49W, 8=64W, 9=81W (Power in Watts) > height=0 ; 0=10' ,1=20',2=40',3=80' ,4=160' ,5=320' ,6=640' ,7=1280',8=2560',9=5120' (AMSL in Feet) > gain=7 ; Gain in db (0-9) > dir=0 ; 0=omni, 1=45deg, 2=90deg, 3=135deg, 4=180deg, 5=225deg, 6=270deg, 7=315deg, 8=360deg (Direction)deny=EA8CAB,EA7JSE > ddeny=EA8CAP,EA7JES > this is correct?? > > > > > 2014/1/17 kk6ecm >> See http://ohnosec.org/drupal/node/56, how to deny Echolink nodes in Asterisk Echolink.conf. >> >> Bob >> kk6ecm >> >> >> >> Sent from iPad >> >> >> On Jan 17, 2014, at 2:05 PM, ea8ee wrote: >> >>> >>> >>> Hello I would like to put on the list of stations not allowed to echolink some stations as I can do into the asterisk node >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at ohnosec.org >>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From k5tra at austin.rr.com Sat Jan 18 00:18:46 2014 From: k5tra at austin.rr.com (tom) Date: Fri, 17 Jan 2014 18:18:46 -0600 Subject: [App_rpt-users] new node configuration In-Reply-To: References: Message-ID: <000f01cf13e2$daa86780$8ff93680$@rr.com> I just registered a new node. Now, when I try to update information such as voter interface, I only have URI type interface options available. I also cannot find an input path to repeater site information. This will be a RTCM running in Washington on a server here in Austin. I would like it to be seen as being located in WA, instead of Austin, TX. I believe this was easier to update previously. Tom / K5TRA From tim.sawyer at mac.com Sat Jan 18 00:42:02 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Fri, 17 Jan 2014 16:42:02 -0800 Subject: [App_rpt-users] new node configuration In-Reply-To: <000f01cf13e2$daa86780$8ff93680$@rr.com> References: <000f01cf13e2$daa86780$8ff93680$@rr.com> Message-ID: <7F350D3A-70A4-4C35-8512-7025056EAF14@mac.com> Hi Tom, There never has been any configurations options for RTCMs on the portal. It's 100% manual, conf file fun :-) As far as the RTCM being remote from the server on the map there has never been a way to do that. But I am considering how to add that. -- Tim :wq > On Jan 17, 2014, at 4:18 PM, tom wrote: > > I just registered a new node. Now, when I try to update information such as > voter interface, I only have URI type interface options available. I also > cannot find an input path to repeater site information. This will be a RTCM > running in Washington on a server here in Austin. I would like it to be seen > as being located in WA, instead of Austin, TX. I believe this was easier to > update previously. > Tom / K5TRA > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From mike at midnighteng.com Sat Jan 18 01:22:53 2014 From: mike at midnighteng.com (mike at midnighteng.com) Date: Fri, 17 Jan 2014 18:22:53 -0700 Subject: [App_rpt-users] =?utf-8?q?Telemetry_Help?= Message-ID: <20140117182253.71befee5dbd13c5325dd1a521b4e73ee.9013626e69.wbe@email06.secureserver.net> An HTML attachment was scrubbed... URL: From w8khw1 at gmail.com Sat Jan 18 03:59:45 2014 From: w8khw1 at gmail.com (Kevin Walsh) Date: Fri, 17 Jan 2014 22:59:45 -0500 Subject: [App_rpt-users] Install Script Failing Message-ID: Hi, I am trying to rebuild a node and I'm getting an error. It happens in the second install script. I have attached a screen shot of where it's failing. It appears that a file has been deleted from downloads.asterisk.org. Thanks, Kevin W8KHW[image: Inline image 1] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Script Fail.jpg Type: image/jpeg Size: 77251 bytes Desc: not available URL: From allstarlink at mcleanzone.com Sat Jan 18 04:16:47 2014 From: allstarlink at mcleanzone.com (allstarlink at mcleanzone.com) Date: Fri, 17 Jan 2014 22:16:47 -0600 Subject: [App_rpt-users] Telemetry Help In-Reply-To: <20140117182253.71befee5dbd13c5325dd1a521b4e73ee.9013626e69.wbe@email06.secureserver.net> References: <20140117182253.71befee5dbd13c5325dd1a521b4e73ee.9013626e69.wbe@email06.secureserver.net> Message-ID: <019701cf1404$1c8c1180$55a43480$@com> Robert, Te stop hearing remote telemetry you just need to disable it. Add these lines to your rpt.conf under the functions stanza. [functions] it may read [functions28183] 901=cop,33 ; Local telemetry output enabled 902=cop,34 ; Local telemetry output disabled 903=cop,35 ; Local telemetry output timed Remote (when anybody connects/disconnects from xxxxx Only) You can also put that into your startup script to stop it from ever happening. [28183] startup_macro=*903# rxchannel = Radio/usb28183 ; Rx audio/ signaling channel If you ever want to re-enable it, just do a *901 Thank you, Fred McLean AllStar 29503 832-948-5200 From: mike at midnighteng.com [mailto:mike at midnighteng.com] Sent: Friday, January 17, 2014 7:23 PM To: App_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Telemetry Help You have no control of announcements from other nodes you are connected to. If you think about that, others telemetry is important to know if you are going to be connected to them. Otherwise, you could interfere with pending operations. ...mike/kb8jnm -------- Original Message -------- Subject: [App_rpt-users] Telemetry Help From: W2YMM Date: Fri, January 17, 2014 5:37 pm To: App_rpt-users at ohnosec.org Hello, I wanted to know if there is a way to shut off or limit announcements that I hear on my Allstar node. When connected to a large hub I very often hear "Remote Already In This Mode" and I'll hear when stations connect and Disconnect from each other, or if a call fails. I'd like to turn that off, but can't seem figure out where to do it. I looked at the Telemetry section here http://ohnosec.org/drupal/node/102 but It doesn't look like anything on my node.. At least in /etc/asterisk/rpt.conf Any help would be greatly appreciated. Thanks Robert Prybyzerski Jr W2YMM 631-960-1051 http://www.w2ymm.com Allstar 28183 _____ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From markjohnston73 at gmail.com Sat Jan 18 04:18:47 2014 From: markjohnston73 at gmail.com (Mark Johnston) Date: Fri, 17 Jan 2014 20:18:47 -0800 Subject: [App_rpt-users] Install Script Failing In-Reply-To: References: Message-ID: Put the link the my browser and it downloads... maybe a glitch, run the script again? downloads.asterisk.org/pub/telephony/sounds/releases/asterisk-core-sounds-en-gsm-1.4.9.tar.gz "Got Root?" How many software engineers does it take to change a light bulb? *None. It's a hardware problem.* Unix is user friendly. It's just very particular about who it's friends are. WINDOWS: Will Install Needless Data On Whole System MICROSOFT: Most Intelligent Customers Realize Our Software Only Fools Teenagers. A ntennas P oorly P laced L acks E ngineering The best way to accelerate a computer running Windows is at 9.81 m/s?. *"I get paid to support Windows, I use Linux to get work done."* On Fri, Jan 17, 2014 at 7:59 PM, Kevin Walsh wrote: > Hi, > > I am trying to rebuild a node and I'm getting an error. It happens in the > second install script. I have attached a screen shot of where it's failing. > It appears that a file has been deleted from downloads.asterisk.org. > > Thanks, > > Kevin > W8KHW[image: Inline image 1] > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Script Fail.jpg Type: image/jpeg Size: 77251 bytes Desc: not available URL: From doug at crompton.com Sat Jan 18 04:32:20 2014 From: doug at crompton.com (Doug Crompton) Date: Fri, 17 Jan 2014 23:32:20 -0500 Subject: [App_rpt-users] Install Script Failing In-Reply-To: References: Message-ID: I am not an expert on this but it looks like it is trying to download the file. I tried and the file is there.. [root at WA3DSP_Allstar utils]# wget http://downloads.asterisk.org/pub/telephony/sounds/releases/asterisk-core-sounds-en-gsm-1.4.9.tar.gz --2014-01-17 23:29:44-- http://downloads.asterisk.org/pub/telephony/sounds/releases/asterisk-core-sounds-en-gsm-1.4.9.tar.gz Resolving downloads.asterisk.org... 76.164.171.238, 2001:470:e0d4::ee Connecting to downloads.asterisk.org|76.164.171.238|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1610579 (1.5M) [application/x-gzip] Saving to: `asterisk-core-sounds-en-gsm-1.4.9.tar.gz' 100%[================================================================================================>] 1,610,579 1.25M/s in 1.2s 2014-01-17 23:29:46 (1.25 MB/s) - `asterisk-core-sounds-en-gsm-1.4.9.tar.gz' saved [1610579/1610579] Do you have good internet connectivity? I found that changing the IP address to static does not always work well. So I leave it DHCP and change it after the install. 73 Doug WA3DSP http://www.crompton.com/hamradio Date: Fri, 17 Jan 2014 22:59:45 -0500 From: w8khw1 at gmail.com To: App_rpt-users at ohnosec.org Subject: [App_rpt-users] Install Script Failing Hi, I am trying to rebuild a node and I'm getting an error. It happens in the second install script. I have attached a screen shot of where it's failing. It appears that a file has been deleted from downloads.asterisk.org. Thanks, Kevin W8KHW _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Script Fail.jpg Type: image/jpeg Size: 77251 bytes Desc: not available URL: From w8khw1 at gmail.com Sat Jan 18 04:43:25 2014 From: w8khw1 at gmail.com (Kevin Walsh) Date: Fri, 17 Jan 2014 23:43:25 -0500 Subject: [App_rpt-users] Install Script Failing In-Reply-To: References: Message-ID: Thanks guys for the quick feedback. Obviously something is confused here. How many Microsoft engineers does it take to change a light bulb? None. Microsoft declares darkness a standard and everybody just accepts it. How many Help Desk Technicians does it take to change the light bulb? Have you tried turning the light off, and then back on again? Kevin On Fri, Jan 17, 2014 at 11:32 PM, Doug Crompton wrote: > I am not an expert on this but it looks like it is trying to download the > file. I tried and the file is there.. > > [root at WA3DSP_Allstar utils]# wget > http://downloads.asterisk.org/pub/telephony/sounds/releases/asterisk-core-sounds-en-gsm-1.4.9.tar.gz > --2014-01-17 23:29:44-- > http://downloads.asterisk.org/pub/telephony/sounds/releases/asterisk-core-sounds-en-gsm-1.4.9.tar.gz > Resolving downloads.asterisk.org... 76.164.171.238, 2001:470:e0d4::ee > Connecting to downloads.asterisk.org|76.164.171.238|:80... connected. > HTTP request sent, awaiting response... 200 OK > Length: 1610579 (1.5M) [application/x-gzip] > Saving to: `asterisk-core-sounds-en-gsm-1.4.9.tar.gz' > > 100%[================================================================================================>] > 1,610,579 1.25M/s in 1.2s > > 2014-01-17 23:29:46 (1.25 MB/s) - > `asterisk-core-sounds-en-gsm-1.4.9.tar.gz' saved [1610579/1610579] > > > Do you have good internet connectivity? I found that changing the IP > address to static does not always work well. So I leave it DHCP and change > it after the install. > > > > *73 DougWA3DSPhttp://www.crompton.com/hamradio > * > > > ------------------------------ > Date: Fri, 17 Jan 2014 22:59:45 -0500 > From: w8khw1 at gmail.com > To: App_rpt-users at ohnosec.org > Subject: [App_rpt-users] Install Script Failing > > Hi, > > I am trying to rebuild a node and I'm getting an error. It happens in the > second install script. I have attached a screen shot of where it's failing. > It appears that a file has been deleted from downloads.asterisk.org. > > Thanks, > > Kevin > W8KHW > > _______________________________________________ App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Script Fail.jpg Type: image/jpeg Size: 77251 bytes Desc: not available URL: From mike at midnighteng.com Sat Jan 18 04:57:03 2014 From: mike at midnighteng.com (mike at midnighteng.com) Date: Fri, 17 Jan 2014 21:57:03 -0700 Subject: [App_rpt-users] =?utf-8?q?Telemetry_Help?= Message-ID: <20140117215703.71befee5dbd13c5325dd1a521b4e73ee.e764a40f9e.wbe@email06.secureserver.net> An HTML attachment was scrubbed... URL: From doug at crompton.com Sat Jan 18 05:07:20 2014 From: doug at crompton.com (Doug Crompton) Date: Sat, 18 Jan 2014 00:07:20 -0500 Subject: [App_rpt-users] Telemetry Help In-Reply-To: <019701cf1404$1c8c1180$55a43480$@com> References: <20140117182253.71befee5dbd13c5325dd1a521b4e73ee.9013626e69.wbe@email06.secureserver.net>, <019701cf1404$1c8c1180$55a43480$@com> Message-ID: Putting these two lines in your node stanza or stanzas in rpt.conf will probably do what you want - holdofftelem=1 telemdefault=2 http://ohnosec.org/drupal/node/110 http://ohnosec.org/drupal/node/102 http://ohnosec.org/drupal/node/103 73 Doug WA3DSP http://www.crompton.com/hamradio From: allstarlink at mcleanzone.com To: mike at midnighteng.com; App_rpt-users at ohnosec.org Date: Fri, 17 Jan 2014 22:16:47 -0600 Subject: Re: [App_rpt-users] Telemetry Help Robert, Te stop hearing remote telemetry you just need to disable it. Add these lines to your rpt.conf under the functions stanza. [functions] it may read [functions28183]901=cop,33 ; Local telemetry output enabled902=cop,34 ; Local telemetry output disabled903=cop,35 ; Local telemetry output timed Remote (when anybody connects/disconnects from xxxxx Only) You can also put that into your startup script to stop it from ever happening. [28183] startup_macro=*903#rxchannel = Radio/usb28183 ; Rx audio/ signaling channel If you ever want to re-enable it, just do a *901 Thank you,Fred McLeanAllStar 29503832-948-5200 From: mike at midnighteng.com [mailto:mike at midnighteng.com] Sent: Friday, January 17, 2014 7:23 PM To: App_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Telemetry Help You have no control of announcements from other nodes you are connected to. If you think about that, others telemetry is important to know if you are going to be connected to them. Otherwise, you could interfere with pending operations. ...mike/kb8jnm -------- Original Message -------- Subject: [App_rpt-users] Telemetry Help From: W2YMM Date: Fri, January 17, 2014 5:37 pm To: App_rpt-users at ohnosec.orgHello, I wanted to know if there is a way to shut off or limit announcements that I hear on my Allstar node.When connected to a large hub I very often hear "Remote Already In This Mode" and I'll hear when stations connect and Disconnect from each other, or if a call fails.I'd like to turn that off, but can't seem figure out where to do it.I looked at the Telemetry section here http://ohnosec.org/drupal/node/102 but It doesn't look like anything on my node.. At least in /etc/asterisk/rpt.conf Any help would be greatly appreciated.Thanks Robert Prybyzerski JrW2YMM 631-960-1051 http://www.w2ymm.comAllstar 28183_______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From allstarlink at mcleanzone.com Sat Jan 18 05:36:35 2014 From: allstarlink at mcleanzone.com (allstarlink at mcleanzone.com) Date: Fri, 17 Jan 2014 23:36:35 -0600 Subject: [App_rpt-users] Telemetry Help In-Reply-To: <20140117215703.71befee5dbd13c5325dd1a521b4e73ee.e764a40f9e.wbe@email06.secureserver.net> References: <20140117215703.71befee5dbd13c5325dd1a521b4e73ee.e764a40f9e.wbe@email06.secureserver.net> Message-ID: <01cd01cf140f$4243ac70$c6cb0550$@com> I think that the tag for *903 isn?t very clear. It should probably read, ?Disable telemetry announcements from remote connected nodes.?, or something like that. The way I understood his complaint was hearing telemetry from whatever nodes(s) he was connected to. You are correct. These commands affect only the node you are currently controlling. Most times I have all telemetry enabled as that is the default. The only time I execute a *903 is when I connect to a large linked system and only if the announcements become annoying to me. I rarely use the *902, but sometimes it is nice to disable connections being made locally. A good example for use would be on an RF node that is also used as a hub node. Connect to 29503. We can discuss it. J Thank you, Fred McLean ? w0fcm 832-948-5200 Node 29503 From: mike at midnighteng.com [mailto:mike at midnighteng.com] Sent: Friday, January 17, 2014 10:57 PM To: App_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Telemetry Help Please correct me if I'm not seeing this correctly... but don't those commands only effect local telemetry (on your node) ? I believe his complaint was hearing the telemetry on a connected node/hub. ...mike/kb8jnm -------- Original Message -------- Subject: RE: [App_rpt-users] Telemetry Help From: < allstarlink at mcleanzone.com> Date: Fri, January 17, 2014 11:16 pm To: < mike at midnighteng.com>, < App_rpt-users at ohnosec.org> Cc: < w2ymm1 at gmail.com> Robert, Te stop hearing remote telemetry you just need to disable it. Add these lines to your rpt.conf under the functions stanza. [functions] it may read [functions28183] 901=cop,33 ; Local telemetry output enabled 902=cop,34 ; Local telemetry output disabled 903=cop,35 ; Local telemetry output timed Remote (when anybody connects/disconnects from xxxxx Only) You can also put that into your startup script to stop it from ever happening. [28183] startup_macro=*903# rxchannel = Radio/usb28183 ; Rx audio/ signaling channel If you ever want to re-enable it, just do a *901 Thank you, Fred McLean AllStar 29503 832-948-5200 From: mike at midnighteng.com [ mailto:mike at midnighteng.com] Sent: Friday, January 17, 2014 7:23 PM To: App_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Telemetry Help You have no control of announcements from other nodes you are connected to. If you think about that, others telemetry is important to know if you are going to be connected to them. Otherwise, you could interfere with pending operations. ...mike/kb8jnm -------- Original Message -------- Subject: [App_rpt-users] Telemetry Help From: W2YMM < w2ymm1 at gmail.com> Date: Fri, January 17, 2014 5:37 pm To: App_rpt-users at ohnosec.org Hello, I wanted to know if there is a way to shut off or limit announcements that I hear on my Allstar node. When connected to a large hub I very often hear "Remote Already In This Mode" and I'll hear when stations connect and Disconnect from each other, or if a call fails. I'd like to turn that off, but can't seem figure out where to do it. I looked at the Telemetry section here http://ohnosec.org/drupal/node/102 but It doesn't look like anything on my node.. At least in /etc/asterisk/rpt.conf Any help would be greatly appreciated. Thanks Robert Prybyzerski Jr W2YMM 631-960-1051 http://www.w2ymm.com Allstar 28183 _____ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Sat Jan 18 15:46:58 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Sat, 18 Jan 2014 07:46:58 -0800 Subject: [App_rpt-users] Telemetry Help In-Reply-To: <01cd01cf140f$4243ac70$c6cb0550$@com> References: <20140117215703.71befee5dbd13c5325dd1a521b4e73ee.e764a40f9e.wbe@email06.secureserver.net> <01cd01cf140f$4243ac70$c6cb0550$@com> Message-ID: That *903 command (cop 35) means that when you issue a link command you hear the telemetry from your command and a timer starts. I think the timer is a minute or two long. During that time you will here all telemetry just as if you were in *901 (cop 33). Once the timer expires you are in *902 (cop 34) and you won't hear any telemetry. This is documented on the ohnosec.org site. Search for telemetry. -- Tim :wq > On Jan 17, 2014, at 9:36 PM, allstarlink at mcleanzone.com wrote: > > I think that the tag for *903 isn?t very clear. It should probably read, ?Disable telemetry announcements from remote connected nodes.?, or something like that. The way I understood his complaint was hearing telemetry from whatever nodes(s) he was connected to. > > You are correct. These commands affect only the node you are currently controlling. > > Most times I have all telemetry enabled as that is the default. The only time I execute a *903 is when I connect to a large linked system and only if the announcements become annoying to me. I rarely use the *902, but sometimes it is nice to disable connections being made locally. A good example for use would be on an RF node that is also used as a hub node. > > Connect to 29503. We can discuss it. J > > Thank you, > Fred McLean ? w0fcm > 832-948-5200 > Node 29503 > > From: mike at midnighteng.com [mailto:mike at midnighteng.com] > Sent: Friday, January 17, 2014 10:57 PM > To: App_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Telemetry Help > > > Please correct me if I'm not seeing this correctly... > but don't those commands only effect local telemetry (on your node) ? > > I believe his complaint was hearing the telemetry on a connected node/hub. > > > ...mike/kb8jnm > > -------- Original Message -------- > Subject: RE: [App_rpt-users] Telemetry Help > From: > Date: Fri, January 17, 2014 11:16 pm > To: , > Cc: > > Robert, > > Te stop hearing remote telemetry you just need to disable it. > > Add these lines to your rpt.conf under the functions stanza. > > [functions] it may read [functions28183] > 901=cop,33 ; Local telemetry output enabled > 902=cop,34 ; Local telemetry output disabled > 903=cop,35 ; Local telemetry output timed Remote (when anybody connects/disconnects from xxxxx Only) > > You can also put that into your startup script to stop it from ever happening. > [28183] > startup_macro=*903# > rxchannel = Radio/usb28183 ; Rx audio/ signaling channel > > If you ever want to re-enable it, just do a *901 > > > Thank you, > Fred McLean > AllStar 29503 > 832-948-5200 > > > > From: mike at midnighteng.com [mailto:mike at midnighteng.com] > Sent: Friday, January 17, 2014 7:23 PM > To: App_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Telemetry Help > > > You have no control of announcements from other nodes you are connected to. > > If you think about that, others telemetry is important to know if you are going to be connected to them. Otherwise, you could interfere with pending operations. > > > ...mike/kb8jnm > > -------- Original Message -------- > Subject: [App_rpt-users] Telemetry Help > From: W2YMM > Date: Fri, January 17, 2014 5:37 pm > To: App_rpt-users at ohnosec.org > Hello, I wanted to know if there is a way to shut off or limit announcements that I hear on my Allstar node. > When connected to a large hub I very often hear "Remote Already In This Mode" and I'll hear when stations connect and Disconnect from each other, or if a call fails. > I'd like to turn that off, but can't seem figure out where to do it. > I looked at the Telemetry section here http://ohnosec.org/drupal/node/102 > but It doesn't look like anything on my node.. At least in /etc/asterisk/rpt.conf > > Any help would be greatly appreciated. > Thanks > > Robert Prybyzerski Jr > W2YMM > 631-960-1051 > http://www.w2ymm.com > Allstar 28183 > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike at midnighteng.com Sat Jan 18 17:38:14 2014 From: mike at midnighteng.com (mike at midnighteng.com) Date: Sat, 18 Jan 2014 10:38:14 -0700 Subject: [App_rpt-users] =?utf-8?q?Telemetry_Help?= Message-ID: <20140118103814.71befee5dbd13c5325dd1a521b4e73ee.098b336a13.wbe@email06.secureserver.net> An HTML attachment was scrubbed... URL: From doug at crompton.com Sat Jan 18 18:16:54 2014 From: doug at crompton.com (Doug Crompton) Date: Sat, 18 Jan 2014 13:16:54 -0500 Subject: [App_rpt-users] Echolink database In-Reply-To: <9C9EFAFB-A2F8-493D-83C2-2D867FB90567@mac.com> References: , <968FC7E4-D431-46A8-A721-0A517A071A37@mac.com>, , , , , <9C9EFAFB-A2F8-493D-83C2-2D867FB90567@mac.com> Message-ID: Tim (and all), OK on rpt.conf. CCing this to the forum. I think my confusion was between the xipar and acid Allstar versions. Apparently the xipar version uses the echolink/sl0 stanza setting. Also I will be adding echolink call lookup to lsnodes for those that have echolink enabled. Can anyone can explain the third parameter (shown as 1 below) for 'echolink dbget' ? It seems that it does not matter what it is but it has to be there. WA3DSP_Allstar*CLI> echolink dbget 1 147090 147090|WA3DSP-L|50.191.8.33 WA3DSP_Allstar*CLI> echolink dbget Usage: echolink dbget Looks up echolink db entry 73 Doug WA3DSP http://www.crompton.com/hamradio From: tim.sawyer at mac.com Subject: Re: Echolink database Date: Sat, 18 Jan 2014 07:55:52 -0800 To: doug at crompton.com Sorry I didn't read your note thoroughly. Yes, zap/pseudo is the way to do it with no radio. Just add another node to your system and point echolink at it. --Tim:wq On Jan 17, 2014, at 10:55 PM, Doug Crompton wrote: Tim, What is the proper way to install echolink in rpt.conf ? I tried - rxchannel=echolink/el0 and on restart it failed - would not enter cli. This is the way it is shown in the examples. When I use - rxchannel=Zap/pseudo It works. In both cases the echolink.conf points to this stanza. I want to have a node just for echolink. No radio. I will connect to radio node as desired. Echolink seems to work with the pseudo channel, someone connected to me and we communicated. 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk6ecm at gmail.com Sat Jan 18 21:57:21 2014 From: kk6ecm at gmail.com (Bob) Date: Sat, 18 Jan 2014 13:57:21 -0800 Subject: [App_rpt-users] Echolink database In-Reply-To: References: , <968FC7E4-D431-46A8-A721-0A517A071A37@mac.com>, , , , , <9C9EFAFB-A2F8-493D-83C2-2D867FB90567@mac.com> Message-ID: The "1" is the argument count.. an integer number of arguments passed to the routine. It is a C and C++ thing. In this case, the node number is a single argument being passed to the routine that returns the nodename|callsign|IP address. See code below. Bob kk6ecm +* CLI extensions +*/ + +/* Debug mode */ +static int el_do_debug(int fd, int argc, char *argv[]); +static int el_do_dbdump(int fd, int argc, char *argv[]); +static int el_do_dbget(int fd, int argc, char *argv[]); argc ("argument count") + +static char debug_usage[] = +"Usage: echolink debug level {0-7}\n" +" Enables debug messages in app_rpt\n"; + +static char dbdump_usage[] = +"Usage: echolink dbdump [nodename|callsign|ipaddr]\n" +" Dumps entire echolink db\n"; + +static char dbget_usage[] = +"Usage: echolink dbget \n" +" Looks up echolink db entry\n"; _____ From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Doug Crompton Sent: Saturday, January 18, 2014 10:17 AM To: Tim Sawyer Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Echolink database Tim (and all), OK on rpt.conf. CCing this to the forum. I think my confusion was between the xipar and acid Allstar versions. Apparently the xipar version uses the echolink/sl0 stanza setting. Also I will be adding echolink call lookup to lsnodes for those that have echolink enabled. Can anyone can explain the third parameter (shown as 1 below) for 'echolink dbget' ? It seems that it does not matter what it is but it has to be there. WA3DSP_Allstar*CLI> echolink dbget 1 147090 147090|WA3DSP-L|50.191.8.33 WA3DSP_Allstar*CLI> echolink dbget Usage: echolink dbget Looks up echolink db entry 73 Doug WA3DSP http://www.crompton.com/hamradio _____ From: tim.sawyer at mac.com Subject: Re: Echolink database Date: Sat, 18 Jan 2014 07:55:52 -0800 To: doug at crompton.com Sorry I didn't read your note thoroughly. Yes, zap/pseudo is the way to do it with no radio. Just add another node to your system and point echolink at it. -- Tim :wq On Jan 17, 2014, at 10:55 PM, Doug Crompton wrote: Tim, What is the proper way to install echolink in rpt.conf ? I tried - rxchannel=echolink/el0 and on restart it failed - would not enter cli. This is the way it is shown in the examples. When I use - rxchannel=Zap/pseudo It works. In both cases the echolink.conf points to this stanza. I want to have a node just for echolink. No radio. I will connect to radio node as desired. Echolink seems to work with the pseudo channel, someone connected to me and we communicated. 73 Doug WA3DSP http://www.crompton.com/hamradio _____ -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Sat Jan 18 23:06:24 2014 From: doug at crompton.com (Doug Crompton) Date: Sat, 18 Jan 2014 18:06:24 -0500 Subject: [App_rpt-users] Echolink database In-Reply-To: References: , <968FC7E4-D431-46A8-A721-0A517A071A37@mac.com>, , , , , <9C9EFAFB-A2F8-493D-83C2-2D867FB90567@mac.com> , Message-ID: No argc is used in the subroutine not the calling arguments which are all contain in argv with size argc. I finally looked at the code which I should have done to begin with. The argument is 'n' ,'c', or 'i' for node, call, or IP. The reason anything seemed to work is because 'n' is default an I was entering the node. static int el_do_dbget(int fd, int argc, char *argv[]) { char c; struct eldb *mynode; if (argc != 4) return RESULT_SHOWUSAGE; c = tolower(*argv[2]); ast_mutex_lock(&el_db_lock); if (c == 'i') mynode = el_db_find_ipaddr(argv[3]); else if (c == 'c') mynode = el_db_find_callsign(argv[3]); else mynode = el_db_find_nodenum(argv[3]); ast_mutex_unlock(&el_db_lock); if (!mynode) { ast_cli(fd,"Error: Entry for %s not found!\n",argv[3]); return RESULT_FAILURE; } ast_cli(fd,"%s|%s|%s\n",mynode->nodenum,mynode->callsign,mynode->ipaddr); return RESULT_SUCCESS; } 73 Doug WA3DSP http://www.crompton.com/hamradio From: kk6ecm at gmail.com To: doug at crompton.com CC: app_rpt-users at ohnosec.org Subject: RE: [App_rpt-users] Echolink database Date: Sat, 18 Jan 2014 13:57:21 -0800 The ?1? is the argument count.. an integer number of arguments passed to the routine. It is a C and C++ thing. In this case, the node number is a single argument being passed to the routine that returns the nodename|callsign|IP address. See code below. Bob kk6ecm +* CLI extensions+*/++/* Debug mode */+static int el_do_debug(int fd, int argc, char *argv[]);+static int el_do_dbdump(int fd, int argc, char *argv[]);+static int el_do_dbget(int fd, int argc, char *argv[]); argc (?argument count?) ++static char debug_usage[] =+"Usage: echolink debug level {0-7}\n"+" Enables debug messages in app_rpt\n";++static char dbdump_usage[] =+"Usage: echolink dbdump [nodename|callsign|ipaddr]\n"+" Dumps entire echolink db\n";++static char dbget_usage[] =+"Usage: echolink dbget \n"+" Looks up echolink db entry\n"; From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Doug Crompton Sent: Saturday, January 18, 2014 10:17 AM To: Tim Sawyer Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Echolink database Tim (and all), OK on rpt.conf. CCing this to the forum. I think my confusion was between the xipar and acid Allstar versions. Apparently the xipar version uses the echolink/sl0 stanza setting. Also I will be adding echolink call lookup to lsnodes for those that have echolink enabled. Can anyone can explain the third parameter (shown as 1 below) for 'echolink dbget' ? It seems that it does not matter what it is but it has to be there. WA3DSP_Allstar*CLI> echolink dbget 1 147090 147090|WA3DSP-L|50.191.8.33 WA3DSP_Allstar*CLI> echolink dbget Usage: echolink dbget Looks up echolink db entry 73 Doug WA3DSP http://www.crompton.com/hamradio From: tim.sawyer at mac.com Subject: Re: Echolink database Date: Sat, 18 Jan 2014 07:55:52 -0800 To: doug at crompton.com Sorry I didn't read your note thoroughly. Yes, zap/pseudo is the way to do it with no radio. Just add another node to your system and point echolink at it. -- Tim :wq On Jan 17, 2014, at 10:55 PM, Doug Crompton wrote: Tim, What is the proper way to install echolink in rpt.conf ? I tried - rxchannel=echolink/el0 and on restart it failed - would not enter cli. This is the way it is shown in the examples. When I use - rxchannel=Zap/pseudo It works. In both cases the echolink.conf points to this stanza. I want to have a node just for echolink. No radio. I will connect to radio node as desired. Echolink seems to work with the pseudo channel, someone connected to me and we communicated. 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From 41.2jim at gmail.com Sun Jan 19 03:42:48 2014 From: 41.2jim at gmail.com (41.2 Jim) Date: Sat, 18 Jan 2014 20:42:48 -0700 Subject: [App_rpt-users] RTCM and no courtesy tones Message-ID: Just did a swap, from an URIx to an RTCM and have it configured and working for one thing... now I have no courtesy tones local I can hear the ct for link traffic but no tone of any kind for local traffic just the ID'er sounds off and time works, and can force an ID...but no local courtesy tones ...and the telemdefault=2 (did before the RTCM) is not working either, when connected to a hub I hear all connect to and disconnect traffic all the time , no 'on for a time then off' any ideas? Be easy, this is my first RTCM Thank you all in advance, for your time Jim Frederick KF6QBW 446.600- 100.0 PL Repeater AllStar Node # 28839 Skype = jim41.2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From hwstar at rodgers.sdcoxmail.com Sun Jan 19 18:31:21 2014 From: hwstar at rodgers.sdcoxmail.com (Stephen Rodgers) Date: Sun, 19 Jan 2014 10:31:21 -0800 Subject: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list Message-ID: <52DC19F9.3090300@rodgers.sdcoxmail.com> I am issuing a stern warning to those too lazy to go through the proper mechanism to unsubscribe from this list. If you don't visit the app-rpt mailing list and unsubscribe using http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users, and file an abuse complaint with your ISP instead, your email address will be PERMANENTLY BANNED. You will end being unable to subscribe to the list in the future. I've had to explain to our ISP several times why these abuse complaints happen, and the rate of complaints has been increasing over the last several months. Abuse complaints from ISP's are serious business, and could result in the web hosting company canceling our account we get too many of them over a certain amount of time. Moral of the story: If you want to unsubscribe, don't take the low road and file an abuse complaint with your ISP. Take the time to do it correctly by doing a web search for app_rpt mailing list and following the instructions there. Steve WA6ZFT From ars.w5omr at gmail.com Sun Jan 19 18:51:22 2014 From: ars.w5omr at gmail.com (Geoff) Date: Sun, 19 Jan 2014 12:51:22 -0600 Subject: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list In-Reply-To: <52DC19F9.3090300@rodgers.sdcoxmail.com> References: <52DC19F9.3090300@rodgers.sdcoxmail.com> Message-ID: <52DC1EAA.8000904@gmail.com> On 01/19/2014 12:31 PM, Stephen Rodgers wrote: > I am issuing a stern warning to those too lazy to go through the proper mechanism to unsubscribe from this list. If you > don't visit the app-rpt mailing list and unsubscribe using http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users, > and file an abuse complaint with your ISP instead, your email address will be PERMANENTLY BANNED. You will end being > unable to subscribe to the list in the future. > > I've had to explain to our ISP several times why these abuse complaints happen, and the rate of complaints has been > increasing over the last several months. > > Abuse complaints from ISP's are serious business, and could result in the web hosting company canceling our account we > get too many of them over a certain amount of time. > > Moral of the story: If you want to unsubscribe, don't take the low road and file an abuse complaint with your ISP. Take > the time to do it correctly by doing a web search for app_rpt mailing list and following the instructions there. > I'm confused, Steve. Didn't this skillet-heads have to go through the proper mechanism to subscribe to the list? Why isn't it common sense to use the same mechanism to UN-subscribe? Seems I saw an 'unsubscribe' request float out on the list a week (or 3?) ago... Who doesn't know you don't enter list option commands through the list? What really fires my ass up is that these are -supposed- to be knowledgeable, Amateur Radio operators who possess sufficient knowledge in computer networking, and wiring radio connections. There was a UK station that hooked up to our network, yesterday - said "Qsk Qsk Qsk from The U.K. This is call sign)." I rejected my first impulse to say "Q-signals are for CW operators, for short cuts", but WTH does QSK (in this context) mean, and why hasn't he learned of CQ? Or, since we're on FM, just throw your callsign out there? If someone -wants- to talk to you, they will! A pet-peeve (since we're talking about stupid people)... "This is ("call-sign") monitoring". Announcing that you're listening around is Redundant. Just your callsign transmitted on the air is all that's needed. This, as I'm taking a break from re-writing my rpt.conf file to include a new simplex node... perhaps a little frustration on my part (trying to research commands...) and a spark to ignite got me fired up. I'll go crawl back under my rock, now. -Geoff/W5OMR 29655 29656 29657 From doug at crompton.com Sun Jan 19 19:11:11 2014 From: doug at crompton.com (Doug Crompton) Date: Sun, 19 Jan 2014 14:11:11 -0500 Subject: [App_rpt-users] lsnodes 1.01 Message-ID: I updated my lsnodes Perl scripts to include Echolink node identification. It lists the call letters of connected Echolink nodes. This feature requires that Echolink is installed in the server at least to the point of downloading the Echolink database. A further description and download are at the web page. http://crompton.com/hamradio/allstar/lsnodes.html 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: lsnodes_echolink_screenshop-sm.jpg Type: image/jpeg Size: 94616 bytes Desc: not available URL: From doug at crompton.com Sun Jan 19 19:31:37 2014 From: doug at crompton.com (Doug Crompton) Date: Sun, 19 Jan 2014 14:31:37 -0500 Subject: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list In-Reply-To: <52DC1EAA.8000904@gmail.com> References: <52DC19F9.3090300@rodgers.sdcoxmail.com>, <52DC1EAA.8000904@gmail.com> Message-ID: I agree. This is crazy. At the very least if you forgot you could ask on the list for help. Maybe you should publicly announce who these people are! >What really fires my ass up is that these are -supposed- to be >knowledgeable, Amateur Radio operators who possess sufficient knowledge >in computer networking, and wiring radio connections.73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike at midnighteng.com Sun Jan 19 19:49:30 2014 From: mike at midnighteng.com (mike at midnighteng.com) Date: Sun, 19 Jan 2014 12:49:30 -0700 Subject: [App_rpt-users] Just a test message... no need to read or reply Message-ID: <20140119124930.71befee5dbd13c5325dd1a521b4e73ee.b1c055a94b.wbe@email06.secureserver.net> An HTML attachment was scrubbed... URL: From w8khw1 at gmail.com Sun Jan 19 20:40:03 2014 From: w8khw1 at gmail.com (Kevin Walsh) Date: Sun, 19 Jan 2014 15:40:03 -0500 Subject: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list In-Reply-To: <52DC19F9.3090300@rodgers.sdcoxmail.com> References: <52DC19F9.3090300@rodgers.sdcoxmail.com> Message-ID: <7157A346-1773-48D9-A757-49F82184FA00@gmail.com> Hi, The list serve software inserts a footer into each message thread. Can you edit that footer to include a link "Click here to unsubscribe from the App_rpt-users mailing list. It will stop these messages from being sent to you". Kevin W8KHW On Jan 19, 2014, at 1:31 PM, Stephen Rodgers wrote: > I am issuing a stern warning to those too lazy to go through the proper mechanism to unsubscribe from this list. If you > don't visit the app-rpt mailing list and unsubscribe using http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users, > and file an abuse complaint with your ISP instead, your email address will be PERMANENTLY BANNED. You will end being > unable to subscribe to the list in the future. > > I've had to explain to our ISP several times why these abuse complaints happen, and the rate of complaints has been > increasing over the last several months. > > Abuse complaints from ISP's are serious business, and could result in the web hosting company canceling our account we > get too many of them over a certain amount of time. > > Moral of the story: If you want to unsubscribe, don't take the low road and file an abuse complaint with your ISP. Take > the time to do it correctly by doing a web search for app_rpt mailing list and following the instructions there. > > Steve > WA6ZFT > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From hwstar at rodgers.sdcoxmail.com Sun Jan 19 20:57:28 2014 From: hwstar at rodgers.sdcoxmail.com (Stephen Rodgers) Date: Sun, 19 Jan 2014 12:57:28 -0800 Subject: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list In-Reply-To: <7157A346-1773-48D9-A757-49F82184FA00@gmail.com> References: <52DC19F9.3090300@rodgers.sdcoxmail.com> <7157A346-1773-48D9-A757-49F82184FA00@gmail.com> Message-ID: <52DC3C38.1080600@rodgers.sdcoxmail.com> On 01/19/2014 12:40 PM, Kevin Walsh wrote: > Hi, > > The list serve software inserts a footer into each message thread. Can you edit that footer to include a link "Click here to unsubscribe from the App_rpt-users mailing list. It will stop these messages from being sent to you". > > Kevin > W8KHW > > On Jan 19, 2014, at 1:31 PM, Stephen Rodgers wrote: > >> I am issuing a stern warning to those too lazy to go through the proper mechanism to unsubscribe from this list. If you >> don't visit the app-rpt mailing list and unsubscribe using http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users, >> and file an abuse complaint with your ISP instead, your email address will be PERMANENTLY BANNED. You will end being >> unable to subscribe to the list in the future. >> >> I've had to explain to our ISP several times why these abuse complaints happen, and the rate of complaints has been >> increasing over the last several months. >> >> Abuse complaints from ISP's are serious business, and could result in the web hosting company canceling our account we >> get too many of them over a certain amount of time. >> >> Moral of the story: If you want to unsubscribe, don't take the low road and file an abuse complaint with your ISP. Take >> the time to do it correctly by doing a web search for app_rpt mailing list and following the instructions there. >> >> Steve >> WA6ZFT >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > Done. Thanks for the tip. Steve WA6ZFT From ars.w5omr at gmail.com Sun Jan 19 21:11:23 2014 From: ars.w5omr at gmail.com (Geoff) Date: Sun, 19 Jan 2014 15:11:23 -0600 Subject: [App_rpt-users] adding a node Message-ID: <52DC3F7B.1070707@gmail.com> My node 29655 has been working, and things are great, having fun with courtesy tones, wait-times, etc... Had 29656 configured to be the echolink node... echolink connects are great - even have the system spitting out callsigns of echolink connections (that are allowed), and things have been great! ... until .... Today, I built a cable for a 2nd URIx to Kenwood TMV-7a, using the packet port. That's not the issue. Issue is when I plugged in the 2nd URIx. radio-tune-menu thinks it's 29656! How do I tell asterisk that it's supposed to be 29657? From brett.friermood at gmail.com Sun Jan 19 23:05:37 2014 From: brett.friermood at gmail.com (Brett Friermood) Date: Sun, 19 Jan 2014 17:05:37 -0600 Subject: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list In-Reply-To: <52DC1EAA.8000904@gmail.com> References: <52DC19F9.3090300@rodgers.sdcoxmail.com> <52DC1EAA.8000904@gmail.com> Message-ID: On Sun, Jan 19, 2014 at 12:51 PM, Geoff wrote: > A pet-peeve (since we're talking about stupid people)... > "This is ("call-sign") monitoring". Announcing that you're listening around > is Redundant. Just your callsign transmitted on the air is all that's > needed. I understand where you are coming from, but not necessarily. It of course depends on the "culture" of the system or systems being used, but distinguishing between an ID only and a invitation to talk to you can be very handy. The same can be said about the believed to be redundant "for ID" statement. Especially on a busy net, such as for a race, where net control will act on just hearing your callsign, distinguishing that such a transmission is just to legally identify can make things go much more smoothly and not create extra transmissions. This of course doesn't apply to someone who uses "for ID" in the middle of a conversation between only two stations. Brett KQ9N From Bryan at bryanfields.net Mon Jan 20 00:04:52 2014 From: Bryan at bryanfields.net (Bryan Fields) Date: Sun, 19 Jan 2014 19:04:52 -0500 Subject: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list In-Reply-To: References: <52DC19F9.3090300@rodgers.sdcoxmail.com> <7157A346-1773-48D9-A757-49F82184FA00@gmail.com> Message-ID: <52DC6824.9080209@bryanfields.net> On 1/19/14 3:40 PM, Kevin Walsh wrote: > The list serve software inserts a footer into each message thread. Can you > edit that footer to include a link "Click here to unsubscribe from the > App_rpt-users mailing list. It will stop these messages from being sent to > you". couple points as I've hosted listserv's before. 1. This is redundant, it's already in the headers List-Unsubscribe: , 2. This will not make a difference to these people, they will still send abuse complaints. People are buttholes; as rule hams have a higher percentage of buttholes than the general population. How about you publicly shame them and b7 them from allstar? 73's -- Bryan Fields 727-409-1194 - Voice 727-214-2508 - Fax http://bryanfields.net From mike at midnighteng.com Mon Jan 20 00:06:11 2014 From: mike at midnighteng.com (mike at midnighteng.com) Date: Sun, 19 Jan 2014 17:06:11 -0700 Subject: [App_rpt-users] =?utf-8?q?WARNING=3A_Filing_an_abuse_complaint_to?= =?utf-8?q?_unsubscribe_will_result_in_you_being_permanently_banned_from_t?= =?utf-8?q?his_mailing_list?= Message-ID: <20140119170611.71befee5dbd13c5325dd1a521b4e73ee.7b9127787c.wbe@email06.secureserver.net> An HTML attachment was scrubbed... URL: From hwstar at rodgers.sdcoxmail.com Mon Jan 20 02:50:42 2014 From: hwstar at rodgers.sdcoxmail.com (Stephen Rodgers) Date: Sun, 19 Jan 2014 18:50:42 -0800 Subject: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list In-Reply-To: <20140119170611.71befee5dbd13c5325dd1a521b4e73ee.7b9127787c.wbe@email06.secureserver.net> References: <20140119170611.71befee5dbd13c5325dd1a521b4e73ee.7b9127787c.wbe@email06.secureserver.net> Message-ID: <52DC8F02.3040404@rodgers.sdcoxmail.com> On 01/19/2014 04:06 PM, mike at midnighteng.com wrote: > > Steve, > > First, Thanks for your efforts to keep this running. I know how thankless it can be. > > I did want to alert you as to what may be some of the cause. > > A bit of frustration with some folks I think, > > I own many domains, having them allows my to configure my email any way I see > fit to each domain. I can say I have endless amounts of email addresses at each > domain but all emails under that domain are sent from only one address. > > I normally make each sign-up to any internet based list/user very unique but > with this list, a person can not have a different reply to address than your > sending address. > > Doing so allows you to get the mail but not send one to users on the list, > because it came from a different address. > > It also will not allow you to retrieve your password from the list. > > I think some folks have been in this trap, unable to send messages to the list > and if they forgot their password, unable to retrieve it to unsubscribe. > > In fact, a message to you Steve, will not be delivered under that circumstance. > I found out when I signed up the hard way and tested it again this afternoon. > same same. > > Perhaps it needs to be stated when signing-up that your sending and receiving > addresses must be the same or perhaps there is a way to tweak mailman to allow > the split addressing. > > I can clearly see that if this is the case with some that have signed-up, they > would have a hard time knowing why their messages were not being seen by anyone > and unsubscribing. > > Just sharing my thoughts in hope of some solutions to make your job easier. > Sometime I would like to speak to you about "mailman" as I was thinking of using > it for a few projects of my own. > > 73, > > ...mike/kb8jnm > > > > > -------- Original Message -------- > Subject: [App_rpt-users] WARNING: Filing an abuse complaint to > unsubscribe will result in you being permanently banned from this > mailing list > From: Stephen Rodgers > > Date: Sun, January 19, 2014 1:31 pm > To: app_rpt-users at ohnosec.org > > I am issuing a stern warning to those too lazy to go through the proper > mechanism to unsubscribe from this list. If you > don't visit the app-rpt mailing list and unsubscribe using > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users, > and file an abuse complaint with your ISP instead, your email address will > be PERMANENTLY BANNED. You will end being > unable to subscribe to the list in the future. > > I've had to explain to our ISP several times why these abuse complaints > happen, and the rate of complaints has been > increasing over the last several months. > > Abuse complaints from ISP's are serious business, and could result in the > web hosting company canceling our account we > get too many of them over a certain amount of time. > > Moral of the story: If you want to unsubscribe, don't take the low road and > file an abuse complaint with your ISP. Take > the time to do it correctly by doing a web search for app_rpt mailing list > and following the instructions there. > > Steve > WA6ZFT > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. > Mailman decides to echo or not based on the source email address it receives. It will not echo a message if the source email address isn't in a valid account. If the source email address has changed or is forwarded from another address, they are not going to be able to send messages to the list, or unsubscribe. This is one of Mailman's shortcomings. I don't see any easy way out unless the user is smart enough to examine the mail headers and figure out what address mailman used to send the list message, and use that to cancel the subscription. Steve WA6ZFT From n3fe at repeater.net Mon Jan 20 02:54:26 2014 From: n3fe at repeater.net (Corey Dean) Date: Sun, 19 Jan 2014 21:54:26 -0500 Subject: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list In-Reply-To: <52DC1EAA.8000904@gmail.com> References: <52DC19F9.3090300@rodgers.sdcoxmail.com> <52DC1EAA.8000904@gmail.com> Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E0485A034F264@exchange.mail.repeater.net> On the mailman list I run I put the unsub link in the footer. When an ISP contacts me I simply forward a message that contains the footer and they drop the complaint. Corey N3FE -----Original Message----- From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Geoff Sent: Sunday, January 19, 2014 1:51 PM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] WARNING: Filing an abuse complaint to unsubscribe will result in you being permanently banned from this mailing list On 01/19/2014 12:31 PM, Stephen Rodgers wrote: > I am issuing a stern warning to those too lazy to go through the > proper mechanism to unsubscribe from this list. If you don't visit the > app-rpt mailing list and unsubscribe using > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users, > and file an abuse complaint with your ISP instead, your email address > will be PERMANENTLY BANNED. You will end being unable to subscribe to the list in the future. > > I've had to explain to our ISP several times why these abuse > complaints happen, and the rate of complaints has been increasing over the last several months. > > Abuse complaints from ISP's are serious business, and could result in > the web hosting company canceling our account we get too many of them over a certain amount of time. > > Moral of the story: If you want to unsubscribe, don't take the low > road and file an abuse complaint with your ISP. Take the time to do it correctly by doing a web search for app_rpt mailing list and following the instructions there. > I'm confused, Steve. Didn't this skillet-heads have to go through the proper mechanism to subscribe to the list? Why isn't it common sense to use the same mechanism to UN-subscribe? Seems I saw an 'unsubscribe' request float out on the list a week (or 3?) ago... Who doesn't know you don't enter list option commands through the list? What really fires my ass up is that these are -supposed- to be knowledgeable, Amateur Radio operators who possess sufficient knowledge in computer networking, and wiring radio connections. There was a UK station that hooked up to our network, yesterday - said "Qsk Qsk Qsk from The U.K. This is call sign)." I rejected my first impulse to say "Q-signals are for CW operators, for short cuts", but WTH does QSK (in this context) mean, and why hasn't he learned of CQ? Or, since we're on FM, just throw your callsign out there? If someone -wants- to talk to you, they will! A pet-peeve (since we're talking about stupid people)... "This is ("call-sign") monitoring". Announcing that you're listening around is Redundant. Just your callsign transmitted on the air is all that's needed. This, as I'm taking a break from re-writing my rpt.conf file to include a new simplex node... perhaps a little frustration on my part (trying to research commands...) and a spark to ignite got me fired up. I'll go crawl back under my rock, now. -Geoff/W5OMR 29655 29656 29657 _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From doug at crompton.com Tue Jan 21 07:44:46 2014 From: doug at crompton.com (Doug Crompton) Date: Tue, 21 Jan 2014 02:44:46 -0500 Subject: [App_rpt-users] Node numbering Message-ID: Are IRLP nodes listed with a preceding '8' ? The reason I ask is that the following showed up in a node listing ************************* CONNECTED NODES ************************* T27133, T29228, T29331, T29477, T29980, T89109 It would make sense that the 89109 was IRLP reflector 9109 If so I want to annotate that in my lsnodes script. 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From jrorke at cogeco.ca Tue Jan 21 11:54:24 2014 From: jrorke at cogeco.ca (REDBUTTON_CTRL) Date: Tue, 21 Jan 2014 06:54:24 -0500 Subject: [App_rpt-users] Node numbering In-Reply-To: References: Message-ID: <52DE5FF0.7090900@cogeco.ca> If I remember IRLP nodes embedded in Ap_Rpt were prefixed with a 4. This may simply be a private node perhaps? VA3RQ On 1/21/2014 2:44 AM, Doug Crompton wrote: > Are IRLP nodes listed with a preceding '8' ? The reason I ask is that > the following showed up in a node listing > > ************************* CONNECTED NODES ************************* > > T27133, T29228, T29331, T29477, T29980, T89109 > > It would make sense that the 89109 was IRLP reflector 9109 > > If so I want to annotate that in my lsnodes script. > > *73 Doug > WA3DSP > http://www.crompton.com/hamradio* > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: From buddy at brannan.name Tue Jan 21 12:54:34 2014 From: buddy at brannan.name (Buddy Brannan) Date: Tue, 21 Jan 2014 07:54:34 -0500 Subject: [App_rpt-users] Node numbering In-Reply-To: <52DE5FF0.7090900@cogeco.ca> References: <52DE5FF0.7090900@cogeco.ca> Message-ID: <59A1840E-CD04-4F14-9F24-107F15D34BD8@brannan.name> IRLP nodes did, indeed, used to be in the 4XXXXX range, until 2010 or whenever when Dave asked that IRLP no longer be supported by app_rpt. At which time I sold my IRLP board and pulled my IRLP node. (I will end there before going on to my usual grumbling about IRLP.) On Jan 21, 2014, at 6:54 AM, REDBUTTON_CTRL wrote: > If I remember IRLP nodes embedded in Ap_Rpt were prefixed with a 4. > > This may simply be a private node perhaps? > > VA3RQ > > On 1/21/2014 2:44 AM, Doug Crompton wrote: >> Are IRLP nodes listed with a preceding '8' ? The reason I ask is that the following showed up in a node listing >> >> ************************* CONNECTED NODES ************************* >> >> T27133, T29228, T29331, T29477, T29980, T89109 >> >> It would make sense that the 89109 was IRLP reflector 9109 >> >> If so I want to annotate that in my lsnodes script. >> >> 73 Doug >> WA3DSP >> http://www.crompton.com/hamradio >> >> >> _______________________________________________ >> App_rpt-users mailing list >> >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> >> To unsubscribe from this list please visit >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" >> You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. >> > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From buck at thebghouse.org Tue Jan 21 20:12:53 2014 From: buck at thebghouse.org (buck) Date: Tue, 21 Jan 2014 12:12:53 -0800 Subject: [App_rpt-users] How to keep / restart connection failures Message-ID: <005801cf16e5$2afb2e20$80f18a60$@thebghouse.org> Hi, We have 2 nodes connected over a microwave link. The link is very stable but occasionally the nodes disconnect due to network instability. Can I change the retry counts or failure times between nodes? Has someone written a script that run under cron to check and re-connect nodes that drop? Thanks, Birton, N6UG Nodes: 27035 27283 28138 .. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 2950 bytes Desc: not available URL: From keith at goobie.org Tue Jan 21 20:18:06 2014 From: keith at goobie.org (Keith Goobie) Date: Tue, 21 Jan 2014 15:18:06 -0500 Subject: [App_rpt-users] How to keep / restart connection failures In-Reply-To: <005801cf16e5$2afb2e20$80f18a60$@thebghouse.org> Message-ID: This is a way to make the link persistent, in rpt.conf, set the following: rpt.conf:970=ilink,13 ; Permanently connect specified link -- transceive Then put in a start up macro in rpt.conf and you are set. You do not have to use 970, tht is the sysop choice. Keith VA3YC On 1/21/14 3:12 PM, "buck" wrote: > > Hi, > > We have 2 nodes connected over a microwave link. The link is very stable but > occasionally the nodes disconnect due to network instability. > > Can I change the retry counts or failure times between nodes? > > Has someone written a script that run under cron to check and re-connect nodes > that drop? > > Thanks, > Birton, N6UG > > Nodes: > 27035 > 27283 > 28138 > ?. > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to > the bottom of the page. Enter your email address and press the "Unsubscribe or > edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to the > list detailing the problem. -- keith at goobie.org Keith Goobie Richmond Hill, ON, CANADA -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.jpg Type: image/jpeg Size: 2950 bytes Desc: not available URL: From mhebert1975 at gmail.com Tue Jan 21 20:27:56 2014 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 21 Jan 2014 14:27:56 -0600 Subject: [App_rpt-users] How to keep / restart connection failures In-Reply-To: <005801cf16e5$2afb2e20$80f18a60$@thebghouse.org> References: <005801cf16e5$2afb2e20$80f18a60$@thebghouse.org> Message-ID: Have you considered using ilink,13 ? This will make a permanent link to another node. For example, this is what I have in my rpt.conf. Just dial *953 953=ilink,13 ; Permanent link transceive Also, here is a link to allstar commands http://kd3su.us/allStar/commands.html On Tue, Jan 21, 2014 at 2:12 PM, buck wrote: > Hi, > > > > We have 2 nodes connected over a microwave link. The link is very stable > but occasionally the nodes disconnect due to network instability. > > > > Can I change the retry counts or failure times between nodes? > > > > Has someone written a script that run under cron to check and re-connect > nodes that drop? > > > > Thanks, > > Birton, N6UG > > > > Nodes: > > 27035 > > 27283 > > 28138 > > ?. > > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 2950 bytes Desc: not available URL: From doug at crompton.com Tue Jan 21 21:34:17 2014 From: doug at crompton.com (Doug Crompton) Date: Tue, 21 Jan 2014 16:34:17 -0500 Subject: [App_rpt-users] lsnodes 1.02 Message-ID: Another update to correct a problem when displaying local private nodes. Private node text was added to the instructions. http://crompton.com/hamradio/allstar/lsnodes.html wget http://www.crompton.com/hamradio/allstar/lsnodes-1.02.tgz 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From ars.w5omr at gmail.com Tue Jan 21 14:31:29 2014 From: ars.w5omr at gmail.com (Geoff) Date: Tue, 21 Jan 2014 08:31:29 -0600 Subject: [App_rpt-users] rpt.conf Message-ID: <52DE84C1.3000901@gmail.com> First off, thanks for all the help in getting a 2nd node running on the system. It's been a learning experience and actually... a lot of help came from the drupal site. Thanks, Tim for doing that. I still fumble around, but finding things is getting *somewhat* easier. Interesting bug I found, though, in rpt.conf... and I'm sure this is in a .c module, somewhere (morse.c?) but alas, I'm no programmer... If I define a stanza in 29655 for Morse with the line morse=morse29655 then app_rpt, using /etc/asterisk/rpt.conf *should* go to that stanza and read: [morse29655] speed=20 ; Approximate speed in WPM frequency=500 ; Morse Telemetry Frequency amplitude=2048 ; Morse Telemetry Amplitude idfrequency=1000 ; Morse ID Frequency idamplitude=2048 ; Morse ID Amplitude All is fine and dandy, and when I key the repeater, I get exactly *that*. Cool. Here's where it gets *buggy*... Using the same rpt.conf, as I define the morse stanza for node 29657 the same way I do in 29655, with the line morse=morse29657 app_rpt *should* pick that up and do [morse29657] speed=20 ; Approximate speed in WPM frequency=1000 ; Morse Telemetry Frequency amplitude=2048 ; Morse Telemetry Amplitude idfrequency=500 ; Morse ID Frequency idamplitude=2048 ; Morse ID Amplitude ... but, that's not what happens. If I key the repeater first, then I get what is defined in morse29655. Problem is, it doesn't change for 29657. Meaning, whatever id/telem frequencies were defined, are used subsequently, depending on which stanza is used first. If I key the simplex (29657) node -first-, the same thing happens, only both machine use the morse29657 stanza. As a possible solution, I redefined the stanza with morse=29655morse29655 and, of course, renamed the stanza to reflect. No typos... they've been checked and checked and re-checked. Thoughts? -Geoff/W5OMR From kk6ecm at gmail.com Wed Jan 22 15:25:48 2014 From: kk6ecm at gmail.com (Bob) Date: Wed, 22 Jan 2014 07:25:48 -0800 Subject: [App_rpt-users] rpt.conf In-Reply-To: <52DE84C1.3000901@gmail.com> References: <52DE84C1.3000901@gmail.com> Message-ID: <04C11336B67142D7950C921166FA0FE3@ThePykesHP> Geoff, Is the second morse stanza declared after the second node stanza header? Example order: [29655] [morse29655] [29657] [morse29657] With the common stanzas after this? There IS the statement in rpt.conf example: ; ; Morse code parameters, these are common to all repeaters. ; Which may be correct. Don't know. Thanks, Bob kk6ecm -----Original Message----- From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Geoff Sent: Tuesday, January 21, 2014 6:31 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] rpt.conf First off, thanks for all the help in getting a 2nd node running on the system. It's been a learning experience and actually... a lot of help came from the drupal site. Thanks, Tim for doing that. I still fumble around, but finding things is getting *somewhat* easier. Interesting bug I found, though, in rpt.conf... and I'm sure this is in a .c module, somewhere (morse.c?) but alas, I'm no programmer... If I define a stanza in 29655 for Morse with the line morse=morse29655 then app_rpt, using /etc/asterisk/rpt.conf *should* go to that stanza and read: [morse29655] speed=20 ; Approximate speed in WPM frequency=500 ; Morse Telemetry Frequency amplitude=2048 ; Morse Telemetry Amplitude idfrequency=1000 ; Morse ID Frequency idamplitude=2048 ; Morse ID Amplitude All is fine and dandy, and when I key the repeater, I get exactly *that*. Cool. Here's where it gets *buggy*... Using the same rpt.conf, as I define the morse stanza for node 29657 the same way I do in 29655, with the line morse=morse29657 app_rpt *should* pick that up and do [morse29657] speed=20 ; Approximate speed in WPM frequency=1000 ; Morse Telemetry Frequency amplitude=2048 ; Morse Telemetry Amplitude idfrequency=500 ; Morse ID Frequency idamplitude=2048 ; Morse ID Amplitude ... but, that's not what happens. If I key the repeater first, then I get what is defined in morse29655. Problem is, it doesn't change for 29657. Meaning, whatever id/telem frequencies were defined, are used subsequently, depending on which stanza is used first. If I key the simplex (29657) node -first-, the same thing happens, only both machine use the morse29657 stanza. As a possible solution, I redefined the stanza with morse=29655morse29655 and, of course, renamed the stanza to reflect. No typos... they've been checked and checked and re-checked. Thoughts? -Geoff/W5OMR _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From tim.sawyer at mac.com Wed Jan 22 15:32:49 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Wed, 22 Jan 2014 07:32:49 -0800 Subject: [App_rpt-users] rpt.conf In-Reply-To: <52DE84C1.3000901@gmail.com> References: <52DE84C1.3000901@gmail.com> Message-ID: <717E5FD1-0F94-4236-81AF-9A9EB12103A2@mac.com> After you make changes to rpt.conf, are you restarting asterisk with ?service asterisk restart? or ?rpt reload?? -- Tim :wq On Jan 21, 2014, at 6:31 AM, Geoff wrote: > If I key the repeater first, then I get what is defined in morse29655. Problem is, it doesn't change for 29657. Meaning, whatever id/telem frequencies were defined, are used subsequently, depending on which stanza is used first. From w5jr.lists at att.net Wed Jan 22 16:51:01 2014 From: w5jr.lists at att.net (Mike/W5JR) Date: Wed, 22 Jan 2014 11:51:01 -0500 Subject: [App_rpt-users] rpt.conf In-Reply-To: <04C11336B67142D7950C921166FA0FE3@ThePykesHP> References: <52DE84C1.3000901@gmail.com> <04C11336B67142D7950C921166FA0FE3@ThePykesHP> Message-ID: <62A390BC-5B43-4390-A763-659A7366D805@att.net> Geoff, I've found the same to be true for my implementation. The first stanza defined is what is used by all subsequent stanzas regardless of inserting what I would have expected to get for each node. And yes, there seems to be "insight" in the note telling you that will be the case. Which for me, running several "local" repeaters, it would be helpful to have a different pitch for them to more easily recognize which is ID'ing rather than waiting for any post callsign add-on I've placed in the ID string. tnx Mike / W5JR Milton GA > On Jan 22, 2014, at 10:25 AM, "Bob" wrote: > > Geoff, > > Is the second morse stanza declared after the second node stanza header? > > Example order: > > [29655] > > [morse29655] > > [29657] > > [morse29657] > > With the common stanzas after this? > > There IS the statement in rpt.conf example: > > ; > ; Morse code parameters, these are common to all repeaters. > ; > > Which may be correct. Don't know. > > Thanks, > Bob > kk6ecm > > > -----Original Message----- > From: app_rpt-users-bounces at ohnosec.org > [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Geoff > Sent: Tuesday, January 21, 2014 6:31 AM > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] rpt.conf > > First off, thanks for all the help in getting a 2nd node running on the > system. It's been a learning experience and actually... a lot of help > came from the drupal site. Thanks, Tim for doing that. I still fumble > around, but finding things is getting *somewhat* easier. > > Interesting bug I found, though, in rpt.conf... and I'm sure this is in > a .c module, somewhere (morse.c?) but alas, I'm no programmer... > > If I define a stanza in 29655 for Morse with the line > morse=morse29655 > > then app_rpt, using /etc/asterisk/rpt.conf *should* go to that stanza > and read: > > [morse29655] > speed=20 ; Approximate speed in WPM > frequency=500 ; Morse Telemetry Frequency > amplitude=2048 ; Morse Telemetry Amplitude > idfrequency=1000 ; Morse ID Frequency > idamplitude=2048 ; Morse ID Amplitude > > All is fine and dandy, and when I key the repeater, I get exactly > *that*. Cool. > > > Here's where it gets *buggy*... > > Using the same rpt.conf, as I define the morse stanza for node 29657 the > same way I do in 29655, with the line > morse=morse29657 > > app_rpt *should* pick that up and do > > [morse29657] > speed=20 ; Approximate speed in WPM > frequency=1000 ; Morse Telemetry Frequency > amplitude=2048 ; Morse Telemetry Amplitude > idfrequency=500 ; Morse ID Frequency > idamplitude=2048 ; Morse ID Amplitude > > ... but, that's not what happens. > > If I key the repeater first, then I get what is defined in morse29655. > Problem is, it doesn't change for 29657. Meaning, whatever id/telem > frequencies were defined, are used subsequently, depending on which > stanza is used first. > > If I key the simplex (29657) node -first-, the same thing happens, only > both machine use the morse29657 stanza. > > As a possible solution, I redefined the stanza with > morse=29655morse29655 and, of course, renamed the stanza to reflect. No > typos... they've been checked and checked and re-checked. > > Thoughts? > > -Geoff/W5OMR > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to > the bottom of the page. Enter your email address and press the "Unsubscribe > or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From tim.sawyer at mac.com Wed Jan 22 17:13:22 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Wed, 22 Jan 2014 09:13:22 -0800 Subject: [App_rpt-users] rpt.conf In-Reply-To: <04C11336B67142D7950C921166FA0FE3@ThePykesHP> References: <52DE84C1.3000901@gmail.com> <04C11336B67142D7950C921166FA0FE3@ThePykesHP> Message-ID: Good point. And the telemetry stanza comments say: ; Telemetry entries can be shared across all repeaters, or defined for each repeater. So I?d say you CANNOT have separate morse stanzas. -- Tim :wq On Jan 22, 2014, at 7:25 AM, Bob wrote: > There IS the statement in rpt.conf example: > > ; > ; Morse code parameters, these are common to all repeaters. > ; From kk6ecm at gmail.com Wed Jan 22 20:48:09 2014 From: kk6ecm at gmail.com (kk6ecm) Date: Wed, 22 Jan 2014 12:48:09 -0800 Subject: [App_rpt-users] rpt.conf In-Reply-To: References: <52DE84C1.3000901@gmail.com> <04C11336B67142D7950C921166FA0FE3@ThePykesHP> Message-ID: If an update were to be made to the Morse function, I'd like to have a 4th option, i, m, t, and (x), where amplitude associated with x could be used when a lower level Morse idtalkover ID. Thanks, Bob kk6ecm Sent from iPad On Jan 22, 2014, at 9:13 AM, Tim Sawyer wrote: > Good point. And the telemetry stanza comments say: > > ; Telemetry entries can be shared across all repeaters, or defined for each repeater. > > So I?d say you CANNOT have separate morse stanzas. > -- > Tim > :wq > > On Jan 22, 2014, at 7:25 AM, Bob wrote: > >> There IS the statement in rpt.conf example: >> >> ; >> ; Morse code parameters, these are common to all repeaters. >> ; > From ars.w5omr at gmail.com Wed Jan 22 00:15:17 2014 From: ars.w5omr at gmail.com (Geoff) Date: Tue, 21 Jan 2014 18:15:17 -0600 Subject: [App_rpt-users] rpt.conf In-Reply-To: <04C11336B67142D7950C921166FA0FE3@ThePykesHP> References: <52DE84C1.3000901@gmail.com> <04C11336B67142D7950C921166FA0FE3@ThePykesHP> Message-ID: <52DF0D95.5060603@gmail.com> On 01/22/2014 09:25 AM, Bob wrote: > Geoff, > > Is the second morse stanza declared after the second node stanza header? > > Example order: > > [29655] > > [morse29655] > > [29657] > > [morse29657] > > With the common stanzas after this? > > There IS the statement in rpt.conf example: > > ; > ; Morse code parameters, these are common to all repeaters. > ; > > Which may be correct. Don't know. That's the message I got, Bob, after I sent the initial message (yours is the first reply). Something, somewhere is stuck in the back of a buddy's head, that even if there are multiple nodes defined in rpt.conf, only the actual I.D. string can be changed. Frequencies stay the same. Seems to be the case. -Geoff From ars.w5omr at gmail.com Wed Jan 22 00:21:12 2014 From: ars.w5omr at gmail.com (Geoff) Date: Tue, 21 Jan 2014 18:21:12 -0600 Subject: [App_rpt-users] rpt.conf In-Reply-To: <717E5FD1-0F94-4236-81AF-9A9EB12103A2@mac.com> References: <52DE84C1.3000901@gmail.com> <717E5FD1-0F94-4236-81AF-9A9EB12103A2@mac.com> Message-ID: <52DF0EF8.6070706@gmail.com> On 01/22/2014 09:32 AM, Tim Sawyer wrote: > After you make changes to rpt.conf, are you restarting asterisk with ?service asterisk restart? or ?rpt reload?? > -- > Hi, Tim - well, I did it a couple of different ways... /etc/init.d/asterisk stop then /etc/init.d/asterisk restart Of course, shutting down asterisk failed (it was already stopped) but restarting was just fine. When that didn't change anything, I thought "well, they're probably doing something funky with the scripting". So, ~#>astdn.sh and ~#>astup.sh were used. The issue remained. Bob said (and this seems to hold true with what a friend said he thinks he remembers on the subject) that the example of rpt.conf says that the morse stanza would be the same for all nodes. With that explanation, it would make sense to still define different morse stanzas, for different callsigns, but that the telemetry and CW ID frequencies would be the same throughout all nodes. Only the CW strings would change. This is the case in my situation. -Geoff From ars.w5omr at gmail.com Wed Jan 22 00:30:11 2014 From: ars.w5omr at gmail.com (Geoff) Date: Tue, 21 Jan 2014 18:30:11 -0600 Subject: [App_rpt-users] rpt.conf In-Reply-To: <62A390BC-5B43-4390-A763-659A7366D805@att.net> References: <52DE84C1.3000901@gmail.com> <04C11336B67142D7950C921166FA0FE3@ThePykesHP> <62A390BC-5B43-4390-A763-659A7366D805@att.net> Message-ID: <52DF1113.1060806@gmail.com> On 01/22/2014 10:51 AM, Mike/W5JR wrote: > Geoff, I've found the same to be true for my implementation. The first stanza defined is what is used by all subsequent stanzas regardless of inserting what I would have expected to get for each node. And yes, there seems to be "insight" in the note telling you that will be the case. Which for me, running several "local" repeaters, it would be helpful to have a different pitch for them to more easily recognize which is ID'ing rather than waiting for any post callsign add-on I've placed in the ID string. Correct. Now, if you're fairly proficient at CW, you could -start- the ID string with, say, the last 2 (or 3) numbers of your node, defined in each morse stanza for each node followed by your callsign. ie: [morse29929] speed=20 ; Approximate speed in WPM frequency=500 ; Morse Telemetry Frequency amplitude=2048 ; Morse Telemetry Amplitude idfrequency=1000 ; Morse ID Frequency idamplitude=2048 then define the callsign in each main node stanza with the line [node29929] ; ; (...getting there...) ; idrecording = |i29,W5JR/R Then, let's say you've got 29930, you could define the [node29930] stanza with ; idrecording = |;30,W5RJ/R I agree - different pitched ID's would make it easier to .. uh, well... "ID" each node is which when you hear it ;-) -Geoff/W5OMR From kk6ecm at gmail.com Thu Jan 23 00:43:11 2014 From: kk6ecm at gmail.com (Bob) Date: Wed, 22 Jan 2014 16:43:11 -0800 Subject: [App_rpt-users] rpt.conf In-Reply-To: <52DF0EF8.6070706@gmail.com> References: <52DE84C1.3000901@gmail.com><717E5FD1-0F94-4236-81AF-9A9EB12103A2@mac.com> <52DF0EF8.6070706@gmail.com> Message-ID: <5436BAACD2604EEDBE4EA4B99B8DAC8B@ThePykesHP> It seems to me the Morse stanza only establishes the following in app_rpt.conf: ;[morse] ;speed=20 ; Approximate speed in WPM ;frequency=800 ; Morse Telemetry Frequency ;amplitude=4096 ; Morse Telemetry Amplitude ;idfrequency=330 ; Morse ID Frequency ;idamplitude=2048 ; Morse ID Amplitude The string is established by: idrecording = |iW6XYZ and idtalkover=|iW6XYZ (Which seems to me is established for each node separately) Where ; Telemetry entries are shared across all repeaters ; Can be a tone sequence, morse string, or a file ; ; |t - Tone escape sequence ; ; Tone sequences consist of 1 or more 4-tuple entries (freq1, freq2, duration, amplitude) ; Single frequencies are created by setting freq1 or freq2 to zero. ; ; |m - Morse escape sequence ; ; Sends Morse code at the telemetry amplitude and telemetry frequency as defined in the ; [morse] section. ; ; Follow with an alphanumeric string ; ; |i - Morse ID escape sequence ; ; Sends Morse code at the ID amplitude and ID frequency as defined in the If you are not using the |m for telemetry, or don't care, you could use it with a different frequency and amplitude in the [morse] section as idrecording = |mW6XYZ ; second node. Just a thought, Bob kk6ecm -----Original Message----- From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Geoff Sent: Tuesday, January 21, 2014 4:21 PM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] rpt.conf On 01/22/2014 09:32 AM, Tim Sawyer wrote: > After you make changes to rpt.conf, are you restarting asterisk with "service asterisk restart" or "rpt reload"? > -- > Hi, Tim - well, I did it a couple of different ways... /etc/init.d/asterisk stop then /etc/init.d/asterisk restart Of course, shutting down asterisk failed (it was already stopped) but restarting was just fine. When that didn't change anything, I thought "well, they're probably doing something funky with the scripting". So, ~#>astdn.sh and ~#>astup.sh were used. The issue remained. Bob said (and this seems to hold true with what a friend said he thinks he remembers on the subject) that the example of rpt.conf says that the morse stanza would be the same for all nodes. With that explanation, it would make sense to still define different morse stanzas, for different callsigns, but that the telemetry and CW ID frequencies would be the same throughout all nodes. Only the CW strings would change. This is the case in my situation. -Geoff _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From ars.w5omr at gmail.com Wed Jan 22 00:44:32 2014 From: ars.w5omr at gmail.com (Geoff) Date: Tue, 21 Jan 2014 18:44:32 -0600 Subject: [App_rpt-users] rpt.conf In-Reply-To: References: <52DE84C1.3000901@gmail.com> <04C11336B67142D7950C921166FA0FE3@ThePykesHP> Message-ID: <52DF1470.4020006@gmail.com> On 01/22/2014 11:13 AM, Tim Sawyer wrote: > Good point. And the telemetry stanza comments say: > > ; Telemetry entries can be shared across all repeaters, or defined for each repeater. > > So I?d say you CANNOT have separate morse stanzas. > Well... kinda... Technically, yes - (from my experience) only one morse stanza can be defined, but different ID strings can be entered for each node. What's funny is, (it's really comical) my node 29657 (simplex node) is the *3rd* node defined in rpt.conf. If I key up the simplex node *first*, upon asterisk re-start, then the morse stanza for 29657 is used through out rpt.conf. Meaning [morse29655] speed=20 ; Approximate speed in WPM frequency=500 ; Morse Telemetry Frequency amplitude=2048 ; Morse Telemetry Amplitude idfrequency=1000 ; Morse ID Frequency idamplitude=2048 ; Morse ID Amplitude [morse29657] speed=20 ; Approximate speed in WPM frequency=1000 ; Morse Telemetry Frequency amplitude=2048 ; Morse Telemetry Amplitude idfrequency=500 ; Morse ID Frequency idamplitude=1026 ; Morse ID Amplitude if I key up 657 first, then the ID frequency is low and subdued, and the telmetry CW strings are ear-piercing . If I key up 655 first, the ID frequency is high and piercing, and the telemtry CW strings are low and subdued. It makes a difference. -Geoff/W5OMR From ars.w5omr at gmail.com Wed Jan 22 00:53:50 2014 From: ars.w5omr at gmail.com (Geoff) Date: Tue, 21 Jan 2014 18:53:50 -0600 Subject: [App_rpt-users] rpt.conf In-Reply-To: <5436BAACD2604EEDBE4EA4B99B8DAC8B@ThePykesHP> References: <52DE84C1.3000901@gmail.com><717E5FD1-0F94-4236-81AF-9A9EB12103A2@mac.com> <52DF0EF8.6070706@gmail.com> <5436BAACD2604EEDBE4EA4B99B8DAC8B@ThePykesHP> Message-ID: <52DF169E.2090701@gmail.com> On 01/22/2014 06:43 PM, Bob wrote: > It seems to me the Morse stanza only establishes the following in > app_rpt.conf: Right - I said I had to define different morse stanzas, and let me correct myself - no, you do NOT have to define different stanzas - only 1 is going to be used. You -can- use different ID strings (or files, or a tone sequence) for each separate node, for distinction. Speaking of tone sequences, why not use different tones, for each node? Got me thinking, now... ;-) From w5jr.lists at att.net Thu Jan 23 01:50:06 2014 From: w5jr.lists at att.net (Mike/W5JR) Date: Wed, 22 Jan 2014 20:50:06 -0500 Subject: [App_rpt-users] rpt.conf In-Reply-To: <5436BAACD2604EEDBE4EA4B99B8DAC8B@ThePykesHP> References: <52DE84C1.3000901@gmail.com> <717E5FD1-0F94-4236-81AF-9A9EB12103A2@mac.com> <52DF0EF8.6070706@gmail.com> <5436BAACD2604EEDBE4EA4B99B8DAC8B@ThePykesHP> Message-ID: Well this will be interesting to experiment with. Yes, I see where one could use different speed, pitch and levels for two cases by utilizing the ID or Message morse settings. I also see an option would be to upload a "recording" to play at whatever speed, pitch and level is desired and definitely can be per node. For the case of "idrecording" and "idtalkover" being the same, the former stops and latter "restarts" the ID sequence if a signal is received during the former. Took me a few head scratches to figure out the latter ought to be commented out if the former was not voice. It would really be slick if the latter could just change to a different defined level rather than start over. That change/tweak to app_rpt.c is beyond my ability at the moment... tnx Mike / W5JR Milton GA > On Jan 22, 2014, at 7:43 PM, "Bob" wrote: > > It seems to me the Morse stanza only establishes the following in > app_rpt.conf: > > ;[morse] > > ;speed=20 ; Approximate speed in WPM > ;frequency=800 ; Morse Telemetry Frequency > ;amplitude=4096 ; Morse Telemetry Amplitude > ;idfrequency=330 ; Morse ID Frequency > ;idamplitude=2048 ; Morse ID Amplitude > > The string is established by: > > idrecording = |iW6XYZ > > and > > idtalkover=|iW6XYZ > > (Which seems to me is established for each node separately) > > Where > > ; Telemetry entries are shared across all repeaters > ; Can be a tone sequence, morse string, or a file > ; > ; |t - Tone escape sequence > ; > ; Tone sequences consist of 1 or more 4-tuple entries (freq1, freq2, > duration, amplitude) > ; Single frequencies are created by setting freq1 or freq2 to zero. > ; > ; |m - Morse escape sequence > ; > ; Sends Morse code at the telemetry amplitude and telemetry frequency as > defined in the > ; [morse] section. > ; > ; Follow with an alphanumeric string > ; > ; |i - Morse ID escape sequence > ; > ; Sends Morse code at the ID amplitude and ID frequency as defined in the > > If you are not using the |m for telemetry, or don't care, you could use it > with a different frequency and amplitude in the [morse] section as > > idrecording = |mW6XYZ ; second node. > > Just a thought, > Bob > kk6ecm > > -----Original Message----- > From: app_rpt-users-bounces at ohnosec.org > [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Geoff > Sent: Tuesday, January 21, 2014 4:21 PM > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] rpt.conf > > >> On 01/22/2014 09:32 AM, Tim Sawyer wrote: >> After you make changes to rpt.conf, are you restarting asterisk with > "service asterisk restart" or "rpt reload"? >> -- > > Hi, Tim - well, I did it a couple of different ways... > > /etc/init.d/asterisk stop > > then > > /etc/init.d/asterisk restart > > Of course, shutting down asterisk failed (it was already stopped) but > restarting was just fine. > When that didn't change anything, I thought "well, they're probably > doing something funky with the scripting". So, > > ~#>astdn.sh > and > ~#>astup.sh > > were used. The issue remained. > > Bob said (and this seems to hold true with what a friend said he thinks > he remembers on the subject) that the example of rpt.conf says that the > morse stanza would be the same for all nodes. With that explanation, it > would make sense to still define different morse stanzas, for different > callsigns, but that the telemetry and CW ID frequencies would be the > same throughout all nodes. Only the CW strings would change. This is > the case in my situation. > > -Geoff > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to > the bottom of the page. Enter your email address and press the "Unsubscribe > or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From bbrown at byrg.net Thu Jan 23 02:02:44 2014 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Wed, 22 Jan 2014 20:02:44 -0600 Subject: [App_rpt-users] Xipar node trying to connect to a newer 4xxxx node number Message-ID: Anyone having an issues trying to connect to a newer 4xxxx node number from a XIPAR 2xxx or a 2xxxx node number ? I get this error message: [Jan 21 09:03:46] WARNING[31245]: channel.c:3776 ast_request: No channel type registered for 'irlp' Any Ideas? -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://drsm0ke.net http://byrg.net http://sm0kenet.net http://kcdstar.byrg.net Quis custodiet ipsos custodes? -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Thu Jan 23 02:50:35 2014 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Wed, 22 Jan 2014 21:50:35 -0500 Subject: [App_rpt-users] Xipar node trying to connect to a newer 4xxxx node number In-Reply-To: References: Message-ID: <52E0837B.3040900@bdboyle.com> On 1/22/2014 9:02 PM, Bob Brown - W?NQX wrote: > Anyone having an issues trying to connect to a newer 4xxxx node number from > a XIPAR 2xxx or a 2xxxx node number ? > > > I get this error message: > > [Jan 21 09:03:46] WARNING[31245]: channel.c:3776 ast_request: No channel > type registered for 'irlp' > The old IRLP nodes were assigned 4 prefixes (Like Echolink is a "3") and thinking that the XIPAR code hasn't been updated? BB From tim.sawyer at mac.com Thu Jan 23 03:39:43 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Wed, 22 Jan 2014 19:39:43 -0800 Subject: [App_rpt-users] Xipar node trying to connect to a newer 4xxxx node number In-Reply-To: <52E0837B.3040900@bdboyle.com> References: <52E0837B.3040900@bdboyle.com> Message-ID: Yes, IRLP was removed from app_rpt and maybe XIPAR as well. Perhaps the XIPAR node has not been updated. -- Tim :wq On Jan 22, 2014, at 6:50 PM, Bryan D. Boyle wrote: > The old IRLP nodes were assigned 4 prefixes (Like Echolink is a "3") and > thinking that the XIPAR code hasn't been updated? > > BB From bbrown at byrg.net Thu Jan 23 04:26:38 2014 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Wed, 22 Jan 2014 22:26:38 -0600 Subject: [App_rpt-users] Xipar node trying to connect to a newer 4xxxx node number In-Reply-To: References: <52E0837B.3040900@bdboyle.com> Message-ID: Latest build. V 524 -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://drsm0ke.net http://byrg.net http://sm0kenet.net http://kcdstar.byrg.net Quis custodiet ipsos custodes? -- On Wed, Jan 22, 2014 at 9:39 PM, Tim Sawyer wrote: > Yes, IRLP was removed from app_rpt and maybe XIPAR as well. Perhaps the > XIPAR node has not been updated. > -- > Tim > :wq > > On Jan 22, 2014, at 6:50 PM, Bryan D. Boyle wrote: > > > The old IRLP nodes were assigned 4 prefixes (Like Echolink is a "3") and > > thinking that the XIPAR code hasn't been updated? > > > > BB > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rpt2 at chuck.midlandsnetworking.com Thu Jan 23 07:35:17 2014 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Thu, 23 Jan 2014 01:35:17 -0600 Subject: [App_rpt-users] tailmessage not working correctly??? Message-ID: I put these 3 lines in my rpt.conf file expecting to have a tail message on unkey every 60 seconds or more. tailmessagetime=60000 tailsquashedtime=70000 tailmessagelist=tailmessage So if someone makes a 2 minute transmission, then I expect a tail message when they unkey. If someone makes a 10 second transmission than I would not expect a tail message unless 60 seconds have passed since the last tail message. Unfortunately what I get is not what I expect. When the repeater has not been used for a long time.... the first person to key down gets the tail message right on top of the beginning of their transmission. The repeater can be in use with various people each making random length transmissions from 10 seconds to 2 minutes long and there is never a tail message after the first one that tromps on top of the first person talking. I remember using tailmessage long ago back when I was using the USB fob and I think it worked fine back then. Now I am using only RTCM's and I can not get the tailmessage feature to work properly. Has anyone else been successfully using tail messages with RTCM's or USB fobs? -------------- next part -------------- An HTML attachment was scrubbed... URL: From kk6ecm at gmail.com Thu Jan 23 15:47:26 2014 From: kk6ecm at gmail.com (Bob) Date: Thu, 23 Jan 2014 07:47:26 -0800 Subject: [App_rpt-users] tailmessage not working correctly??? In-Reply-To: References: Message-ID: You may want to consider politeid and its function http://ohnosec.org/drupal/search/node/politeid Bob kk6ecm _____ From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Chuck Henderson Sent: Wednesday, January 22, 2014 11:35 PM To: app_rpt mailing list Subject: [App_rpt-users] tailmessage not working correctly??? I put these 3 lines in my rpt.conf file expecting to have a tail message on unkey every 60 seconds or more. tailmessagetime=60000 tailsquashedtime=70000 tailmessagelist=tailmessage So if someone makes a 2 minute transmission, then I expect a tail message when they unkey. If someone makes a 10 second transmission than I would not expect a tail message unless 60 seconds have passed since the last tail message. Unfortunately what I get is not what I expect. When the repeater has not been used for a long time.... the first person to key down gets the tail message right on top of the beginning of their transmission. The repeater can be in use with various people each making random length transmissions from 10 seconds to 2 minutes long and there is never a tail message after the first one that tromps on top of the first person talking. I remember using tailmessage long ago back when I was using the USB fob and I think it worked fine back then. Now I am using only RTCM's and I can not get the tailmessage feature to work properly. Has anyone else been successfully using tail messages with RTCM's or USB fobs? -------------- next part -------------- An HTML attachment was scrubbed... URL: From rpt2 at chuck.midlandsnetworking.com Thu Jan 23 16:05:43 2014 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Thu, 23 Jan 2014 10:05:43 -0600 Subject: [App_rpt-users] tailmessage not working correctly??? In-Reply-To: References: Message-ID: I already use polite id and it works fine, the ID never goes on top of anyone. But that is not the problem. And to incorporate the club reminders with every ID would be very annoying to everyone listening to the repeater. What I need is the function of tailmessage, this feature allows a set of messages to be played at unkeys, a different message at each interval, and have those recorded messages not step on users. It should be just like the polite ID,, and it was before. but now it is not. I intend to set the interval to something like 60 to 120 minutes. and the messages will change at different times of the day. Like I said it worked great before. now it doesn't work on any of 3 repeaters I am trying to implement it on. The only reason I currently have the timers so short is for debugging. I am still digging in the source code and am getting closer. I think it is very closely related to "tailtimer -= elap" in the code. I am still trying to track down "elap" and if anyone can explain it to me before I figure it out, that would be very helpful. Before long I will have the entire program memorized like Jim does. (not going to happen in my lifetime :) Chuck, CCIE2285(retired), WB9UUS On Thu, Jan 23, 2014 at 9:47 AM, Bob wrote: > You may want to consider politeid and its function > > > > http://ohnosec.org/drupal/search/node/politeid > > > > Bob > > kk6ecm > > > ------------------------------ > > *From:* app_rpt-users-bounces at ohnosec.org [mailto: > app_rpt-users-bounces at ohnosec.org] *On Behalf Of *Chuck Henderson > *Sent:* Wednesday, January 22, 2014 11:35 PM > *To:* app_rpt mailing list > *Subject:* [App_rpt-users] tailmessage not working correctly??? > > > > I put these 3 lines in my rpt.conf file expecting to have a tail message > on unkey every 60 seconds or more. > > > > tailmessagetime=60000 > > tailsquashedtime=70000 > > tailmessagelist=tailmessage > > > > > > So if someone makes a 2 minute transmission, then I expect a tail message > when they unkey. > > > > If someone makes a 10 second transmission than I would not expect a tail > message unless 60 seconds have passed since the last tail message. > > > > Unfortunately what I get is not what I expect. > > > > When the repeater has not been used for a long time.... the first person > to key down gets the tail message right on top of the beginning of their > transmission. > > The repeater can be in use with various people each making random length > transmissions from 10 seconds to 2 minutes long and there is never a tail > message after the first one that tromps on top of the first person talking. > > > > I remember using tailmessage long ago back when I was using the USB fob > and I think it worked fine back then. > > Now I am using only RTCM's and I can not get the tailmessage feature to > work properly. > > > > Has anyone else been successfully using tail messages with RTCM's or USB > fobs? > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Thu Jan 23 19:59:13 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Thu, 23 Jan 2014 11:59:13 -0800 Subject: [App_rpt-users] tailmessage not working correctly??? In-Reply-To: References: Message-ID: I use RTCMs exclusively and tail messages work fine. I?ve never had one go off on top of a user. In fact if someone keys up the tail message stops and replays after tailsquashtime. What doesn?t work for me is a coma separated list of tail messages. If I set up "tailmessagelist=message1,message2" it won?t work, nothing ever plays. But that?s another subject. The way tail messages work is that the message will transmit every x milliseconds just before the repeater TX (hang timer) drops. So with your setting of 60 seconds the message will occur only 60 seconds after the last tail message as the carrier drops. If the repeater is quite for longer that 60 seconds the tail message won?t be heard until something keys it and the carrier drops. Two things for you: 1. You are putting the settings in the [node] stanza correct? 2. Don?t you want (shouldn?t) the squash time be less than the message time? I suspect this is the what causing your strange tail message behavior. -- Tim :wq On Jan 22, 2014, at 11:35 PM, Chuck Henderson wrote: > I put these 3 lines in my rpt.conf file expecting to have a tail message on unkey every 60 seconds or more. > > tailmessagetime=60000 > tailsquashedtime=70000 > tailmessagelist=tailmessage > > > So if someone makes a 2 minute transmission, then I expect a tail message when they unkey. > > If someone makes a 10 second transmission than I would not expect a tail message unless 60 seconds have passed since the last tail message. > > Unfortunately what I get is not what I expect. > > When the repeater has not been used for a long time.... the first person to key down gets the tail message right on top of the beginning of their transmission. > The repeater can be in use with various people each making random length transmissions from 10 seconds to 2 minutes long and there is never a tail message after the first one that tromps on top of the first person talking. > > I remember using tailmessage long ago back when I was using the USB fob and I think it worked fine back then. > Now I am using only RTCM's and I can not get the tailmessage feature to work properly. > > Has anyone else been successfully using tail messages with RTCM's or USB fobs? > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From rpt2 at chuck.midlandsnetworking.com Thu Jan 23 22:30:47 2014 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Thu, 23 Jan 2014 16:30:47 -0600 Subject: [App_rpt-users] tailmessage not working correctly??? In-Reply-To: References: Message-ID: I have made some progress in debugging. What I found is that I like to use short hang time of 5 because the transmitters that we use have built in time out timers and so it is necessary for the repeater transmitter to drop between users. If I have a 2 second hang time then the transmitter never goes off the air and the repeater transmitter built in time out timer is always expiring. If I set hang time to 21 then the tail messages work fine, but each number less than 21 and the tail message gets increasingly flaky. With a hangtime of 5 then the tail message totally ignores that the repeater is in use and sends the initial message right on top of the first user and then seems to be always quashed after that. the code where this happens is i = myrpt->tailtimer; if (myrpt->tailtimer) myrpt->tailtimer -= elap; if (myrpt->tailtimer < 0) myrpt->tailtimer = 0; if((i) && (myrpt->tailtimer == 0)){ myrpt->tailevent = 1; ast_log(LOG_NOTICE,"Tail Event SET tailtimer before decrement= %d elap= %d\n", i, elap); //CAH I added this debugging line } if ((!myrpt->p.s[myrpt->p.sysstate_cur].totdisable) && myrpt->totimer) myrpt->totimer -= elap; if (myrpt->totimer < 0) myrpt->totimer = 0; if (myrpt->idtimer) myrpt->idtimer -= elap; if (myrpt->idtimer < 0) myrpt->idtimer = 0; if (myrpt->tmsgtimer) myrpt->tmsgtimer -= elap; if (myrpt->tmsgtimer < 0) myrpt->tmsgtimer = 0; if (myrpt->voxtotimer) myrpt->voxtotimer -= elap; if (myrpt->voxtotimer < 0) myrpt->voxtotimer = 0; Previously in code "tailtimer" is set to hangtime. In my case that is 5 for a half second hang time. "elap" varies from 7 to 20 for each pass here. So for every pass the "tailtimer == 0" evaluates true and sets "tailevent" true and that causes the "tailmessage" to be sent immediately on key down elsewhere in code. If "hangtime" is 21 or more than the "tailtimer == 0" only evaluates true if the input signal is gone and the hang time has expired. But with a value of 21, my transmitter is almost always timed out. I am still trying to learn what causes "elap" to vary and what sets it. I think I will find it and fix it eventually, unless someone else beats me to it. :) oksy I found that elap is set to MSWAIT which is set to 20 in the following line. #define MSWAIT 20 and this code ms = MSWAIT; who = ast_waitfor_n(cs,n,&ms); if (who == NULL) ms = 0; elap = MSWAIT - ms; maybe I can just change the define for MSWAIT and that might fix it, but 20ms is important in relation to the voter so maybe changing it will break everything. Hmmmmmmmmm. Jim, HELP!!! Chuck, ccie2285(retired), WB9UUS On Thu, Jan 23, 2014 at 1:59 PM, Tim Sawyer wrote: > I use RTCMs exclusively and tail messages work fine. I?ve never had one go > off on top of a user. In fact if someone keys up the tail message stops and > replays after tailsquashtime. What doesn?t work for me is a coma separated > list of tail messages. If I set up "tailmessagelist=message1,message2" it > won?t work, nothing ever plays. But that?s another subject. > > The way tail messages work is that the message will transmit every x > milliseconds just before the repeater TX (hang timer) drops. So with your > setting of 60 seconds the message will occur only 60 seconds after the last > tail message as the carrier drops. If the repeater is quite for longer that > 60 seconds the tail message won?t be heard until something keys it and the > carrier drops. > > Two things for you: > 1. You are putting the settings in the [node] stanza correct? > 2. Don?t you want (shouldn?t) the squash time be less than the message > time? I suspect this is the what causing your strange tail message behavior. > > -- > Tim > :wq > > On Jan 22, 2014, at 11:35 PM, Chuck Henderson < > rpt2 at chuck.midlandsnetworking.com> wrote: > > > I put these 3 lines in my rpt.conf file expecting to have a tail message > on unkey every 60 seconds or more. > > > > tailmessagetime=60000 > > tailsquashedtime=70000 > > tailmessagelist=tailmessage > > > > > > So if someone makes a 2 minute transmission, then I expect a tail > message when they unkey. > > > > If someone makes a 10 second transmission than I would not expect a tail > message unless 60 seconds have passed since the last tail message. > > > > Unfortunately what I get is not what I expect. > > > > When the repeater has not been used for a long time.... the first person > to key down gets the tail message right on top of the beginning of their > transmission. > > The repeater can be in use with various people each making random length > transmissions from 10 seconds to 2 minutes long and there is never a tail > message after the first one that tromps on top of the first person talking. > > > > I remember using tailmessage long ago back when I was using the USB fob > and I think it worked fine back then. > > Now I am using only RTCM's and I can not get the tailmessage feature to > work properly. > > > > Has anyone else been successfully using tail messages with RTCM's or USB > fobs? > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ea8ee1 at gmail.com Thu Jan 23 22:45:08 2014 From: ea8ee1 at gmail.com (ea8ee) Date: Thu, 23 Jan 2014 22:45:08 +0000 Subject: [App_rpt-users] webtransceiver issue java Message-ID: ? Hello everyone! I tried to access through the webtransceiver me perfectly but I run the java access confusion gave him deny access and now I can not access the java let me change the option webtransceiver someone can tell me how to change the permissions to access using java applets -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike at midnighteng.com Thu Jan 23 22:57:27 2014 From: mike at midnighteng.com (mike at midnighteng.com) Date: Thu, 23 Jan 2014 15:57:27 -0700 Subject: [App_rpt-users] =?utf-8?q?webtransceiver_issue_java?= Message-ID: <20140123155727.71befee5dbd13c5325dd1a521b4e73ee.6e2c212638.wbe@email06.secureserver.net> An HTML attachment was scrubbed... URL: From ea8ee1 at gmail.com Thu Jan 23 23:02:46 2014 From: ea8ee1 at gmail.com (ea8ee) Date: Thu, 23 Jan 2014 23:02:46 +0000 Subject: [App_rpt-users] webtransceiver issue java In-Reply-To: <20140123155727.71befee5dbd13c5325dd1a521b4e73ee.6e2c212638.wbe@email06.secureserver.net> References: <20140123155727.71befee5dbd13c5325dd1a521b4e73ee.6e2c212638.wbe@email06.secureserver.net> Message-ID: Hi Mike I have given all permissions and it worked perfectly but by mistake the last time I gave refuse permission and now can not get the java is enabled and I get an error screen 2014/1/23 > > This is a browser issue: > > Because of various security problems, you need to enable java and may need > to specifically enable it per website. > > Check your browsers help page. > > ...mike/kb8jm > > -------- Original Message -------- > Subject: [App_rpt-users] webtransceiver issue java > From: ea8ee > Date: Thu, January 23, 2014 5:45 pm > To: app_rpt mailing list > > ? Hello everyone! I tried to access through the webtransceiver me > perfectly but I run the java access confusion gave him deny access and now > I can not access the java let me change the option webtransceiver someone > can tell me how to change the permissions to access using java applets > ------------------------------ > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ea8ee1 at gmail.com Thu Jan 23 23:10:44 2014 From: ea8ee1 at gmail.com (ea8ee) Date: Thu, 23 Jan 2014 23:10:44 +0000 Subject: [App_rpt-users] webtransceiver issue java In-Reply-To: References: <20140123155727.71befee5dbd13c5325dd1a521b4e73ee.6e2c212638.wbe@email06.secureserver.net> Message-ID: the windows says SecurityException missing required permissions manifest attribute in main jar https:allstarlink.org/portal/webtransceiver.jar 2014/1/23 ea8ee > Hi Mike I have given all permissions and it worked perfectly but by > mistake the last time I gave refuse permission and now can not get the > java is enabled and I get an error screen > > > 2014/1/23 > > >> This is a browser issue: >> >> Because of various security problems, you need to enable java and may >> need to specifically enable it per website. >> >> Check your browsers help page. >> >> ...mike/kb8jm >> >> -------- Original Message -------- >> Subject: [App_rpt-users] webtransceiver issue java >> From: ea8ee >> Date: Thu, January 23, 2014 5:45 pm >> To: app_rpt mailing list >> >> ? Hello everyone! I tried to access through the webtransceiver me >> perfectly but I run the java access confusion gave him deny access and now >> I can not access the java let me change the option webtransceiver someone >> can tell me how to change the permissions to access using java applets >> ------------------------------ >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll >> down to the bottom of the page. Enter your email address and press the >> "Unsubscribe or edit options button" >> You do not need a password to unsubscribe, you can do it via email >> confirmation. If you have trouble unsubscribing, please send a message to >> the list detailing the problem. >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll >> down to the bottom of the page. Enter your email address and press the >> "Unsubscribe or edit options button" >> You do not need a password to unsubscribe, you can do it via email >> confirmation. If you have trouble unsubscribing, please send a message to >> the list detailing the problem. >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike at midnighteng.com Fri Jan 24 00:20:44 2014 From: mike at midnighteng.com (mike at midnighteng.com) Date: Thu, 23 Jan 2014 17:20:44 -0700 Subject: [App_rpt-users] =?utf-8?q?webtransceiver_issue_java?= Message-ID: <20140123172044.71befee5dbd13c5325dd1a521b4e73ee.d553b14963.wbe@email06.secureserver.net> An HTML attachment was scrubbed... URL: From doug at crompton.com Fri Jan 24 07:34:54 2014 From: doug at crompton.com (Doug Crompton) Date: Fri, 24 Jan 2014 02:34:54 -0500 Subject: [App_rpt-users] System speed Message-ID: Has anyone ever characterized system speed (bogomips) to Allstar capability based on nodes per server in usbradio and simpleusb modes? 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From ea8ee1 at gmail.com Fri Jan 24 08:24:36 2014 From: ea8ee1 at gmail.com (jose) Date: Fri, 24 Jan 2014 08:24:36 +0000 Subject: [App_rpt-users] webtransceiver issue java In-Reply-To: <20140123172044.71befee5dbd13c5325dd1a521b4e73ee.d553b14963.wbe@email06.secureserver.net> References: <20140123172044.71befee5dbd13c5325dd1a521b4e73ee.d553b14963.wbe@email06.secureserver.net> Message-ID: <52E22344.8070201@gmail.com> Hi Mike I deleted the java applets 7 v51 completely even the windows registry java appears where I Reinstaller and is giving me security error've tried mozilla, ie, chrome, opera and safari and I do not get it to work however on a laptop nevertheless works perfectly with w7 El 24/01/2014 0:20, mike at midnighteng.com escribi?: > > You probably should state Browser & OS from the start. Hard for > anyone to help when we don't know what your using. > > I'll assume ie8... > If you look in the URL bar on the left side (if you have not > re-arranged things) you should see a plug-in icon (looks like a lego > block). > Click the plug-in icon and you should be able to get a menu to enable > for the site. > > OR > Check the help pages for your browser (online support). > > If you don't yield anything, you might try finding all instances of > allstarlink.org in your windows registry and > delete them (last resort). > > ...mike/kb8jnm > > -------- Original Message -------- > Subject: Re: [App_rpt-users] webtransceiver issue java > From: ea8ee > > Date: Thu, January 23, 2014 6:10 pm > To: mike > > Cc: app_rpt mailing list > > > the windows says SecurityException missing required permissions > manifest attribute in main jar > https:allstarlink.org/portal/webtransceiver.jar > > > > 2014/1/23 ea8ee > > > Hi Mike I have given all permissions and it worked perfectly > but by mistake the last time I gave refuse permission and now > can not get the java is enabled and I get an error screen > > > 2014/1/23 > > > > This is a browser issue: > > Because of various security problems, you need to enable > java and may need to specifically enable it per website. > > Check your browsers help page. > > ...mike/kb8jm > > -------- Original Message -------- > Subject: [App_rpt-users] webtransceiver issue java > From: ea8ee > > Date: Thu, January 23, 2014 5:45 pm > To: app_rpt mailing list > > > ? Hello everyone! I tried to access through the > webtransceiver me perfectly but I run the java access > confusion gave him deny access and now I can not > access the java let me change the option > webtransceiver someone can tell me how to change the > permissions to access using java applets > ------------------------------------------------------------------------ > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > and scroll down to the bottom of the page. Enter your > email address and press the "Unsubscribe or edit > options button" > You do not need a password to unsubscribe, you can do > it via email confirmation. If you have trouble > unsubscribing, please send a message to the list > detailing the problem. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > and scroll down to the bottom of the page. Enter your > email address and press the "Unsubscribe or edit options > button" > You do not need a password to unsubscribe, you can do it > via email confirmation. If you have trouble unsubscribing, > please send a message to the list detailing the problem. > > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: From N7LD at aol.com Fri Jan 24 16:35:41 2014 From: N7LD at aol.com (N7LD at aol.com) Date: Fri, 24 Jan 2014 11:35:41 -0500 (EST) Subject: [App_rpt-users] webtransceiver issue java Message-ID: <834aa.67577cf4.4013f05d@aol.com> Open Configure Java Under ADVANCED Under Perform Certificates revocation on Check "Do Not Check" See if that helps. Lee In a message dated 1/24/2014 12:24:08 A.M. Pacific Standard Time, ea8ee1 at gmail.com writes: Hi Mike I deleted the java applets 7 v51 completely even the windows registry java appears where I Reinstaller and is giving me security error've tried mozilla, ie, chrome, opera and safari and I do not get it to work however on a laptop nevertheless works perfectly with w7 El 24/01/2014 0:20, _mike at midnighteng.com_ (mailto:mike at midnighteng.com) escribi?: You probably should state Browser & OS from the start. Hard for anyone to help when we don't know what your using. I'll assume ie8... If you look in the URL bar on the left side (if you have not re-arranged things) you should see a plug-in icon (looks like a lego block). Click the plug-in icon and you should be able to get a menu to enable for the site. OR Check the help pages for your browser (online support). If you don't yield anything, you might try finding all instances of _allstarlink.org_ (http://allstarlink.org/) in your windows registry and delete them (last resort). ...mike/kb8jnm -------- Original Message -------- Subject: Re: [App_rpt-users] webtransceiver issue java From: ea8ee <_ea8ee1 at gmail.com_ (mailto:ea8ee1 at gmail.com) > Date: Thu, January 23, 2014 6:10 pm To: mike <_mike at midnighteng.com_ (mailto:mike at midnighteng.com) > Cc: app_rpt mailing list <_app_rpt-users at ohnosec.org_ (mailto:app_rpt-users at ohnosec.org) > the windows says SecurityException missing required permissions manifest attribute in main jar https:_allstarlink.org/portal/webtransceiver.jar_ (http://allstarlink.org/portal/webtransceiver.jar) 2014/1/23 ea8ee <_ea8ee1 at gmail.com_ (mailto:ea8ee1 at gmail.com) > Hi Mike I have given all permissions and it worked perfectly but by mistake the last time I gave refuse permission and now can not get the java is enabled and I get an error screen 2014/1/23 <_mike at midnighteng.com_ (mailto:mike at midnighteng.com) > This is a browser issue: Because of various security problems, you need to enable java and may need to specifically enable it per website. Check your browsers help page. ...mike/kb8jm -------- Original Message -------- Subject: [App_rpt-users] webtransceiver issue java From: ea8ee <_ea8ee1 at gmail.com_ (mailto:ea8ee1 at gmail.com) > Date: Thu, January 23, 2014 5:45 pm To: app_rpt mailing list <_app_rpt-users at ohnosec.org_ (mailto:app_rpt-users at ohnosec.org) > ? Hello everyone! I tried to access through the webtransceiver me perfectly but I run the java access confusion gave him deny access and now I can not access the java let me change the option webtransceiver someone can tell me how to change the permissions to access using java applets ____________________________________ _______________________________________________ App_rpt-users mailing list _App_rpt-users at ohnosec.org_ (mailto:App_rpt-users at ohnosec.org) http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. _______________________________________________ App_rpt-users mailing list _App_rpt-users at ohnosec.org_ (mailto:App_rpt-users at ohnosec.org) http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. _______________________________________________ App_rpt-users mailing list _App_rpt-users at ohnosec.org_ (mailto:App_rpt-users at ohnosec.org) http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: From rpt2 at chuck.midlandsnetworking.com Sat Jan 25 01:35:08 2014 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Fri, 24 Jan 2014 19:35:08 -0600 Subject: [App_rpt-users] adding a node In-Reply-To: <52DC3F7B.1070707@gmail.com> References: <52DC3F7B.1070707@gmail.com> Message-ID: I don't know but do you have 29656 configured with [29656] rxchannel=Zap/pseudo maybe that will help On Sun, Jan 19, 2014 at 3:11 PM, Geoff wrote: > My node 29655 has been working, and things are great, having fun with > courtesy tones, wait-times, etc... > > Had 29656 configured to be the echolink node... echolink connects are > great - even have the system spitting out callsigns of echolink connections > (that are allowed), and things have been great! > > > ... until .... > > Today, I built a cable for a 2nd URIx to Kenwood TMV-7a, using the packet > port. > > That's not the issue. > > Issue is when I plugged in the 2nd URIx. radio-tune-menu thinks it's > 29656! > > How do I tell asterisk that it's supposed to be 29657? > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/ > mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. > Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: From petem001 at hotmail.com Sat Jan 25 03:34:04 2014 From: petem001 at hotmail.com (pete M) Date: Fri, 24 Jan 2014 22:34:04 -0500 Subject: [App_rpt-users] adding a node In-Reply-To: <52DC3F7B.1070707@gmail.com> References: <52DC3F7B.1070707@gmail.com> Message-ID: on the asterisk cli you need to specify wich node is being tuned. to do so at first before doing any tuning type : radio active usbXXXXX were xxxxx is the node you work on... to confirm type radio tune at the cli it will list you the commnd you can do and the node its selected. Envoy? de mon iPad > Le 2014-01-19 ? 16:18, "Geoff" a ?crit : > > My node 29655 has been working, and things are great, having fun with courtesy tones, wait-times, etc... > > Had 29656 configured to be the echolink node... echolink connects are great - even have the system spitting out callsigns of echolink connections (that are allowed), and things have been great! > > > ... until .... > > Today, I built a cable for a 2nd URIx to Kenwood TMV-7a, using the packet port. > > That's not the issue. > > Issue is when I plugged in the 2nd URIx. radio-tune-menu thinks it's 29656! > > How do I tell asterisk that it's supposed to be 29657? > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From k1if at k1if.com Sat Jan 25 07:15:20 2014 From: k1if at k1if.com (K1IF) Date: Sat, 25 Jan 2014 01:15:20 -0600 Subject: [App_rpt-users] java and webtransceiver Message-ID: <000601cf199d$367c4f30$a374ed90$@com> To make the webtransceiver work again, I created an exception in the security tab of the java control panel. I use windows start and in the search box typed java control and it came up. Just click on security and add exception for allstarlink.org webtransceiver works again! --- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From 41.2jim at gmail.com Tue Jan 28 02:43:42 2014 From: 41.2jim at gmail.com (41.2 Jim) Date: Mon, 27 Jan 2014 19:43:42 -0700 Subject: [App_rpt-users] RTCM Question Message-ID: Question.... is their anything that is universal to both Stanzas, "usbradio.conf & voter.conf" that can be used with an RTCM like say .... rxsquelchdelay=xx or rxondelay=xx as I am tring to rid my repeater of a low signal squelch tail while using a PL board(TS-64 in decode only) and with the RTCM providing squelch, A kerchunk will get a long squelch tail ???... was not an issue with the URIx and DSP have the squelch at 7 turns past minimum gating and still get a long crash ?? Thank you all, in advance, for your time Jim Frederick KF6QBW 446.600- 100.0 PL Repeater AllStar Node # 28839 Skype = jim41.2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From waughdj at msn.com Tue Jan 28 07:48:33 2014 From: waughdj at msn.com (Douglas Waugh) Date: Tue, 28 Jan 2014 01:48:33 -0600 Subject: [App_rpt-users] lsnodes Message-ID: Doug, I noticed one thing that happens when Echolink nodes are listed. If you have zero?s in front of the node numbers they don?t register the calls. It says No info. Is there any way that the zero?s can be omitted from the text for them to show the right callsigns.. Examples are 007059 and 057275. Thanks ahead of time. KC0EQA, Doug -------------- next part -------------- An HTML attachment was scrubbed... URL: From rpt2 at chuck.midlandsnetworking.com Tue Jan 28 08:30:50 2014 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Tue, 28 Jan 2014 02:30:50 -0600 Subject: [App_rpt-users] RTCM Question In-Reply-To: References: Message-ID: Have you updated your RTCM to the latest firmware from SVN? Are you setup to compile your own firmware? On Mon, Jan 27, 2014 at 8:43 PM, 41.2 Jim <41.2jim at gmail.com> wrote: > Question.... is their anything that is universal to both Stanzas, > "usbradio.conf & voter.conf" that can be used with an RTCM like say .... > rxsquelchdelay=xx or rxondelay=xx as I am tring to rid my repeater of a > low signal squelch tail while using a PL board(TS-64 in decode only) and > with the RTCM providing squelch, A kerchunk will get a long squelch tail > ???... was not an issue with the URIx and DSP > have the squelch at 7 turns past minimum gating and still get a long crash > ?? > > Thank you all, in advance, for your time > > Jim Frederick KF6QBW > 446.600- 100.0 PL Repeater > AllStar Node # 28839 > Skype = jim41.2 > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Tue Jan 28 14:55:16 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Tue, 28 Jan 2014 06:55:16 -0800 Subject: [App_rpt-users] RTCM Question In-Reply-To: References: Message-ID: <5FD460BA-F146-48FC-83A0-7E3A4E6A8242@mac.com> No there is no setting like that for RTCMs. RTCMs do have very sensitive squelch. I usually set the squelch five turns beyond threshold. The squelch value on menu 98 should be around 350 to 400. It works very much like MICOR squelch. Quick keying or a weak signal will cause a long squelch tail. A full quieting signal will no squelch tail. Most of the time all you?ll hear is Mic click even on users with no reverse burst. -- Tim :wq On Jan 27, 2014, at 6:43 PM, 41.2 Jim <41.2jim at gmail.com> wrote: > Question.... is their anything that is universal to both Stanzas, "usbradio.conf & voter.conf" that can be used with an RTCM like say .... rxsquelchdelay=xx or rxondelay=xx as I am tring to rid my repeater of a low signal squelch tail while using a PL board(TS-64 in decode only) and with the RTCM providing squelch, A kerchunk will get a long squelch tail ???... was not an issue with the URIx and DSP > have the squelch at 7 turns past minimum gating and still get a long crash ?? > > Thank you all, in advance, for your time > > Jim Frederick KF6QBW > 446.600- 100.0 PL Repeater > AllStar Node # 28839 > Skype = jim41.2 > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From 41.2jim at gmail.com Tue Jan 28 20:41:25 2014 From: 41.2jim at gmail.com (41.2 Jim) Date: Tue, 28 Jan 2014 13:41:25 -0700 Subject: [App_rpt-users] RTCM Question In-Reply-To: <5FD460BA-F146-48FC-83A0-7E3A4E6A8242@mac.com> References: <5FD460BA-F146-48FC-83A0-7E3A4E6A8242@mac.com> Message-ID: no I haven't firmware1.39 I will update Jim Frederick KF6QBW 446.600- 100.0 PL Repeater AllStar Node # 28839 Skype = jim41.2 On Tue, Jan 28, 2014 at 7:55 AM, Tim Sawyer wrote: > No there is no setting like that for RTCMs. RTCMs do have very sensitive > squelch. I usually set the squelch five turns beyond threshold. The squelch > value on menu 98 should be around 350 to 400. > > It works very much like MICOR squelch. Quick keying or a weak signal will > cause a long squelch tail. A full quieting signal will no squelch tail. > Most of the time all you'll hear is Mic click even on users with no reverse > burst. > > > -- > Tim > :wq > > On Jan 27, 2014, at 6:43 PM, 41.2 Jim <41.2jim at gmail.com> wrote: > > > Question.... is their anything that is universal to both Stanzas, > "usbradio.conf & voter.conf" that can be used with an RTCM like say .... > rxsquelchdelay=xx or rxondelay=xx as I am tring to rid my repeater of a low > signal squelch tail while using a PL board(TS-64 in decode only) and with > the RTCM providing squelch, A kerchunk will get a long squelch tail ???... > was not an issue with the URIx and DSP > > have the squelch at 7 turns past minimum gating and still get a long > crash ?? > > > > Thank you all, in advance, for your time > > > > Jim Frederick KF6QBW > > 446.600- 100.0 PL Repeater > > AllStar Node # 28839 > > Skype = jim41.2 > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From 41.2jim at gmail.com Wed Jan 29 00:42:14 2014 From: 41.2jim at gmail.com (41.2 Jim) Date: Tue, 28 Jan 2014 17:42:14 -0700 Subject: [App_rpt-users] RTCM Question In-Reply-To: References: Message-ID: My mistake, as I found I had calibrated the squelch with the squelch pot at 600+(doing a 98status) and found that with the squelch pot all the way down first then, the squelch calibrates at 92 and when turned up to 400+ starts working much better ...it is just that when using a URI the very same people/signal had no tail at all, prob only way back to that with an RTCM is with a micor squelch chip Jim Frederick KF6QBW 446.600- 100.0 PL Repeater AllStar Node # 28839 Skype = jim41.2 On Tue, Jan 28, 2014 at 1:30 AM, Chuck Henderson < rpt2 at chuck.midlandsnetworking.com> wrote: > Have you updated your RTCM to the latest firmware from SVN? > Are you setup to compile your own firmware? > > > On Mon, Jan 27, 2014 at 8:43 PM, 41.2 Jim <41.2jim at gmail.com> wrote: > >> Question.... is their anything that is universal to both Stanzas, >> "usbradio.conf & voter.conf" that can be used with an RTCM like say .... >> rxsquelchdelay=xx or rxondelay=xx as I am tring to rid my repeater of a >> low signal squelch tail while using a PL board(TS-64 in decode only) and >> with the RTCM providing squelch, A kerchunk will get a long squelch tail >> ???... was not an issue with the URIx and DSP >> have the squelch at 7 turns past minimum gating and still get a long >> crash ?? >> >> Thank you all, in advance, for your time >> >> Jim Frederick KF6QBW >> 446.600- 100.0 PL Repeater >> AllStar Node # 28839 >> Skype = jim41.2 >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll >> down to the bottom of the page. Enter your email address and press the >> "Unsubscribe or edit options button" >> You do not need a password to unsubscribe, you can do it via email >> confirmation. If you have trouble unsubscribing, please send a message to >> the list detailing the problem. >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Wed Jan 29 01:19:34 2014 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Tue, 28 Jan 2014 20:19:34 -0500 Subject: [App_rpt-users] Did anyone notice? Message-ID: <52E85726.6040300@bdboyle.com> http://www.arrl.org/repeaters You have to be coordinated, and can only change information they have (ie, if it isn't coordinated or is a hotspot or....no dice). BUT, if enough of us make noise about listing our AllStar node numbers, maybe the dolts in the League publishing division will finally resolve their cranial-rectal inversion and start listing allstar node numbers where applicable? Civil obedience, quietly....??? -- Bryan In this world, you must be oh so smart or oh so pleasant. Well, for years I was smart. I recommend pleasant. You may quote me. Sent from my MacBook Pro. From wb6egr at gmail.com Wed Jan 29 01:41:36 2014 From: wb6egr at gmail.com (Kirk Just Kirk) Date: Tue, 28 Jan 2014 15:41:36 -1000 Subject: [App_rpt-users] Did anyone notice? In-Reply-To: <52E85726.6040300@bdboyle.com> References: <52E85726.6040300@bdboyle.com> Message-ID: No one really takes the ARRL seriously anymore. They are a PRIVATE business just like AARP and AAA Auto Club. Selling old books, key chains, propeller hats and services you will never use nor need. They are stuck in the 19th century, books still contain TUBE projects. The ARRL does VERY LITTLE for HAM radio in general.You have to PAY to use their repeater directory or buy one fresh off the press with outdated information in it. The publications are chock full of PAID Advertisements, they "Shill" for anyone willing to PAY to be in them. The ARRL will be quick to tell you what you CAN'T DO...and nowhere to be found when you need them to protect our interest (Like PAVPAWS in California).ARRL wants your 900Mhz repeaters on a insane split (That Icom came up with) because they are a customer, the rest of us use converted commercial gear on 902/927Mhz.People flock to the INTERNET for recent Repeater listings, NOT the OFFICIAL (in their mind) ARRL Repeater Directory. In MY OPINION..the ARRL is a lot like the old cartoons "Heckle & Jeckle"...nonsense talking Magpies.... Kirk On Tue, Jan 28, 2014 at 3:19 PM, Bryan D. Boyle wrote: > http://www.arrl.org/repeaters > > You have to be coordinated, and can only change information they have (ie, > if it isn't coordinated or is a hotspot or....no dice). BUT, if enough of > us make noise about listing our AllStar node numbers, maybe the dolts in > the League publishing division will finally resolve their cranial-rectal > inversion and start listing allstar node numbers where applicable? > > Civil obedience, quietly....??? > > -- > Bryan > In this world, you must be oh so smart or oh so pleasant. > Well, for years I was smart. I recommend pleasant. > You may quote me. > > Sent from my MacBook Pro. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/ > mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. > Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Wed Jan 29 01:53:11 2014 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Tue, 28 Jan 2014 20:53:11 -0500 Subject: [App_rpt-users] Did anyone notice? In-Reply-To: References: <52E85726.6040300@bdboyle.com> Message-ID: <984A27E1-4AE7-4473-9860-586E7F866512@bdboyle.com> no disagreement here. but, some may think the League still has relevance, so, in the interest of keeping the info as fresh as possible...what the heck...even a broken and worthless clock is right and useful twice a day...lol. (that less than 40% of the licensed hams are members are a pretty good indication as to how they're viewed; look at a QST from the 60s and compare it to the lightweight stuff they pubkish today...no comparison) -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... > On Jan 28, 2014, at 20:41, Kirk Just Kirk wrote: > > No one really takes the ARRL seriously anymore. They are a PRIVATE business just like AARP and AAA Auto Club. Selling old books, key chains, propeller hats and services you will never use nor need. > They are stuck in the 19th century, books still contain TUBE projects. The ARRL does VERY LITTLE for HAM radio in general.You have to PAY to use their repeater directory or buy one fresh off the press with outdated information in it. > The publications are chock full of PAID Advertisements, they "Shill" for anyone willing to PAY to be in them. > The ARRL will be quick to tell you what you CAN'T DO...and nowhere to be found when you need them to protect our interest (Like PAVPAWS in California).ARRL wants your 900Mhz repeaters on a insane split (That Icom came up with) because they are a customer, the rest of us use converted commercial gear on 902/927Mhz.People flock to the INTERNET for recent Repeater listings, NOT the OFFICIAL (in their mind) ARRL Repeater Directory. In MY OPINION..the ARRL is a lot like the old cartoons "Heckle & Jeckle"...nonsense talking Magpies.... > > > Kirk > > >> On Tue, Jan 28, 2014 at 3:19 PM, Bryan D. Boyle wrote: >> http://www.arrl.org/repeaters >> >> You have to be coordinated, and can only change information they have (ie, if it isn't coordinated or is a hotspot or....no dice). BUT, if enough of us make noise about listing our AllStar node numbers, maybe the dolts in the League publishing division will finally resolve their cranial-rectal inversion and start listing allstar node numbers where applicable? >> >> Civil obedience, quietly....??? >> >> -- >> Bryan >> In this world, you must be oh so smart or oh so pleasant. >> Well, for years I was smart. I recommend pleasant. >> You may quote me. >> >> Sent from my MacBook Pro. >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" >> You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From edgecomberts at gmail.com Wed Jan 29 02:01:27 2014 From: edgecomberts at gmail.com (Shane Morris) Date: Wed, 29 Jan 2014 13:01:27 +1100 Subject: [App_rpt-users] Did anyone notice? In-Reply-To: References: <52E85726.6040300@bdboyle.com> Message-ID: Quoting you, pleasant in this case won't work. Not with an organisation that *claims* its the oldest amateur radio association in the world (that title goes to another American league, the longest *continuous* running is the Australia WIA, whom I will never join, because they will never man up to the ACMA and demand packet radio for Foundation) - I think, for "Old Man Radio" his days are numbered. The uproar when Morse was dropped! Wow-wee, guys, we had 3G on 2100MHz in Australia at that point. Why do I want to string up open wire all over the place, and pretend I'm cool, when Tesla did cool with elegance? Really, most clubs, leagues, and association are beyond antiquated, they are prehistoric. I remember, when I first started researching packet radio in 1997, we were "setting the frontiers" by hooking up a T1 over radio using coffee cans. The WIA would cringe if I did something of that sort. Then legislate me out of existence. Now do you know why I refuse to hold an Australian Amateur Licence, of any grade? If people want to politick, there is the Labor Party. Meanwhile, if you like radios, there is always this list. I hold on to that hope at least... By the way, all programmers, bug submitters, and ideas people, keep up your good work! I always appreciate reading your thoughts. Thanks! On Wed, Jan 29, 2014 at 12:41 PM, Kirk Just Kirk wrote: > No one really takes the ARRL seriously anymore. They are a PRIVATE > business just like AARP and AAA Auto Club. Selling old books, key chains, > propeller hats and services you will never use nor need. > They are stuck in the 19th century, books still contain TUBE projects. The > ARRL does VERY LITTLE for HAM radio in general.You have to PAY to use their > repeater directory or buy one fresh off the press with outdated information > in it. > The publications are chock full of PAID Advertisements, they "Shill" for > anyone willing to PAY to be in them. > The ARRL will be quick to tell you what you CAN'T DO...and nowhere to be > found when you need them to protect our interest (Like PAVPAWS in > California).ARRL wants your 900Mhz repeaters on a insane split (That Icom > came up with) because they are a customer, the rest of us use converted > commercial gear on 902/927Mhz.People flock to the INTERNET for recent > Repeater listings, NOT the OFFICIAL (in their mind) ARRL Repeater > Directory. In MY OPINION..the ARRL is a lot like the old cartoons "Heckle & > Jeckle"...nonsense talking Magpies.... > > > Kirk > > > On Tue, Jan 28, 2014 at 3:19 PM, Bryan D. Boyle wrote: > >> http://www.arrl.org/repeaters >> >> You have to be coordinated, and can only change information they have >> (ie, if it isn't coordinated or is a hotspot or....no dice). BUT, if >> enough of us make noise about listing our AllStar node numbers, maybe the >> dolts in the League publishing division will finally resolve their >> cranial-rectal inversion and start listing allstar node numbers where >> applicable? >> >> Civil obedience, quietly....??? >> >> -- >> Bryan >> In this world, you must be oh so smart or oh so pleasant. >> Well, for years I was smart. I recommend pleasant. >> You may quote me. >> >> Sent from my MacBook Pro. >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/ >> mailman/listinfo/app_rpt-users and scroll down to the bottom of the >> page. Enter your email address and press the "Unsubscribe or edit options >> button" >> You do not need a password to unsubscribe, you can do it via email >> confirmation. If you have trouble unsubscribing, please send a message to >> the list detailing the problem. > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ars.w5omr at gmail.com Wed Jan 29 03:19:55 2014 From: ars.w5omr at gmail.com (Geoff) Date: Tue, 28 Jan 2014 21:19:55 -0600 Subject: [App_rpt-users] Did anyone notice? In-Reply-To: References: <52E85726.6040300@bdboyle.com> Message-ID: <52E8735B.6030006@gmail.com> > On Tue, Jan 28, 2014 at 3:19 PM, Bryan D. Boyle > > wrote: > > http://www.arrl.org/repeaters > > You have to be coordinated, and can only change information > they have (ie, if it isn't coordinated or is a hotspot > or....no dice). BUT, if enough of us make noise about listing > our AllStar node numbers, maybe the dolts in the League > publishing division will finally resolve their cranial-rectal > inversion and start listing allstar node numbers where applicable? > > Civil obedience, quietly....??? > Screw the Armenian Rump Rubber League. Repeaterbook (http://www.repeaterbook.com/) lists repeaters with allstar numbers. and they have a free Android app. -Geoff/W5OMR -------------- next part -------------- An HTML attachment was scrubbed... URL: From ke2n at cs.com Wed Jan 29 10:02:19 2014 From: ke2n at cs.com (Ken) Date: Wed, 29 Jan 2014 05:02:19 -0500 Subject: [App_rpt-users] did anyone notice Message-ID: <013001cf1cd9$3239bf40$96ad3dc0$@cs.com> Perhaps the first step is getting your local coordination body to list the asterisk number. After some gentle encouragement, we got that to happen in the DC area http://www.tmarc.org/freqs/Frequency.html Regards Ken From vencl at att.net Wed Jan 29 11:36:46 2014 From: vencl at att.net (Lu Vencl) Date: Wed, 29 Jan 2014 06:36:46 -0500 Subject: [App_rpt-users] did anyone notice In-Reply-To: <013001cf1cd9$3239bf40$96ad3dc0$@cs.com> References: <013001cf1cd9$3239bf40$96ad3dc0$@cs.com> Message-ID: <9D2083FE-D6AF-44DE-95C2-5B6FC5B36EA8@att.net> I have been trying to get repeater books to list Allstar node numbers but I just can't seem to get them to include it. Nice job! Sent from my iPhone, Lu Vencl > On Jan 29, 2014, at 5:02 AM, "Ken" wrote: > > Perhaps the first step is getting your local coordination body to list the > asterisk number. > After some gentle encouragement, we got that to happen in the DC area > > http://www.tmarc.org/freqs/Frequency.html > > Regards > Ken > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From ars.w5omr at gmail.com Wed Jan 29 12:08:56 2014 From: ars.w5omr at gmail.com (Geoff) Date: Wed, 29 Jan 2014 06:08:56 -0600 Subject: [App_rpt-users] did anyone notice In-Reply-To: <9D2083FE-D6AF-44DE-95C2-5B6FC5B36EA8@att.net> References: <013001cf1cd9$3239bf40$96ad3dc0$@cs.com> <9D2083FE-D6AF-44DE-95C2-5B6FC5B36EA8@att.net> Message-ID: <52E8EF58.4010503@gmail.com> On 01/29/2014 05:36 AM, Lu Vencl wrote: > I have been trying to get repeater books to list Allstar node numbers but I just can't seem to get them to include it. > Nice job! > > Not Repeater Books... www.repeaterbook.com http://www.repeaterbook.com/repeaters/details.php?state_id=48&ID=9953 73 = Best Regard"S" -Geoff/W5OMR -------------- next part -------------- An HTML attachment was scrubbed... URL: From ken-robinson at o2.co.uk Wed Jan 29 12:24:16 2014 From: ken-robinson at o2.co.uk (Ken Robinson) Date: Wed, 29 Jan 2014 12:24:16 -0000 Subject: [App_rpt-users] Node not in database Message-ID: <000f01cf1ced$0729cac0$157d6040$@o2.co.uk> Hi, After a pc failure I have had to reinstall Acid, it works ok, my node loads and works perfectly locally but it will not access the AllStar network. All I get is node 28468 is no longer in the database. Can anyone tell me where I have gone wrong? If I log on to the Allstar site and attempt a download configuration I get "sorry your server does not have any downloadable nodes (register only)" Hopefully someone can point me in the right direction Regards Ken G0LCE -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Wed Jan 29 14:09:10 2014 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Wed, 29 Jan 2014 09:09:10 -0500 Subject: [App_rpt-users] did anyone notice In-Reply-To: <013001cf1cd9$3239bf40$96ad3dc0$@cs.com> References: <013001cf1cd9$3239bf40$96ad3dc0$@cs.com> Message-ID: mine (arcc) does; it's the repeater directory drone who doesn't recognize the allstar network as being worthy of inclusion. went around and around about this a couple years ago with them to no avail. like kirk said, they're stuck in the 20th century and those who have the mind share because _at one time_ were doing something new are seen as the experts and go-to guys...and we know what the IRLP person thinks of us(we're a revenue threat), and echolink just tolerates us because there's no reason not to. FWIW, I use RFinder on my handheld and pads. gps sync'd, authors are responsive, auto updates as you are moving, and a LOT more accurate (and affordable) than a paper book that's out of date while it's still on the press. And, it lists Allstar nodes...:) -- Bryan There are two hard problems in computer science: cache validation, variable substitution, and off-by-one errors. Sent from my iPad > On Jan 29, 2014, at 5:02 AM, "Ken" wrote: > > Perhaps the first step is getting your local coordination body to list the > asterisk number. > After some gentle encouragement, we got that to happen in the DC area > > http://www.tmarc.org/freqs/Frequency.html > > Regards > Ken > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From brett.friermood at gmail.com Wed Jan 29 15:05:32 2014 From: brett.friermood at gmail.com (Brett Friermood) Date: Wed, 29 Jan 2014 09:05:32 -0600 Subject: [App_rpt-users] did anyone notice In-Reply-To: <9D2083FE-D6AF-44DE-95C2-5B6FC5B36EA8@att.net> References: <013001cf1cd9$3239bf40$96ad3dc0$@cs.com> <9D2083FE-D6AF-44DE-95C2-5B6FC5B36EA8@att.net> Message-ID: There is always the "make a better one" way to go. Not only would it then list AllStar nodes, it could actually have more useful info, better organization and more. Then again it will probably go this way: http://xkcd.com/927/ I don't really travel a lot, so I'm really only concerned with my surrounding 100-200 mile area. For the most part I basically use the 3 state coordinating bodies' listings, then try to cross reference with the web pages of any clubs or other individuals that I find. Every once in a while I get some first hand information from the people that actually work on them, the owners, or other in the know users. The fun part is always seeing if a club has the most accurate and up to date information about their own repeater or not. /rant on, sorry One thing that drives me crazy with all the listings I find is that they nearly never provide any indication of coverage, or even very accurate location for that matter. In a roughly 30 mile long city just listing the city name is not good enough. I know I'm a lot different than most of the general population of amateur radio but I prefer to know a lot more than just frequency, offset, and input tone. I usually like to know: approximate location (I understand the security thing to some extent but within a mile or two would help) rough antenna height (ideally for both receive and transmit, feet in hundreds minimum) repeater output tone, yes or no, what is it? does it make use of remote receive sites?, is it a voted system or tone selectable?, approximate locations of those sites simulcast?, locations part of a larger linked system?, what system, how is it linked (RF, IP, landline, AllStar, IRLP, Echolink), node numbers backup power, specs when was the info last updated, by who (owner, tech, user) I'm sure I missed some but that's a lot of what I'm looking for. I know some clubs provide coverage maps on the sites, but I always take those with a grain of salt. How are they modeled, what software, accurate terrain data, mobile/portable, etc? I have a background in public safety and see the same attitude of "turn to this channel and it will work to talk to so and so" all the time. Then when something goes south there is never a good workaround. /rant off Brett KQ9N On Wed, Jan 29, 2014 at 5:36 AM, Lu Vencl wrote: > I have been trying to get repeater books to list Allstar node numbers but I just can't seem to get them to include it. > Nice job! > > Sent from my iPhone, Lu Vencl > >> On Jan 29, 2014, at 5:02 AM, "Ken" wrote: >> >> Perhaps the first step is getting your local coordination body to list the >> asterisk number. >> After some gentle encouragement, we got that to happen in the DC area >> >> http://www.tmarc.org/freqs/Frequency.html >> >> Regards >> Ken From tim.sawyer at mac.com Wed Jan 29 15:10:53 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Wed, 29 Jan 2014 07:10:53 -0800 Subject: [App_rpt-users] Node not in database In-Reply-To: <000f01cf1ced$0729cac0$157d6040$@o2.co.uk> References: <000f01cf1ced$0729cac0$157d6040$@o2.co.uk> Message-ID: <99781A35-96B7-462A-8288-1037068202F3@mac.com> Your node is not registered as indicated by a white background on the node list here. https://allstarlink.org/nodelist.php. A common reason for that is no network connectivity. A misconfigured /etc/resolv.conf sometimes happens on new ACID installs. Make sure it has the correct DNS servers. -- Tim :wq On Jan 29, 2014, at 4:24 AM, Ken Robinson wrote: > Hi, > After a pc failure I have had to reinstall Acid, it works ok, my node loads and works perfectly locally but it will not access the AllStar network. > All I get is node 28468 is no longer in the database. > > Can anyone tell me where I have gone wrong? If I log on to the Allstar site and attempt a download configuration I get > > ?sorry your server does not have any downloadable nodes (register only)? > > Hopefully someone can point me in the right direction > > Regards > Ken > G0LCE > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: From waughdj at msn.com Wed Jan 29 23:45:25 2014 From: waughdj at msn.com (Douglas Waugh) Date: Wed, 29 Jan 2014 17:45:25 -0600 Subject: [App_rpt-users] lsnodes In-Reply-To: References: , Message-ID: From: Doug Crompton Sent: Wednesday, January 29, 2014 9:23 AM To: Douglas Waugh Subject: RE: [App_rpt-users] lsnodes Doug, Did you get my previous email? 73 Doug WA3DSP http://www.crompton.com/hamradio -------------------------------------------------------------------------------- From: doug at crompton.com To: waughdj at msn.com Subject: RE: [App_rpt-users] lsnodes Date: Tue, 28 Jan 2014 12:19:21 -0500 Doug, You are right. My check was for node numbers > 100000 but I failed to look for leading 0's. Looking at the list I would say that 95%+ of the nodes are truly 100,000 or above. I think I have nade a change that will correct that but I want to test it. Do you have an Allstar node I can connect to where echolink nodes that fit the leading 0 and less than 100000 number are connected 73 Doug WA3DSP http://www.crompton.com/hamradio -------------------------------------------------------------------------------- From: waughdj at msn.com To: app_rpt-users at ohnosec.org Date: Tue, 28 Jan 2014 01:48:33 -0600 Subject: [App_rpt-users] lsnodes Doug, I noticed one thing that happens when Echolink nodes are listed. If you have zero?s in front of the node numbers they don?t register the calls. It says No info. Is there any way that the zero?s can be omitted from the text for them to show the right callsigns.. Examples are 007059 and 057275. Thanks ahead of time. KC0EQA, Doug _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: From waughdj at msn.com Wed Jan 29 23:46:43 2014 From: waughdj at msn.com (Douglas Waugh) Date: Wed, 29 Jan 2014 17:46:43 -0600 Subject: [App_rpt-users] lsnodes In-Reply-To: References: , Message-ID: You could connect to my node 27553, I am usually connected to *TACOMA* From: Doug Crompton Sent: Wednesday, January 29, 2014 9:23 AM To: Douglas Waugh Subject: RE: [App_rpt-users] lsnodes Doug, Did you get my previous email? 73 Doug WA3DSP http://www.crompton.com/hamradio -------------------------------------------------------------------------------- From: doug at crompton.com To: waughdj at msn.com Subject: RE: [App_rpt-users] lsnodes Date: Tue, 28 Jan 2014 12:19:21 -0500 Doug, You are right. My check was for node numbers > 100000 but I failed to look for leading 0's. Looking at the list I would say that 95%+ of the nodes are truly 100,000 or above. I think I have nade a change that will correct that but I want to test it. Do you have an Allstar node I can connect to where echolink nodes that fit the leading 0 and less than 100000 number are connected 73 Doug WA3DSP http://www.crompton.com/hamradio -------------------------------------------------------------------------------- From: waughdj at msn.com To: app_rpt-users at ohnosec.org Date: Tue, 28 Jan 2014 01:48:33 -0600 Subject: [App_rpt-users] lsnodes Doug, I noticed one thing that happens when Echolink nodes are listed. If you have zero?s in front of the node numbers they don?t register the calls. It says No info. Is there any way that the zero?s can be omitted from the text for them to show the right callsigns.. Examples are 007059 and 057275. Thanks ahead of time. KC0EQA, Doug _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: From doug at crompton.com Thu Jan 30 06:24:02 2014 From: doug at crompton.com (Doug Crompton) Date: Thu, 30 Jan 2014 01:24:02 -0500 Subject: [App_rpt-users] lsnodes 1.03 Message-ID: I fixed a bug in the display of Echolink nodes. All Echolink nodes should now display as ECHOLINK with call if data is available. http://crompton.com/hamradio/allstar/lsnodes.html wget http://www.crompton.com/hamradio/allstar/lsnodes-1.03.tgz 73 Doug WA3DSP http://www.crompton.com/hamradio -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at mac.com Thu Jan 30 15:04:41 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Thu, 30 Jan 2014 07:04:41 -0800 Subject: [App_rpt-users] Creating a Private Network Message-ID: Creating a private network is actually pretty easy. What you do is add the node and IP address of the other node(s) to each server?s rpt.conf in the [nodes] stanza. Here?s an example with two private nodes. Server A? s IP is 192.168.1.10 and B is 192.168.1.11. SERVER A rpt.conf [nodes] 1000 = radio at 127.0.0.1/1000,NONE ; Local node 1001 = radio at 192.168.1.11/1001,NONE ; Remote node SERVER B rpt.conf [nodes] 1001 = radio at 127.0.0.1/1001,NONE ; Local node 1000 = radio at 192.168.1.10/1000,NONE ; Remote node Of course you need to have all the normal stuff that nodes have in rpt.conf and extensions.conf. Private nodes do not need a register line in iax.conf. -- Tim :wq On Jan 30, 2014, at 3:51 AM, Lu Vencl wrote: > Tim. Do you know how to connect one node to another via direct ip connect? In other words to a node that is not on the public network but private? > > Sent from my iPhone, Lu Vencl -- Tim :wq -------------- next part -------------- An HTML attachment was scrubbed... URL: From chris at lancnet.com Thu Jan 30 15:22:23 2014 From: chris at lancnet.com (Chris Bunting) Date: Thu, 30 Jan 2014 10:22:23 -0500 Subject: [App_rpt-users] Help getting started with RTCM and ACID Message-ID: I have 2 RTCM boxes configured, and an ACID install. I figured out I needed to create a voter.conf file, and it is as follows: [general] port = 667 password = @@@@@@ [28989] NORTH = @@@@@,transmit SOUTH = @@@@@,master,transmit (@ being my passwords) Do I need to change anything in the rpt.conf file? I read something about 1 line needing modified? Also, I am on a LAN and the server has a static IP, can I simply enter the IP in the FQDN field on the RTCM or must it be a FQDN that resolves? I tried both, and Ithink I'm doing everything right, but I can't get the darn box to connect to my server... After I get this connected it's time to break out the soldering iron and hook this all up to my 2 repeaters for my simulcast project... fun fun! Any hints/tips? TIA Chris N3FYI From tim.sawyer at mac.com Thu Jan 30 17:38:08 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Thu, 30 Jan 2014 09:38:08 -0800 Subject: [App_rpt-users] Help getting started with RTCM and ACID In-Reply-To: References: Message-ID: <19E9548D-CB13-4593-AA06-E6F24EBB0C82@mac.com> You need to change the rxchannel in rpt.conf [28989] ; Change this to your assigned node number rxchannel = Voter/28989 ; Voter -- Tim :wq On Jan 30, 2014, at 7:22 AM, Chris Bunting wrote: > I have 2 RTCM boxes configured, and an ACID install. I figured out I > needed to create a voter.conf file, and it is as follows: > > [general] > port = 667 > password = @@@@@@ > > [28989] > NORTH = @@@@@,transmit > SOUTH = @@@@@,master,transmit > > (@ being my passwords) > > > Do I need to change anything in the rpt.conf file? I read something > about 1 line needing modified? > > > Also, I am on a LAN and the server has a static IP, can I simply enter > the IP in the FQDN field on the RTCM or must it be a FQDN that > resolves? > > I tried both, and Ithink I'm doing everything right, but I can't get > the darn box to connect to my server... > > After I get this connected it's time to break out the soldering iron > and hook this all up to my 2 repeaters for my simulcast project... fun > fun! > > Any hints/tips? > > > TIA > > Chris N3FYI > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From tim.sawyer at mac.com Thu Jan 30 17:40:14 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Thu, 30 Jan 2014 09:40:14 -0800 Subject: [App_rpt-users] Help getting started with RTCM and ACID In-Reply-To: References: Message-ID: <6507E791-222C-4BA3-8A20-0FE4FC30C1D7@mac.com> Either is fine. -- Tim :wq On Jan 30, 2014, at 7:22 AM, Chris Bunting wrote: > Also, I am on a LAN and the server has a static IP, can I simply enter > the IP in the FQDN field on the RTCM or must it be a FQDN that > resolves? From chris at lancnet.com Thu Jan 30 18:30:10 2014 From: chris at lancnet.com (Chris Bunting) Date: Thu, 30 Jan 2014 13:30:10 -0500 Subject: [App_rpt-users] Help getting started with RTCM and ACID In-Reply-To: <19E9548D-CB13-4593-AA06-E6F24EBB0C82@mac.com> References: <19E9548D-CB13-4593-AA06-E6F24EBB0C82@mac.com> Message-ID: Thanks, I did manage to change that, however I still can not get either box to get to the connected state. I've also defaulted the RTCM after flashing it just to make sure that wasn't the problem, and still no dice? On Jan 30, 2014 12:38 PM, "Tim Sawyer" wrote: > You need to change the rxchannel in rpt.conf > > [28989] ; Change this to your assigned > node number > rxchannel = Voter/28989 ; Voter > > -- > Tim > :wq > > On Jan 30, 2014, at 7:22 AM, Chris Bunting wrote: > > > I have 2 RTCM boxes configured, and an ACID install. I figured out I > > needed to create a voter.conf file, and it is as follows: > > > > [general] > > port = 667 > > password = @@@@@@ > > > > [28989] > > NORTH = @@@@@,transmit > > SOUTH = @@@@@,master,transmit > > > > (@ being my passwords) > > > > > > Do I need to change anything in the rpt.conf file? I read something > > about 1 line needing modified? > > > > > > Also, I am on a LAN and the server has a static IP, can I simply enter > > the IP in the FQDN field on the RTCM or must it be a FQDN that > > resolves? > > > > I tried both, and Ithink I'm doing everything right, but I can't get > > the darn box to connect to my server... > > > > After I get this connected it's time to break out the soldering iron > > and hook this all up to my 2 repeaters for my simulcast project... fun > > fun! > > > > Any hints/tips? > > > > > > TIA > > > > Chris N3FYI > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Thu Jan 30 18:37:16 2014 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Thu, 30 Jan 2014 13:37:16 -0500 Subject: [App_rpt-users] DMR to Analog/app-rpt Message-ID: beginning, with the growing interest in the DMR/trbo usage...to investigate integrating the two technologies. Connect Systems is starting to bring in DMR cable DMR/analog HTs for not a lot more than a wouxun...and, yes, know about the DMR-MARC group. But, my question...is anyone in the band investigating navigating the DMR to Asterisk chasm yet? PM is probably preferable than broadcast, unless there is interest on the part of the tribe....or I've missed something along the way... -- Bryan There are two hard problems in computer science: cache validation, variable substitution, and off-by-one errors. Sent from my iPad From chris at lancnet.com Thu Jan 30 19:48:14 2014 From: chris at lancnet.com (Chris Bunting) Date: Thu, 30 Jan 2014 14:48:14 -0500 Subject: [App_rpt-users] Help getting started with RTCM and ACID In-Reply-To: <19E9548D-CB13-4593-AA06-E6F24EBB0C82@mac.com> References: <19E9548D-CB13-4593-AA06-E6F24EBB0C82@mac.com> Message-ID: Thanks to Tim's help I am up and running! It was a conflict with my password having the same name as the node.... whoops! Thanks Tim :) Thanks, Chris Bunting Lancaster Networks, LLC | Lancaster Towers, LLC 717-459-4321 On Thu, Jan 30, 2014 at 12:38 PM, Tim Sawyer wrote: > You need to change the rxchannel in rpt.conf > > [28989] ; Change this to your assigned node number > rxchannel = Voter/28989 ; Voter > > -- > Tim > :wq > > On Jan 30, 2014, at 7:22 AM, Chris Bunting wrote: > >> I have 2 RTCM boxes configured, and an ACID install. I figured out I >> needed to create a voter.conf file, and it is as follows: >> >> [general] >> port = 667 >> password = @@@@@@ >> >> [28989] >> NORTH = @@@@@,transmit >> SOUTH = @@@@@,master,transmit >> >> (@ being my passwords) >> >> >> Do I need to change anything in the rpt.conf file? I read something >> about 1 line needing modified? >> >> >> Also, I am on a LAN and the server has a static IP, can I simply enter >> the IP in the FQDN field on the RTCM or must it be a FQDN that >> resolves? >> >> I tried both, and Ithink I'm doing everything right, but I can't get >> the darn box to connect to my server... >> >> After I get this connected it's time to break out the soldering iron >> and hook this all up to my 2 repeaters for my simulcast project... fun >> fun! >> >> Any hints/tips? >> >> >> TIA >> >> Chris N3FYI >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" >> You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. > From brett.friermood at gmail.com Thu Jan 30 19:58:34 2014 From: brett.friermood at gmail.com (Brett Friermood) Date: Thu, 30 Jan 2014 13:58:34 -0600 Subject: [App_rpt-users] DMR to Analog/app-rpt In-Reply-To: References: Message-ID: My observations: I am not aware of anything for transmit. For receive/decode I am only aware of DSD and a couple data related utilities. For a repeater I think it might be possible to use plain narrowband (12.5 kHz) radios with low level access to the transmitter/receiver due to no timing constraints. However for "subscriber unit" operation a USRP or similar would be needed due to the on/off timing of TDMA. With the OP25 Project's recent breakthroughs in trunking and CQPSK simulcast reception, I believe some of them are now working on Phase II P25. Given the very similar nature of the two technologies it would seem a spin off of that would be a good starting point for DMR. I would think a similar hook into Asterisk could be used. I've been gong to send out an email on the OP25 list when I got time with few questions, one being the existence of such a DMR project or work being done toward it. I believe there a couple developers also on this list so maybe they will chime in. Brett KQ9N On Thu, Jan 30, 2014 at 12:37 PM, Bryan D. Boyle wrote: > beginning, with the growing interest in the DMR/trbo usage...to investigate integrating the two technologies. Connect Systems is starting to bring in DMR cable DMR/analog HTs for not a lot more than a wouxun...and, yes, know about the DMR-MARC group. But, my question...is anyone in the band investigating navigating the DMR to Asterisk chasm yet? > > PM is probably preferable than broadcast, unless there is interest on the part of the tribe....or I've missed something along the way... > > -- > Bryan > There are two hard problems in computer science: cache validation, variable substitution, and off-by-one errors. > > Sent from my iPad > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From bdboyle at bdboyle.com Thu Jan 30 21:09:16 2014 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Thu, 30 Jan 2014 16:09:16 -0500 Subject: [App_rpt-users] DMR to Analog/app-rpt In-Reply-To: References: Message-ID: thanks; was digging around the net (what the heck did we do back in the day??? Rely on QST?) and, while I know that the DMR-MARC group has a prohibition against cross-connecting the trbo equipment (indeed, connecting anything other than batwing boxen to their net...after all, it IS the Motorola Amateur Radio Club...) to any analog system if you're on their net, I note that Hytera has app notes to do so with theirs. Yeah, you use some of the flexibility of cross system roaming and messaging, but if the goal is to experiment with a DMR box on a local app-rpt net...don't see the problem...but, then, I know I need to see the optomitrist... -- Bryan There are two hard problems in computer science: cache validation, variable substitution, and off-by-one errors. Sent from my iPad > On Jan 30, 2014, at 2:58 PM, Brett Friermood wrote: > > My observations: I am not aware of anything for transmit. For > receive/decode I am only aware of DSD and a couple data related > utilities. For a repeater I think it might be possible to use plain > narrowband (12.5 kHz) radios with low level access to the > transmitter/receiver due to no timing constraints. However for > "subscriber unit" operation a USRP or similar would be needed due to > the on/off timing of TDMA. > > With the OP25 Project's recent breakthroughs in trunking and CQPSK > simulcast reception, I believe some of them are now working on Phase > II P25. Given the very similar nature of the two technologies it would > seem a spin off of that would be a good starting point for DMR. I > would think a similar hook into Asterisk could be used. > > I've been gong to send out an email on the OP25 list when I got time > with few questions, one being the existence of such a DMR project or > work being done toward it. I believe there a couple developers also on > this list so maybe they will chime in. > > Brett KQ9N > > >> On Thu, Jan 30, 2014 at 12:37 PM, Bryan D. Boyle wrote: >> beginning, with the growing interest in the DMR/trbo usage...to investigate integrating the two technologies. Connect Systems is starting to bring in DMR cable DMR/analog HTs for not a lot more than a wouxun...and, yes, know about the DMR-MARC group. But, my question...is anyone in the band investigating navigating the DMR to Asterisk chasm yet? >> >> PM is probably preferable than broadcast, unless there is interest on the part of the tribe....or I've missed something along the way... >> >> -- >> Bryan >> There are two hard problems in computer science: cache validation, variable substitution, and off-by-one errors. >> >> Sent from my iPad >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" >> You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From kk6ecm at gmail.com Fri Jan 31 01:58:32 2014 From: kk6ecm at gmail.com (kk6ecm) Date: Thu, 30 Jan 2014 17:58:32 -0800 Subject: [App_rpt-users] RTCM Squelch Noise Gain Value = ? In-Reply-To: References: Message-ID: <72AE810A-FFFD-4E1C-99A4-560872870BF5@gmail.com> Question from a friend... "... when you do an # 98 Status on your RTCM, what is your Squelch Noise Gain Value = ? I was wondering how close mine is to others (Radio=master2 Station)" What are typical values on an RTCM node? Thanks, Bob Sent from iPad From tim.sawyer at mac.com Fri Jan 31 15:24:04 2014 From: tim.sawyer at mac.com (Tim Sawyer) Date: Fri, 31 Jan 2014 07:24:04 -0800 Subject: [App_rpt-users] RTCM Squelch Noise Gain Value = ? In-Reply-To: <72AE810A-FFFD-4E1C-99A4-560872870BF5@gmail.com> References: <72AE810A-FFFD-4E1C-99A4-560872870BF5@gmail.com> Message-ID: From RTCM's connected to Quantars: Squelch Noise Gain Value: 34, Diode Cal. Value: 39, SQL pot 310 Squelch Noise Gain Value: 32, Diode Cal. Value: 42, SQL pot 412 -- Tim :wq On Jan 30, 2014, at 5:58 PM, kk6ecm wrote: > Question from a friend... > > "... when you do an # 98 Status on your RTCM, what is your Squelch Noise Gain Value = ? I was wondering how close mine is to others (Radio=master2 Station)" > > What are typical values on an RTCM node? > > Thanks, > Bob > > Sent from iPad > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. From k1if at k1if.com Fri Jan 31 17:28:14 2014 From: k1if at k1if.com (K1IF) Date: Fri, 31 Jan 2014 11:28:14 -0600 Subject: [App_rpt-users] DMR to Analog/app-rpt Message-ID: <000001cf1ea9$d47ea690$7d7bf3b0$@com> Travis KJ4NDP has successfully connected his DMR radio to asterisk by utilizing the dstar channel driver in asterisk created by Scott Lawson ki4lkf. --- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From 41.2jim at gmail.com Fri Jan 31 18:49:09 2014 From: 41.2jim at gmail.com (41.2 Jim) Date: Fri, 31 Jan 2014 11:49:09 -0700 Subject: [App_rpt-users] RTCM Squelch Noise Gain Value = ? In-Reply-To: References: <72AE810A-FFFD-4E1C-99A4-560872870BF5@gmail.com> Message-ID: Squelch Noise Gain Value: 8, Diode Cal. Value: 43, SQL pot 435 my Squelch Noise Gain Value:8 seems way low as compared to all others Jim Frederick KF6QBW 446.600- 100.0 PL Repeater AllStar Node # 28839 Skype = jim41.2 On Fri, Jan 31, 2014 at 8:24 AM, Tim Sawyer wrote: > From RTCM's connected to Quantars: > > Squelch Noise Gain Value: 34, Diode Cal. Value: 39, SQL pot 310 > > Squelch Noise Gain Value: 32, Diode Cal. Value: 42, SQL pot 412 > > -- > Tim > :wq > > On Jan 30, 2014, at 5:58 PM, kk6ecm wrote: > > > Question from a friend... > > > > "... when you do an # 98 Status on your RTCM, what is your Squelch Noise > Gain Value = ? I was wondering how close mine is to others (Radio=master2 > Station)" > > > > What are typical values on an RTCM node? > > > > Thanks, > > Bob > > > > Sent from iPad > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down > to the bottom of the page. Enter your email address and press the > "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to > the list detailing the problem. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From keith at goobie.org Fri Jan 31 19:57:06 2014 From: keith at goobie.org (Keith Goobie) Date: Fri, 31 Jan 2014 14:57:06 -0500 Subject: [App_rpt-users] DMR to Analog/app-rpt In-Reply-To: <000001cf1ea9$d47ea690$7d7bf3b0$@com> Message-ID: Is there a link that I can follow to get more info. Thanks Keith On 1/31/14 12:28 PM, "K1IF" wrote: > Travis KJ4NDP has successfully connected his DMR radio to asterisk by > utilizing the dstar channel driver in asterisk created by Scott Lawson ki4lkf. > > > > This email is free from viruses and malware because > avast! Antivirus protection is active. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to > the bottom of the page. Enter your email address and press the "Unsubscribe or > edit options button" > You do not need a password to unsubscribe, you can do it via email > confirmation. If you have trouble unsubscribing, please send a message to the > list detailing the problem. -- keith at goobie.org Keith Goobie Richmond Hill, ON, CANADA -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Fri Jan 31 20:03:24 2014 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Fri, 31 Jan 2014 15:03:24 -0500 Subject: [App_rpt-users] DMR to Analog/app-rpt In-Reply-To: References: Message-ID: same here... -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... > On Jan 31, 2014, at 14:57, Keith Goobie wrote: > > Is there a link that I can follow to get more info. > > Thanks > Keith > > > On 1/31/14 12:28 PM, "K1IF" wrote: > > Travis KJ4NDP has successfully connected his DMR radio to asterisk by utilizing the dstar channel driver in asterisk created by Scott Lawson ki4lkf. > > > This email is free from viruses and malware because avast! Antivirus protection is active. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. > > -- > keith at goobie.org > Keith Goobie > Richmond Hill, ON, CANADA > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button" > You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: