From fred at moses.bz Sun Jan 1 09:04:45 2012 From: fred at moses.bz (Fredric Moses) Date: Sun, 1 Jan 2012 04:04:45 -0500 Subject: [App_rpt-users] cor active PL logic Message-ID: <1F5F4574-7826-4F1C-B67E-36113883EDB8@moses.bz> I am working on getting a logic output to run my PL encoder for COR active PL on the main repeater port. using a variable i was able to get it to work fine with local RX audio. When a signal is present I have a gpio pin going low.. when not present going back high.. but can not find a variable to watch for IP links coming in. Is there one? Is there something I can watch so that I can make the logic pin swing..? Some google foo found these commands * 56 - Rx CTCSS Enable * 57 - Rx CTCSS Disable * 58 - Tx CTCSS On Input only Enable * 59 - Tx CTCSS On Input only Disable http://allstarnode.com/viewtopic.php?f=5&t=8 The only mention I see of TX PL is with use of a USB radio interface. Will *58 follow the tx pl settings set in usbradio if I had a USB radio device vs using one of the LOX ports for the main repeater.. -- Fredric Moses - W8FSM - WQOG498 fred at moses.bz From n9gmr at me.com Sun Jan 1 22:23:50 2012 From: n9gmr at me.com (Matt Roberts) Date: Sun, 01 Jan 2012 17:23:50 -0500 Subject: [App_rpt-users] Autopatch Speed Dial Message-ID: Does App-RPT have a speed dial feature? I would like to assign short codes to numbers I will be dialing a lot, for example my house. This way I can dial these numbers without having to enter a long series of numbers on my radio. Not all my radios have an Autopatch memory feature. Has anyone successfully implemented this? Would defining a macro accomplish this? Matt Roberts n9gmr at me.com Call Sign N9GMR IRLP 4515 EchoLink 640860 Allstar 28142 From telesistant at hotmail.com Sun Jan 1 23:02:50 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Sun, 1 Jan 2012 15:02:50 -0800 Subject: [App_rpt-users] Autopatch Speed Dial In-Reply-To: References: Message-ID: try adding exten=XXXXX (where XXXXX is the number you want force-fed into the autopatch) in the list of parameters to the autopatchup entry in the functions section of rpt.conf JIM > From: n9gmr at me.com > Date: Sun, 1 Jan 2012 17:23:50 -0500 > To: App_rpt-users at ohnosec.org > Subject: [App_rpt-users] Autopatch Speed Dial > > Does App-RPT have a speed dial feature? I would like to assign short codes to numbers I will be dialing a lot, for example my house. This way I can dial these numbers without having to enter a long series of numbers on my radio. Not all my radios have an Autopatch memory feature. Has anyone successfully implemented this? Would defining a macro accomplish this? > > > Matt Roberts > n9gmr at me.com > Call Sign N9GMR > IRLP 4515 > EchoLink 640860 > Allstar 28142 > > _______________________________________________ > 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 monty at ke7jvx.com Mon Jan 2 04:19:11 2012 From: monty at ke7jvx.com (Monty) Date: Sun, 1 Jan 2012 21:19:11 -0700 Subject: [App_rpt-users] cor active PL logic In-Reply-To: <1F5F4574-7826-4F1C-B67E-36113883EDB8@moses.bz> References: <1F5F4574-7826-4F1C-B67E-36113883EDB8@moses.bz> Message-ID: Hi Fredric, That command list was pulled from the source app_rpt.c and the asterisks are to comment those lines out. To excute those commands you will need to create a function. I put them under [functions] in /etc/asterisk/rpt.conf. For example: [functions] 900 = cop,58 ;Tx CTCSS On Input only Enable 901 = cop,59 ;Tx CTCSS On Input only Disable A *900 will execute TX CTCSS Enable, *901 will execute TX CTCSS Disable. Also Allstarnode.com is not maintained by the developers of app_rpt, it is a third party site. The current site for configuration information is http://ohnosec.org/drupal. The variable you are looking for is documented at http://ohnosec.org/drupal/node/176. Monty On Sun, Jan 1, 2012 at 2:04 AM, Fredric Moses wrote: > I am working on getting a logic output to run my PL encoder for COR active > PL on the main repeater port. using a variable i was able to get it to > work fine with local RX audio. When a signal is present I have a gpio pin > going low.. when not present going back high.. but can not find a > variable to watch for IP links coming in. Is there one? Is there something > I can watch so that I can make the logic pin swing..? > > Some google foo found these commands > * 56 - Rx CTCSS Enable > * 57 - Rx CTCSS Disable > * 58 - Tx CTCSS On Input only Enable > * 59 - Tx CTCSS On Input only Disable > http://allstarnode.com/viewtopic.php?f=5&t=8 > > The only mention I see of TX PL is with use of a USB radio interface. > Will *58 follow the tx pl settings set in usbradio if I had a USB radio > device vs using one of the LOX ports for the main repeater.. > > -- > Fredric Moses - W8FSM - WQOG498 > fred at moses.bz > > > > > _______________________________________________ > 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 fred at moses.bz Mon Jan 2 04:22:34 2012 From: fred at moses.bz (Fredric Moses) Date: Sun, 1 Jan 2012 23:22:34 -0500 Subject: [App_rpt-users] cor active PL logic In-Reply-To: References: <1F5F4574-7826-4F1C-B67E-36113883EDB8@moses.bz> Message-ID: <5264B63C-B3AE-427B-B2AC-08AC58D75A21@moses.bz> Thanks for the reply monty.. But when I enable this is it controlling a logic gpio. or is it controlling the PL freq generated into the audio audio out... I am using the beagleboard/lox combo which i was under the impression needed external decode and encode of pl's.. Unlike the usb interface from dmkeng... -- Fredric Moses - W8FSM - WQOG498 fred at moses.bz On Jan 1, 2012, at 11:19 PM, Monty wrote: > Hi Fredric, > That command list was pulled from the source app_rpt.c and the asterisks are to comment those lines out. To excute those commands you will need to create a function. I put them under [functions] in /etc/asterisk/rpt.conf. For example: > > [functions] > 900 = cop,58 ;Tx CTCSS On Input only Enable > 901 = cop,59 ;Tx CTCSS On Input only Disable > > A *900 will execute TX CTCSS Enable, *901 will execute TX CTCSS Disable. > > Also Allstarnode.com is not maintained by the developers of app_rpt, it is a third party site. The current site for configuration information is http://ohnosec.org/drupal. The variable you are looking for is documented at http://ohnosec.org/drupal/node/176. > > > Monty > > > On Sun, Jan 1, 2012 at 2:04 AM, Fredric Moses wrote: > I am working on getting a logic output to run my PL encoder for COR active PL on the main repeater port. using a variable i was able to get it to work fine with local RX audio. When a signal is present I have a gpio pin going low.. when not present going back high.. but can not find a variable to watch for IP links coming in. Is there one? Is there something I can watch so that I can make the logic pin swing..? > > Some google foo found these commands > * 56 - Rx CTCSS Enable > * 57 - Rx CTCSS Disable > * 58 - Tx CTCSS On Input only Enable > * 59 - Tx CTCSS On Input only Disable > http://allstarnode.com/viewtopic.php?f=5&t=8 > > The only mention I see of TX PL is with use of a USB radio interface. Will *58 follow the tx pl settings set in usbradio if I had a USB radio device vs using one of the LOX ports for the main repeater.. > > -- > Fredric Moses - W8FSM - WQOG498 > fred at moses.bz > > > > > _______________________________________________ > 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 monty at ke7jvx.com Mon Jan 2 05:33:31 2012 From: monty at ke7jvx.com (Monty) Date: Sun, 1 Jan 2012 22:33:31 -0700 Subject: [App_rpt-users] cor active PL logic In-Reply-To: <5264B63C-B3AE-427B-B2AC-08AC58D75A21@moses.bz> References: <1F5F4574-7826-4F1C-B67E-36113883EDB8@moses.bz> <5264B63C-B3AE-427B-B2AC-08AC58D75A21@moses.bz> Message-ID: I believe it is for the generated tone from app_rpt. I have not used a Beagleboard as of yet, maybe someone who has could let us know. I would imagine instead of cop 58 and 59 you would use 61 to manipulate, see http://ohnosec.org/drupal/node/177. Try this: [functions] 900 = cop,61,GPIO1=1 ;Tx CTCSS On Input only Enable (High) 901 = cop,61,GPIO1=0 ;Tx CTCSS On Input only Disable (Low) Monty On Sun, Jan 1, 2012 at 9:22 PM, Fredric Moses wrote: > Thanks for the reply monty.. But when I enable this is it controlling a > logic gpio. or is it controlling the PL freq generated into the audio audio > out... I am using the beagleboard/lox combo which i was under the > impression needed external decode and encode of pl's.. Unlike the usb > interface from dmkeng... > > -- > Fredric Moses - W8FSM - WQOG498 > fred at moses.bz > > > > > On Jan 1, 2012, at 11:19 PM, Monty wrote: > > Hi Fredric, > That command list was pulled from the source app_rpt.c and the asterisks > are to comment those lines out. To excute those commands you will need to > create a function. I put them under [functions] in > /etc/asterisk/rpt.conf. For example: > > [functions] > 900 = cop,58 ;Tx CTCSS On Input only Enable > 901 = cop,59 ;Tx CTCSS On Input only Disable > > A *900 will execute TX CTCSS Enable, *901 will execute TX CTCSS Disable. > > Also Allstarnode.com is not maintained by the developers of app_rpt, it > is a third party site. The current site for configuration information is > http://ohnosec.org/drupal. The variable you are looking for is > documented at http://ohnosec.org/drupal/node/176. > > > Monty > > > On Sun, Jan 1, 2012 at 2:04 AM, Fredric Moses wrote: > >> I am working on getting a logic output to run my PL encoder for COR >> active PL on the main repeater port. using a variable i was able to get it >> to work fine with local RX audio. When a signal is present I have a gpio >> pin going low.. when not present going back high.. but can not find a >> variable to watch for IP links coming in. Is there one? Is there something >> I can watch so that I can make the logic pin swing..? >> >> Some google foo found these commands >> * 56 - Rx CTCSS Enable >> * 57 - Rx CTCSS Disable >> * 58 - Tx CTCSS On Input only Enable >> * 59 - Tx CTCSS On Input only Disable >> http://allstarnode.com/viewtopic.php?f=5&t=8 >> >> The only mention I see of TX PL is with use of a USB radio interface. >> Will *58 follow the tx pl settings set in usbradio if I had a USB radio >> device vs using one of the LOX ports for the main repeater.. >> >> -- >> Fredric Moses - W8FSM - WQOG498 >> fred at moses.bz >> >> >> >> >> _______________________________________________ >> 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 fred at moses.bz Mon Jan 2 06:00:56 2012 From: fred at moses.bz (Fredric Moses) Date: Mon, 2 Jan 2012 01:00:56 -0500 Subject: [App_rpt-users] cor active PL logic In-Reply-To: References: <1F5F4574-7826-4F1C-B67E-36113883EDB8@moses.bz> <5264B63C-B3AE-427B-B2AC-08AC58D75A21@moses.bz> Message-ID: <82CA42C2-6F0C-4D5B-AE4A-BB287A9C9954@moses.bz> Yea i added the txpl stuff into my beagle.conf file and got nota outa the soundcard.. Even connected to my audio display board directly got no PL generation... I am going to order some nice USB adapters and just run the repeater off that connected to it.. as it looks like the internal PL generation will do what we be a looking for... Just means I order some now.. was going to anyways to add more ports to the BeagleboardXM here sooner or later.. Have all my current macros re-wrote and tested this was the last part of the puzzle.. Should have done this months ago.. Could have swapped out some of my other repeaters.. being winter some of my other sites are hard to get to without snow shoes.. but once spring comes around or I get bored and wana snow shoe for fun. they will wait... I was trying to make the controller swap out as transparent to the users and other repeaters that link in to me via RF as possible and cor/active PL is a feature that is one used ALOT. myself included on my office radio.. I have it working with cop,61 now.. but only for local ports.. if traffic comes in from a remote node there is no variable to follow so it doesn't change.. Thanks again... -- Fredric Moses - W8FSM - WQOG498 fred at moses.bz On Jan 2, 2012, at 12:33 AM, Monty wrote: > I believe it is for the generated tone from app_rpt. I have not used a Beagleboard as of yet, maybe someone who has could let us know. I would imagine instead of cop 58 and 59 you would use 61 to manipulate, see http://ohnosec.org/drupal/node/177. Try this: > > [functions] > 900 = cop,61,GPIO1=1 ;Tx CTCSS On Input only Enable (High) > 901 = cop,61,GPIO1=0 ;Tx CTCSS On Input only Disable (Low) > > > Monty > > > On Sun, Jan 1, 2012 at 9:22 PM, Fredric Moses wrote: > Thanks for the reply monty.. But when I enable this is it controlling a logic gpio. or is it controlling the PL freq generated into the audio audio out... I am using the beagleboard/lox combo which i was under the impression needed external decode and encode of pl's.. Unlike the usb interface from dmkeng... > > -- > Fredric Moses - W8FSM - WQOG498 > fred at moses.bz > > > > > On Jan 1, 2012, at 11:19 PM, Monty wrote: > >> Hi Fredric, >> That command list was pulled from the source app_rpt.c and the asterisks are to comment those lines out. To excute those commands you will need to create a function. I put them under [functions] in /etc/asterisk/rpt.conf. For example: >> >> [functions] >> 900 = cop,58 ;Tx CTCSS On Input only Enable >> 901 = cop,59 ;Tx CTCSS On Input only Disable >> >> A *900 will execute TX CTCSS Enable, *901 will execute TX CTCSS Disable. >> >> Also Allstarnode.com is not maintained by the developers of app_rpt, it is a third party site. The current site for configuration information is http://ohnosec.org/drupal. The variable you are looking for is documented at http://ohnosec.org/drupal/node/176. >> >> >> Monty >> >> >> On Sun, Jan 1, 2012 at 2:04 AM, Fredric Moses wrote: >> I am working on getting a logic output to run my PL encoder for COR active PL on the main repeater port. using a variable i was able to get it to work fine with local RX audio. When a signal is present I have a gpio pin going low.. when not present going back high.. but can not find a variable to watch for IP links coming in. Is there one? Is there something I can watch so that I can make the logic pin swing..? >> >> Some google foo found these commands >> * 56 - Rx CTCSS Enable >> * 57 - Rx CTCSS Disable >> * 58 - Tx CTCSS On Input only Enable >> * 59 - Tx CTCSS On Input only Disable >> http://allstarnode.com/viewtopic.php?f=5&t=8 >> >> The only mention I see of TX PL is with use of a USB radio interface. Will *58 follow the tx pl settings set in usbradio if I had a USB radio device vs using one of the LOX ports for the main repeater.. >> >> -- >> Fredric Moses - W8FSM - WQOG498 >> fred at moses.bz >> >> >> >> >> _______________________________________________ >> 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 ea8ee1 at gmail.com Mon Jan 2 14:12:20 2012 From: ea8ee1 at gmail.com (jose) Date: Mon, 02 Jan 2012 14:12:20 +0000 Subject: [App_rpt-users] Help with IaxRPT 1.1.46 windows In-Reply-To: <4EE84ECF92F544E391F8DDB8EEF81D1B@lintv.com> References: <4EE84ECF92F544E391F8DDB8EEF81D1B@lintv.com> Message-ID: <4F01BB44.4020607@gmail.com> someone who isusing version1.1.46andiaxrptcan help me install myasterisknodein windows -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Mon Jan 2 21:35:29 2012 From: tim.sawyer at me.com (Tim Sawyer) Date: Mon, 02 Jan 2012 13:35:29 -0800 Subject: [App_rpt-users] Help with IaxRPT 1.1.46 windows In-Reply-To: <4F01BB44.4020607@gmail.com> References: <4EE84ECF92F544E391F8DDB8EEF81D1B@lintv.com> <4F01BB44.4020607@gmail.com> Message-ID: See if this helps... http://www.xelatec.com/xipar/iaxrpt -- Tim :wq On Jan 2, 2012, at 6:12 AM, jose wrote: > someone who is using version 1.1.46 and iaxrpt can help me install my asterisk node in windows > > _______________________________________________ > 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 njgarbenis at gmail.com Mon Jan 2 21:38:12 2012 From: njgarbenis at gmail.com (Neal Garbenis) Date: Mon, 2 Jan 2012 13:38:12 -0800 Subject: [App_rpt-users] cant connect two nodes together on the same server Message-ID: <06a401ccc996$d62e7cf0$828b76d0$@com> I have two nodes on a beagleboard pickle installation. Both nodes are set up and working I am able to connect to other nodes on both of them. I just cant connect them locally. Any help would be great. Thanks Neal NG8Y Rpt.conf has this [nodes] 27726 = radio at 127.0.0.1/27726,NONE 27974 = radio at 127.0.0.1/27974,NONE When I try to make the connection via cli this is what I get mobile*CLI> rpt fun 27726 *327974 -- Hungup 'Zap/pseudo-1046867155' [Jan 2 21:32:01] NOTICE[447]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response -- Hungup 'IAX2/193.168.0.100:4569-2201' -- Hungup 'Zap/pseudo-670229016' -- Playing 'rpt/node' (language 'en') -- Playing 'digits/2' (language 'en') -- Playing 'digits/7' (language 'en') -- Playing 'digits/9' (language 'en') -- Playing 'digits/7' (language 'en') -- Playing 'digits/4' (language 'en') -- Playing 'rpt/connection_failed' (language 'en') -- Hungup 'Zap/pseudo-34836126' -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb2ear at kb2ear.net Mon Jan 2 21:50:54 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Mon, 2 Jan 2012 16:50:54 -0500 Subject: [App_rpt-users] cant connect two nodes together on the same server In-Reply-To: <06a401ccc996$d62e7cf0$828b76d0$@com> References: <06a401ccc996$d62e7cf0$828b76d0$@com> Message-ID: <00f601ccc998$9a996d60$cfcc4820$@kb2ear.net> Make sure you have a line like this in you extensions.conf under the [radio-secure] stanza exten => 27726,1,rpt,27726 exten => 27974,1,rpt,27974 From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Neal Garbenis Sent: Monday, January 02, 2012 4:38 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] cant connect two nodes together on the same server I have two nodes on a beagleboard pickle installation. Both nodes are set up and working I am able to connect to other nodes on both of them. I just cant connect them locally. Any help would be great. Thanks Neal NG8Y Rpt.conf has this [nodes] 27726 = radio at 127.0.0.1/27726,NONE 27974 = radio at 127.0.0.1/27974,NONE When I try to make the connection via cli this is what I get mobile*CLI> rpt fun 27726 *327974 -- Hungup 'Zap/pseudo-1046867155' [Jan 2 21:32:01] NOTICE[447]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response -- Hungup 'IAX2/193.168.0.100:4569-2201' -- Hungup 'Zap/pseudo-670229016' -- Playing 'rpt/node' (language 'en') -- Playing 'digits/2' (language 'en') -- Playing 'digits/7' (language 'en') -- Playing 'digits/9' (language 'en') -- Playing 'digits/7' (language 'en') -- Playing 'digits/4' (language 'en') -- Playing 'rpt/connection_failed' (language 'en') -- Hungup 'Zap/pseudo-34836126' -------------- next part -------------- An HTML attachment was scrubbed... URL: From njgarbenis at gmail.com Mon Jan 2 22:05:22 2012 From: njgarbenis at gmail.com (Neal Garbenis) Date: Mon, 2 Jan 2012 17:05:22 -0500 Subject: [App_rpt-users] cant connect two nodes together on the same server In-Reply-To: <00f601ccc998$9a996d60$cfcc4820$@kb2ear.net> References: <06a401ccc996$d62e7cf0$828b76d0$@com> <00f601ccc998$9a996d60$cfcc4820$@kb2ear.net> Message-ID: <26418FFD-1374-48DA-A41F-1F616FB001DC@gmail.com> I do have that in the radio secure stanza Neal Garbenis Jr. NG8Y On Jan 2, 2012, at 4:50 PM, "Scott Weis" wrote: > Make sure you have a line like this in you extensions.conf under the [radio-secure] stanza > > exten => 27726,1,rpt,27726 > exten => 27974,1,rpt,27974 > > From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Neal Garbenis > Sent: Monday, January 02, 2012 4:38 PM > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] cant connect two nodes together on the same server > > I have two nodes on a beagleboard pickle installation. Both nodes are set up and working I am able to connect to other nodes on both of them. I just cant connect them locally. > > Any help would be great. > > Thanks > Neal > NG8Y > > Rpt.conf has this > > [nodes] > 27726 = radio at 127.0.0.1/27726,NONE > 27974 = radio at 127.0.0.1/27974,NONE > > > When I try to make the connection via cli this is what I get > > mobile*CLI> rpt fun 27726 *327974 > -- Hungup 'Zap/pseudo-1046867155' > [Jan 2 21:32:01] NOTICE[447]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response > -- Hungup 'IAX2/193.168.0.100:4569-2201' > -- Hungup 'Zap/pseudo-670229016' > -- Playing 'rpt/node' (language 'en') > -- Playing 'digits/2' (language 'en') > -- Playing 'digits/7' (language 'en') > -- Playing 'digits/9' (language 'en') > -- Playing 'digits/7' (language 'en') > -- Playing 'digits/4' (language 'en') > -- Playing 'rpt/connection_failed' (language 'en') > -- Hungup 'Zap/pseudo-34836126' -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb2ear at kb2ear.net Mon Jan 2 22:18:06 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Mon, 2 Jan 2012 17:18:06 -0500 Subject: [App_rpt-users] cant connect two nodes together on the same server In-Reply-To: <26418FFD-1374-48DA-A41F-1F616FB001DC@gmail.com> References: <06a401ccc996$d62e7cf0$828b76d0$@com> <00f601ccc998$9a996d60$cfcc4820$@kb2ear.net> <26418FFD-1374-48DA-A41F-1F616FB001DC@gmail.com> Message-ID: <014201ccc99c$66c3a240$344ae6c0$@kb2ear.net> The fact that I see you trying to connect to 193.168.0.1 has me concerned about your config. It should be 127.0.0.1. Find the source if the 193.168.0.1 address and you will most likely solve your problem. From: Neal Garbenis [mailto:njgarbenis at gmail.com] Sent: Monday, January 02, 2012 5:05 PM To: Scott Weis Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] cant connect two nodes together on the same server I do have that in the radio secure stanza Neal Garbenis Jr. NG8Y On Jan 2, 2012, at 4:50 PM, "Scott Weis" wrote: Make sure you have a line like this in you extensions.conf under the [radio-secure] stanza exten => 27726,1,rpt,27726 exten => 27974,1,rpt,27974 From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Neal Garbenis Sent: Monday, January 02, 2012 4:38 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] cant connect two nodes together on the same server I have two nodes on a beagleboard pickle installation. Both nodes are set up and working I am able to connect to other nodes on both of them. I just cant connect them locally. Any help would be great. Thanks Neal NG8Y Rpt.conf has this [nodes] 27726 = radio at 127.0.0.1/27726,NONE 27974 = radio at 127.0.0.1/27974,NONE When I try to make the connection via cli this is what I get mobile*CLI> rpt fun 27726 *327974 -- Hungup 'Zap/pseudo-1046867155' [Jan 2 21:32:01] NOTICE[447]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response -- Hungup 'IAX2/193.168.0.100:4569-2201' -- Hungup 'Zap/pseudo-670229016' -- Playing 'rpt/node' (language 'en') -- Playing 'digits/2' (language 'en') -- Playing 'digits/7' (language 'en') -- Playing 'digits/9' (language 'en') -- Playing 'digits/7' (language 'en') -- Playing 'digits/4' (language 'en') -- Playing 'rpt/connection_failed' (language 'en') -- Hungup 'Zap/pseudo-34836126' -------------- next part -------------- An HTML attachment was scrubbed... URL: From njgarbenis at gmail.com Mon Jan 2 22:50:00 2012 From: njgarbenis at gmail.com (Neal Garbenis) Date: Mon, 2 Jan 2012 17:50:00 -0500 Subject: [App_rpt-users] cant connect two nodes together on the same server In-Reply-To: <014201ccc99c$66c3a240$344ae6c0$@kb2ear.net> References: <06a401ccc996$d62e7cf0$828b76d0$@com> <00f601ccc998$9a996d60$cfcc4820$@kb2ear.net> <26418FFD-1374-48DA-A41F-1F616FB001DC@gmail.com> <014201ccc99c$66c3a240$344ae6c0$@kb2ear.net> Message-ID: <34F9D344-C2AE-4879-84F9-03EBA5E6DE50@gmail.com> Ok I got that back to 127.0.0.1. And still a no go The ip you was the ip of the computer don't know how that happened Neal Garbenis Jr. NG8Y On Jan 2, 2012, at 5:18 PM, "Scott Weis" wrote: > The fact that I see you trying to connect to 193.168.0.1 has me concerned about your config. It should be 127.0.0.1. Find the source if the 193.168.0.1 address and you will most likely solve your problem. > > > From: Neal Garbenis [mailto:njgarbenis at gmail.com] > Sent: Monday, January 02, 2012 5:05 PM > To: Scott Weis > Cc: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] cant connect two nodes together on the same server > > I do have that in the radio secure stanza > > Neal Garbenis Jr. > NG8Y > > > > > On Jan 2, 2012, at 4:50 PM, "Scott Weis" wrote: > > Make sure you have a line like this in you extensions.conf under the [radio-secure] stanza > > exten => 27726,1,rpt,27726 > exten => 27974,1,rpt,27974 > > From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Neal Garbenis > Sent: Monday, January 02, 2012 4:38 PM > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] cant connect two nodes together on the same server > > I have two nodes on a beagleboard pickle installation. Both nodes are set up and working I am able to connect to other nodes on both of them. I just cant connect them locally. > > Any help would be great. > > Thanks > Neal > NG8Y > > Rpt.conf has this > > [nodes] > 27726 = radio at 127.0.0.1/27726,NONE > 27974 = radio at 127.0.0.1/27974,NONE > > > When I try to make the connection via cli this is what I get > > mobile*CLI> rpt fun 27726 *327974 > -- Hungup 'Zap/pseudo-1046867155' > [Jan 2 21:32:01] NOTICE[447]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response > -- Hungup 'IAX2/193.168.0.100:4569-2201' > -- Hungup 'Zap/pseudo-670229016' > -- Playing 'rpt/node' (language 'en') > -- Playing 'digits/2' (language 'en') > -- Playing 'digits/7' (language 'en') > -- Playing 'digits/9' (language 'en') > -- Playing 'digits/7' (language 'en') > -- Playing 'digits/4' (language 'en') > -- Playing 'rpt/connection_failed' (language 'en') > -- Hungup 'Zap/pseudo-34836126' -------------- next part -------------- An HTML attachment was scrubbed... URL: From ke2n at cs.com Tue Jan 3 03:12:14 2012 From: ke2n at cs.com (Ken) Date: Mon, 2 Jan 2012 22:12:14 -0500 Subject: [App_rpt-users] cant connect two nodes together on the same server In-Reply-To: <06a401ccc996$d62e7cf0$828b76d0$@com> References: <06a401ccc996$d62e7cf0$828b76d0$@com> Message-ID: <002601ccc9c5$7e342a70$7a9c7f50$@com> You have both of your nodes on the same port at the same IP That is why you are having a problem 27726=radio at 65.189.32.50:4575/27726,65.189.32.50 27974=radio at 65.189.32.50:4575/27974,65.189.32.50 Change the port of one of them You do this in the iax.conf file (or I suppose the portal has a way to do it too) When you refer to the nodes internally (if you do that) be sure to include the port number for each Be sure to put the new port in your router passthrough GL Ken From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Neal Garbenis Sent: Monday, January 02, 2012 4:38 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] cant connect two nodes together on the same server I have two nodes on a beagleboard pickle installation. Both nodes are set up and working I am able to connect to other nodes on both of them. I just cant connect them locally. Any help would be great. Thanks Neal NG8Y Rpt.conf has this [nodes] 27726 = radio at 127.0.0.1/27726,NONE 27974 = radio at 127.0.0.1/27974,NONE When I try to make the connection via cli this is what I get mobile*CLI> rpt fun 27726 *327974 -- Hungup 'Zap/pseudo-1046867155' [Jan 2 21:32:01] NOTICE[447]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response -- Hungup 'IAX2/193.168.0.100:4569-2201' -- Hungup 'Zap/pseudo-670229016' -- Playing 'rpt/node' (language 'en') -- Playing 'digits/2' (language 'en') -- Playing 'digits/7' (language 'en') -- Playing 'digits/9' (language 'en') -- Playing 'digits/7' (language 'en') -- Playing 'digits/4' (language 'en') -- Playing 'rpt/connection_failed' (language 'en') -- Hungup 'Zap/pseudo-34836126' -------------- next part -------------- An HTML attachment was scrubbed... URL: From njgarbenis at gmail.com Tue Jan 3 03:42:15 2012 From: njgarbenis at gmail.com (Neal Garbenis) Date: Mon, 2 Jan 2012 22:42:15 -0500 Subject: [App_rpt-users] cant connect two nodes together on the same server In-Reply-To: <002601ccc9c5$7e342a70$7a9c7f50$@com> References: <06a401ccc996$d62e7cf0$828b76d0$@com> <002601ccc9c5$7e342a70$7a9c7f50$@com> Message-ID: <98A4785D-AA19-44A3-9BDA-2E4B5B1AA8F6@gmail.com> I thought since both nodes were on the same computer/ server they used the same port. I don't see how the nodes can have different ports But I finally got them to connect by specifying the port In the node stanza [nodes] 27726 =radio at 127.0.0.1:4575/27726,NONE 27974 =radio at 127.0.0.1:4575/27974,NONE Thanks for the help and ideas Ken Neal Garbenis Jr. NG8Y On Jan 2, 2012, at 10:12 PM, "Ken" wrote: > [nodes] > > 27726 = radio at 127.0.0.1/27726,NONE > > 27974 = radio at 127.0.0.1/27974,NONE > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb2ear at kb2ear.net Tue Jan 3 04:06:14 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Mon, 2 Jan 2012 23:06:14 -0500 Subject: [App_rpt-users] cant connect two nodes together on the same server In-Reply-To: <98A4785D-AA19-44A3-9BDA-2E4B5B1AA8F6@gmail.com> References: <06a401ccc996$d62e7cf0$828b76d0$@com> <002601ccc9c5$7e342a70$7a9c7f50$@com> <98A4785D-AA19-44A3-9BDA-2E4B5B1AA8F6@gmail.com> Message-ID: <002d01ccc9cd$09392380$1bab6a80$@kb2ear.net> Yes all nodes on the same computer use the same port From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Neal Garbenis Sent: Monday, January 02, 2012 10:42 PM To: Ken Cc: Subject: Re: [App_rpt-users] cant connect two nodes together on the same server I thought since both nodes were on the same computer/ server they used the same port. I don't see how the nodes can have different ports But I finally got them to connect by specifying the port In the node stanza [nodes] 27726 =radio at 127.0.0.1:4575/27726,NONE 27974 =radio at 127.0.0.1:4575/27974,NONE Thanks for the help and ideas Ken Neal Garbenis Jr. NG8Y On Jan 2, 2012, at 10:12 PM, "Ken" wrote: [nodes] 27726 = radio at 127.0.0.1/27726,NONE 27974 = radio at 127.0.0.1/27974,NONE -------------- next part -------------- An HTML attachment was scrubbed... URL: From ke2n at cs.com Tue Jan 3 12:31:16 2012 From: ke2n at cs.com (Ken) Date: Tue, 3 Jan 2012 07:31:16 -0500 Subject: [App_rpt-users] cant connect two nodes together on the same server In-Reply-To: <98A4785D-AA19-44A3-9BDA-2E4B5B1AA8F6@gmail.com> References: <06a401ccc996$d62e7cf0$828b76d0$@com> <002601ccc9c5$7e342a70$7a9c7f50$@com> <98A4785D-AA19-44A3-9BDA-2E4B5B1AA8F6@gmail.com> Message-ID: <000901ccca13$96c9d1e0$c45d75a0$@com> You are right Your original posting did not say - and I jumped to the conclusion that you had two boxes. If you ever add a second box keep my old note ;-) 73 ken From: Neal Garbenis [mailto:njgarbenis at gmail.com] Sent: Monday, January 02, 2012 10:42 PM To: Ken Cc: Subject: Re: [App_rpt-users] cant connect two nodes together on the same server I thought since both nodes were on the same computer/ server they used the same port. I don't see how the nodes can have different ports But I finally got them to connect by specifying the port In the node stanza [nodes] 27726 =radio at 127.0.0.1:4575/27726,NONE 27974 =radio at 127.0.0.1:4575/27974,NONE Thanks for the help and ideas Ken Neal Garbenis Jr. NG8Y On Jan 2, 2012, at 10:12 PM, "Ken" wrote: [nodes] 27726 = radio at 127.0.0.1/27726,NONE 27974 = radio at 127.0.0.1/27974,NONE -------------- next part -------------- An HTML attachment was scrubbed... URL: From ron at morell.us Tue Jan 3 18:07:03 2012 From: ron at morell.us (Ron Morell) Date: Tue, 03 Jan 2012 11:07:03 -0700 Subject: [App_rpt-users] SheevaPlug In-Reply-To: References: Message-ID: <4F0343C7.9080105@morell.us> Stephen, Appreciated your input on my IAX2 soft phone iaxAgent. It is now working fine. Good cell phone IAX2 soft phone application. I've spent considerable time working with the Sheevaplugs. We installed Winlink RMS Gateways, APRS Gateways, and an FPAC node server on these things. I did find some problems cross compiling to the ARMv5tel processor but was able to debug the sources and compiler options to finally produce a reliable install for FPAC, http://www.qsl.net/fpac/ . I used Debian Squeeze for the OS, cross-compiled this processor: root at KA7U-plug:/var/log# cat /proc/version Linux version 3.0.4 (root at linux-jsyn) (gcc version 4.5.2 (Sourcery G++ Lite 2011.03-41) ) #2 PREEMPT Sun Sep 18 23:09:01 MDT 2011 And boot the whole mess from an 8Gbyte SD Card. Works every time and the uptime is great, and a simple script backs up the OS and another restores it. So finding your old post below, I tried following the links but they don't all work. Do you still have relevant install scripts for Asterisk and the other parts? Did you or anyone you were working with manage to compile asterisk+app_rpt and get it all going on the Sheevaplug? The current Beagle Board with LOX provides a superior solution to the Sheevaplug, I'm sure, but I still have a couple of spare Sheevaplugs laying under the bench and it would be nice to put them into service. They run on 5vdc and it is easy to power them at a remote site. Besides, it might be possible to run an FPAC node from the same server box, although I've read that USB assignments for the sound card FOB might not be reliable through a multi port USB adapter. 73, Ron Morell KA7U > Take a look at the PlugPBX project: http://www.plugpbx.org/ > > While it's focused on Asterisk/FreePBX, he did get it running on there > succesfully. He found my install script that I use for Debian, added a few > things, and was able to compile/install it just fine: > http://www.plugpbx.org/?page_id=137 > > My install script for Asterisk 1.6.2 and FreePBX are located here: > http://www.k1lnx.net/wiki/index.php/Asterisk_1.6_install_on_Debian_Lenny > > And for app_rpt: > http://www.k1lnx.net/wiki/index.php/App_RPT/TIARA > > These are all written for Debian Lenny (my distro of choice) but I bet with > a little tweaking Limey Linux would run great on this platform. Limey Linux > would actually probably be perfect for something like this. > > If I didn't already have a satisfiable machine, I would definitely give it a > try. I'm currently running on an Intel Atom processor and it works great. > The box also serves double duty as a firewall. > > Stephen > K1LNX From ron at morell.us Tue Jan 3 20:16:58 2012 From: ron at morell.us (Ron Morell) Date: Tue, 03 Jan 2012 13:16:58 -0700 Subject: [App_rpt-users] Use 2 nodes to link with repeaters Message-ID: <4F03623A.5010702@morell.us> Using a receive on time delay, (/etc/asterisk/usbradio.conf - rxondelay=20), to prevent a keying loop between the two nodes goes something like this: 1. User w7abc keys up repeater 'A' and node 28174 receives the signal and sends it out the VoIP gateway to the Internet to node 28210 which then transmits what it receives from VoIP and repeater 'B' keys up and is now linked. 2. W7ABC finishes the conversation, repeater 'A' stops transmitting, node 28174 stops receiving and the audio to the VoIP gateway is closed. Node 28210 does not receive audio from VoIP and so it stops transmitting, and repeater 'B' stops transmitting and the link is down. 3. Repeater 'B' does not stop transmitting instantly when node 28210 stops transmitting, it has a hang time of approximately 1.6 seconds. Node 28210 will receive this signal as soon as it stops transmitting and send that audio out the VoIP Gateway to node 28174 which will then transmit and key up repeater 'A'. 4. This causes a "keying loop" between nodes 28210 and node 28174. 5. There is a variable called "rxondelay" in /etc/asterisk/usbradio.conf that controls when the node receiver can send what it receives out the VoIP gateway. I would expect that if 'rxondelay=90' which is approximately 1.8 seconds, that this delay would account for the hang time of repeater 'B', but it is insufficient. Through trial and error I have found that 'rxondelay=200', or 4 seconds, is required to prevent a single keying loop. 6. A 'rxondelay=90' is sufficient to prevent an ongoing keying loop that does not end, but it is not sufficient to prevent a keyup of node 28174 "one time". 7. Node 28174 uses a 'rxondelay=60' to account for the repeater 'A' hang time. So this is a mystery that I have not solved. A 4 second receive on delay for the link over VoIP is a long time for the repeater users to work with. Many replies and short conversations take less time. This method of linking is not a real good one, but it is a portable solution for quick linking repeaters. Is there something I am missing in the configurations that would shorten the link timing? Ron KA7U From vk3jed at vkradio.com Tue Jan 3 20:42:09 2012 From: vk3jed at vkradio.com (Tony Langdon, VK3JED) Date: Wed, 04 Jan 2012 07:42:09 +1100 Subject: [App_rpt-users] Use 2 nodes to link with repeaters In-Reply-To: <4F03623A.5010702@morell.us> References: <4F03623A.5010702@morell.us> Message-ID: <4f03682a.4a9bec0a.25b6.ffff8625@mx.google.com> At 07:16 AM 1/4/2012, Ron Morell wrote: >So this is a mystery that I have not solved. A 4 second receive on >delay for the link over VoIP is a long time for the repeater users to >work with. Many replies and short conversations take less time. This >method of linking is not a real good one, but it is a portable solution >for quick linking repeaters. Is there something I am missing in the >configurations that would shorten the link timing? This is a problem best dealt with by hardware configuration. The ideal fix is to bring the Internet up to the repeater sites and use AllStar as the controller. That way, there is no hang time to propagate back into the network. app_rpt is particularly well suited to this role, as it has all the necessary functionality built in. You could alternatively connect the AllStar node to a link port on the existing controller, which has the advantage that if the AllStar box dies, you still have local repeater functionality. The other advantage of having the node at the repeater is better audio quality. :) You can successfully setup a link on the user frequency, but you need to take steps to ensure that the hang time is not seen by the node, such as using CTCSS gated by the receiver's COS. 73 de VK3JED / VK3IRL http://vkradio.com From ron at morell.us Tue Jan 3 22:07:17 2012 From: ron at morell.us (Ron Morell) Date: Tue, 03 Jan 2012 15:07:17 -0700 Subject: [App_rpt-users] Use 2 nodes to link with repeaters In-Reply-To: <4f03682a.4a9bec0a.25b6.ffff8625@mx.google.com> References: <4F03623A.5010702@morell.us> <4f03682a.4a9bec0a.25b6.ffff8625@mx.google.com> Message-ID: <4F037C15.2040002@morell.us> Tony, Thank you for the reply! Eventually, I hope the club will install the Asterisk+app_rpt solution at the repeater sites and to that end, I have started to design an 802.11b network solution over microwave between the sites. http://ka7u.us/*/Path_Between_Repeaters.html http://ka7u.us/*/TVRAREPEATERS.kmz Your input on microwave network solutions is solicited, as I see from your web site, you have put time into this study. The CTCSS solution is probably the best idea for the interim, or just repair the existing 440 link radios that are already up there. Hi Hi. It is just that when the two simplex nodes are connected to each other and the repeaters frequencies are tuned to the node radios, it is an instant link between any two repeaters. If I could find a combination of repeater hang time, and node receive on delay that was acceptably short, this would be a great, quick and dirty solution. Interestingly, the audio quality is reasonable, although it is better in one link direction than the other. The node with the discriminator audio is a bit shrill and the node using speaker audio is a bit on the bass or muffled side, but both are good and readable. The deviation on the nodes was set as follows: 1. radio-tune-menu opton 3). transmit DTMF 1 with a handheld and find the value that yeilds no more than 3KHz deviation. 2. from the asterisk cli: radio tune txvoice and watch the recieve deviation on the other node, using option 3) as shown above. Set the radio tune txvoice value to achieve the 3KHz deviation on the other node. 3. Repeat process for the other node. 4. Right or wrong, they are both set about the same for transmit and receive deviation and no test equipment required. So, how would I go about setting up CTCSS gated by the receiver's COS? I think I know, but have never done it. Ron Morell KA7U On 01/03/2012 01:42 PM, Tony Langdon, VK3JED wrote: > At 07:16 AM 1/4/2012, Ron Morell wrote: > >> So this is a mystery that I have not solved. A 4 second receive on >> delay for the link over VoIP is a long time for the repeater users to >> work with. Many replies and short conversations take less time. This >> method of linking is not a real good one, but it is a portable solution >> for quick linking repeaters. Is there something I am missing in the >> configurations that would shorten the link timing? > > This is a problem best dealt with by hardware configuration. The > ideal fix is to bring the Internet up to the repeater sites and use > AllStar as the controller. That way, there is no hang time to > propagate back into the network. app_rpt is particularly well suited > to this role, as it has all the necessary functionality built in. You > could alternatively connect the AllStar node to a link port on the > existing controller, which has the advantage that if the AllStar box > dies, you still have local repeater functionality. The other > advantage of having the node at the repeater is better audio quality. :) > > You can successfully setup a link on the user frequency, but you need > to take steps to ensure that the hang time is not seen by the node, > such as using CTCSS gated by the receiver's COS. > > > 73 de VK3JED / VK3IRL > http://vkradio.com > > > From wb3awj at comcast.net Wed Jan 4 00:21:24 2012 From: wb3awj at comcast.net (Robert Poff) Date: Tue, 03 Jan 2012 19:21:24 -0500 Subject: [App_rpt-users] SyntorX w/ XCAT In-Reply-To: <4F037C15.2040002@morell.us> References: <4F03623A.5010702@morell.us> <4f03682a.4a9bec0a.25b6.ffff8625@mx.google.com> <4F037C15.2040002@morell.us> Message-ID: <1325636484.3601.8.camel@localhost> I'm putting together a Syntor X w/XCAT as a frequency agile remote base. I see the XCAT PC software recognizing the COS state as sent from the XCAT CI-V. Does app_rpt use that CI-V statement? Or, do I need to bring COS out to the URI? Any other hints, or suggestions on this project are appreciated. -- Robert A. Poff Loganville, PA WB3AWJ - Allstar 27784 Powered by Linux -------------- next part -------------- An HTML attachment was scrubbed... URL: From w7ry at centurytel.net Wed Jan 4 05:16:23 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Tue, 3 Jan 2012 21:16:23 -0800 Subject: [App_rpt-users] Process Hanging on Reboot Message-ID: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> I have 2 processes that hang for 2+ minuets when I reboot. Starting sendmail: Starting sm-client: They eventually say OK then it continues to boot and all is ok. Any ideas? Thanks 73 Jim W7RY -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Wed Jan 4 05:19:03 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Tue, 3 Jan 2012 21:19:03 -0800 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> Message-ID: you DNS no-workee. Please check the entries in /etc/resolv.conf and make sure they are pointing to real, working DNS servers. JIM WB6NIL From: w7ry at centurytel.net To: app_rpt-users at ohnosec.org Date: Tue, 3 Jan 2012 21:16:23 -0800 Subject: [App_rpt-users] Process Hanging on Reboot I have 2 processes that hang for 2+ minuets when I reboot. Starting sendmail: Starting sm-client: They eventually say OK then it continues to boot and all is ok. Any ideas? Thanks 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 w7ry at centurytel.net Wed Jan 4 05:54:20 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Tue, 3 Jan 2012 21:54:20 -0800 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> Message-ID: <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> Thanks! Just put in: ; generated by /sbin/dhclient-script nameserver 8.8.8.8 nameserver 8.8.4.4 That should fix it!! 73 Jim W7Ry From: Jim Duuuude Sent: Tuesday, January 03, 2012 9:19 PM To: w7ry at centurytel.net ; app_rpt mailing list Subject: RE: [App_rpt-users] Process Hanging on Reboot you DNS no-workee. Please check the entries in /etc/resolv.conf and make sure they are pointing to real, working DNS servers. JIM WB6NIL -------------------------------------------------------------------------------- From: w7ry at centurytel.net To: app_rpt-users at ohnosec.org Date: Tue, 3 Jan 2012 21:16:23 -0800 Subject: [App_rpt-users] Process Hanging on Reboot I have 2 processes that hang for 2+ minuets when I reboot. Starting sendmail: Starting sm-client: They eventually say OK then it continues to boot and all is ok. Any ideas? Thanks 73 Jim W7RY _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Wed Jan 4 22:21:47 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Wed, 4 Jan 2012 14:21:47 -0800 Subject: [App_rpt-users] recent upgragdes to chan_voter Message-ID: The chan_voter channel driver that goes along with app_rpt has a couple of new features (current in SVN). The 'voter test' CLI command now takes an instance id and no longer supports modes < 0 (force vote for testing purposes). It still supports the 'torture' tests that have always existed. A config file parameter (on a client-by-client basis, in the client string specification) called 'prio=XXX' has been added. This allow specification of a default 'prio level' for the specified client. There is a new 'voter prio' CLI command. This specifies (or allows query of) a value to override the config-file specified 'priority level' for the specified voter client. An effective priority level is calculated for each client, based upon the level specified in the config file, and the override level if specified from a CLI command. For a 'voting' (GPS-timing based) client, this allows 'groups' of clients with higher priority levels to be 'favored' over 'groups' of clients with lower priority levels when making the 'voting' decision. For a 'non-voting' (non-GPS-timing based) client, it provides a means whereby if a signal is received from a 'non-voting' client with a priority > 1, the one with the highest priority 'takes over' the channel's audio (does not include the voted audio or other 'non-voting' clients not at this priority level). This could potentially be useful for implementing some sort of control station hierarchy or something of that nature. For either type of client, setting its priority to -1 make it ineligible for consideration (locks its out entirely). JIM WB6NIL -------------- next part -------------- An HTML attachment was scrubbed... URL: From w7ry at centurytel.net Thu Jan 5 18:39:27 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Thu, 5 Jan 2012 10:39:27 -0800 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> Message-ID: <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> That did not fix the problem. Still hangs Ideas? Thanks 73 Jim W7RY From: Jim W7RY Sent: Tuesday, January 03, 2012 9:54 PM To: Jim Duuuude ; app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot Thanks! Just put in: ; generated by /sbin/dhclient-script nameserver 8.8.8.8 nameserver 8.8.4.4 That should fix it!! 73 Jim W7Ry From: Jim Duuuude Sent: Tuesday, January 03, 2012 9:19 PM To: w7ry at centurytel.net ; app_rpt mailing list Subject: RE: [App_rpt-users] Process Hanging on Reboot you DNS no-workee. Please check the entries in /etc/resolv.conf and make sure they are pointing to real, working DNS servers. JIM WB6NIL -------------------------------------------------------------------------------- From: w7ry at centurytel.net To: app_rpt-users at ohnosec.org Date: Tue, 3 Jan 2012 21:16:23 -0800 Subject: [App_rpt-users] Process Hanging on Reboot I have 2 processes that hang for 2+ minuets when I reboot. Starting sendmail: Starting sm-client: They eventually say OK then it continues to boot and all is ok. Any ideas? Thanks 73 Jim W7RY _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 -------------------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------------------------------------------------------------------------- No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb2ear at kb2ear.net Thu Jan 5 18:49:07 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Thu, 5 Jan 2012 13:49:07 -0500 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> Message-ID: <015601cccbda$b4750a20$1d5f1e60$@kb2ear.net> Check your resolv.conf again. It looks like your using DHCP. Also always change your network/DNS servers via system-config-network app or the portal. I was finding my resolv.conf file was being blanked on reboot until I used the system-config-network app. Scott From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Jim W7RY Sent: Thursday, January 05, 2012 1:39 PM To: Jim W7RY; Jim Duuuude; app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot That did not fix the problem. Still hangs Ideas? Thanks 73 Jim W7RY From: Jim W7RY Sent: Tuesday, January 03, 2012 9:54 PM To: Jim Duuuude ; app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot Thanks! Just put in: ; generated by /sbin/dhclient-script nameserver 8.8.8.8 nameserver 8.8.4.4 That should fix it!! 73 Jim W7Ry From: Jim Duuuude Sent: Tuesday, January 03, 2012 9:19 PM To: w7ry at centurytel.net ; app_rpt mailing list Subject: RE: [App_rpt-users] Process Hanging on Reboot you DNS no-workee. Please check the entries in /etc/resolv.conf and make sure they are pointing to real, working DNS servers. JIM WB6NIL _____ From: w7ry at centurytel.net To: app_rpt-users at ohnosec.org Date: Tue, 3 Jan 2012 21:16:23 -0800 Subject: [App_rpt-users] Process Hanging on Reboot I have 2 processes that hang for 2+ minuets when I reboot. Starting sendmail: Starting sm-client: They eventually say OK then it continues to boot and all is ok. Any ideas? Thanks 73 Jim W7RY _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 _____ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users _____ No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 -------------- next part -------------- An HTML attachment was scrubbed... URL: From petem001 at hotmail.com Thu Jan 5 19:00:34 2012 From: petem001 at hotmail.com (pete M) Date: Thu, 5 Jan 2012 14:00:34 -0500 Subject: [App_rpt-users] TK-840 service manual needed In-Reply-To: <015601cccbda$b4750a20$1d5f1e60$@kb2ear.net> References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop><9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> <015601cccbda$b4750a20$1d5f1e60$@kb2ear.net> Message-ID: First of all, since its my first post in 2012, Happy New Year 2012 have some great DX and no problem with your repeaters! Ok like the tittle say, I need the service manual of a Kenwood TK-840 mobile. I am in the process of building a homebrew dstar repeater, and I need some information on what signal is available on the KCT-19 accessory cable. is it flat audio? is there a way to have flat audio? This radio will be the receiver part of the repeater, the transmitter will be a tk-860HG. I have the programing cable and I?ve been able to program both radio in the ham band, and they are really stable.. Anyone can help? And if someone knows a few info, like there is no flat audio output possible from those radio, please tell me so I wont loose time on those radio. thanks Pierre VE2PF -------------- next part -------------- An HTML attachment was scrubbed... URL: From wl7ni.ak at gmail.com Thu Jan 5 19:26:46 2012 From: wl7ni.ak at gmail.com (Mark Huelskoetter) Date: Thu, 5 Jan 2012 10:26:46 -0900 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> Message-ID: Make sure that you machine name is in /etc/hosts something like: 127.0.0.1 youmachine localhost.localdomain localhost Mark - WL7NI On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: > ** > That did not fix the problem. Still hangs > > Ideas? > > Thanks > 73 > Jim W7RY > > > *From:* Jim W7RY > *Sent:* Tuesday, January 03, 2012 9:54 PM > *To:* Jim Duuuude ; app_rpt mailing list > *Subject:* Re: [App_rpt-users] Process Hanging on Reboot > > Thanks! > > Just put in: > > ; generated by /sbin/dhclient-script > > nameserver 8.8.8.8 > > nameserver 8.8.4.4 > > > > That should fix it!! > > > > 73 > > Jim W7Ry > > > > *From:* Jim Duuuude > *Sent:* Tuesday, January 03, 2012 9:19 PM > *To:* w7ry at centurytel.net ; app_rpt mailing list > *Subject:* RE: [App_rpt-users] Process Hanging on Reboot > > you DNS no-workee. > > Please check the entries in /etc/resolv.conf > and make sure they are pointing to real, > working DNS servers. > > JIM WB6NIL > > ------------------------------ > From: w7ry at centurytel.net > To: app_rpt-users at ohnosec.org > Date: Tue, 3 Jan 2012 21:16:23 -0800 > Subject: [App_rpt-users] Process Hanging on Reboot > > I have 2 processes that hang for 2+ minuets when I reboot. > > Starting sendmail: > Starting sm-client: > > They eventually say OK then it continues to boot and all is ok. > > Any ideas? > > Thanks > 73 > Jim W7RY > > > _______________________________________________ App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 > > ------------------------------ > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > ------------------------------ > > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 > > > _______________________________________________ > 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 wl7ni.ak at gmail.com Thu Jan 5 21:24:19 2012 From: wl7ni.ak at gmail.com (Mark Huelskoetter) Date: Thu, 5 Jan 2012 12:24:19 -0900 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> Message-ID: Man my r key must be missing... That should read youR machine name. On Thursday, January 5, 2012, Mark Huelskoetter wrote: > Make sure that you machine name is in /etc/hosts > > something like: > > 127.0.0.1 youmachine localhost.localdomain localhost > > Mark - WL7NI > > On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: > > That did not fix the problem. Still hangs > > Ideas? > > Thanks > 73 > Jim W7RY > > From: Jim W7RY > Sent: Tuesday, January 03, 2012 9:54 PM > To: Jim Duuuude ; app_rpt mailing list > Subject: Re: [App_rpt-users] Process Hanging on Reboot > Thanks! > > Just put in: > > ; generated by /sbin/dhclient-script > > nameserver 8.8.8.8 > > nameserver 8.8.4.4 > > > > That should fix it!! > > > > 73 > > Jim W7Ry > > > > From: Jim Duuuude > Sent: Tuesday, January 03, 2012 9:19 PM > To: w7ry at centurytel.net ; app_rpt mailing list > Subject: RE: [App_rpt-users] Process Hanging on Reboot > you DNS no-workee. > > Please check the entries in /etc/resolv.conf > and make sure they are pointing to real, > working DNS servers. > > JIM WB6NIL > > ________________________________ > From: w7ry at centurytel.net > To: app_rpt-users at ohnosec.org > Date: Tue, 3 Jan 2012 21:16:23 -0800 > Subject: [App_rpt-users] Process Hanging on Reboot > > I have 2 processes that hang for 2+ minuets when I reboot. > > Starting sendmail: > Starting sm-client: > > They eventually say OK then it continues to boot and all is ok. > > Any ideas? > > Thanks > 73 > Jim W7RY > > _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 > > ________________________________ > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Thu Jan 5 21:39:07 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Thu, 5 Jan 2012 16:39:07 -0500 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> Message-ID: <952656BF-F633-4E95-87D7-41F86D588BE5@bdboyle.com> that's ok...just thought you were going gangsta on us...:) -- Bryan Sent from my iPhone please forgive misspellings... On Jan 5, 2012, at 16:24, Mark Huelskoetter wrote: > Man my r key must be missing... That should read youR machine name. > > On Thursday, January 5, 2012, Mark Huelskoetter wrote: > > Make sure that you machine name is in /etc/hosts > > > > something like: > > > > 127.0.0.1 youmachine localhost.localdomain localhost > > > > Mark - WL7NI > > > > On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: > > > > That did not fix the problem. Still hangs > > > > Ideas? > > > > Thanks > > 73 > > Jim W7RY > > > > From: Jim W7RY > > Sent: Tuesday, January 03, 2012 9:54 PM > > To: Jim Duuuude ; app_rpt mailing list > > Subject: Re: [App_rpt-users] Process Hanging on Reboot > > Thanks! > > > > Just put in: > > > > ; generated by /sbin/dhclient-script > > > > nameserver 8.8.8.8 > > > > nameserver 8.8.4.4 > > > > > > > > That should fix it!! > > > > > > > > 73 > > > > Jim W7Ry > > > > > > > > From: Jim Duuuude > > Sent: Tuesday, January 03, 2012 9:19 PM > > To: w7ry at centurytel.net ; app_rpt mailing list > > Subject: RE: [App_rpt-users] Process Hanging on Reboot > > you DNS no-workee. > > > > Please check the entries in /etc/resolv.conf > > and make sure they are pointing to real, > > working DNS servers. > > > > JIM WB6NIL > > > > ________________________________ > > From: w7ry at centurytel.net > > To: app_rpt-users at ohnosec.org > > Date: Tue, 3 Jan 2012 21:16:23 -0800 > > Subject: [App_rpt-users] Process Hanging on Reboot > > > > I have 2 processes that hang for 2+ minuets when I reboot. > > > > Starting sendmail: > > Starting sm-client: > > > > They eventually say OK then it continues to boot and all is ok. > > > > Any ideas? > > > > Thanks > > 73 > > Jim W7RY > > > > _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > No virus found in this message. > > Checked by AVG - www.avg.com > > Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 > > > > ________________________________ > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt > _______________________________________________ > 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 w7ry at centurytel.net Fri Jan 6 00:06:05 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Thu, 5 Jan 2012 16:06:05 -0800 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop><4E2471DEF0DA49FFB609BDF4EAA25586@Laptop><9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> Message-ID: <5A186357CB1740B9A371CDC4CEB6734C@Laptop> It is. Jim W7RY From: Mark Huelskoetter Sent: Thursday, January 05, 2012 11:26 AM To: Jim W7RY Cc: Jim Duuuude ; app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot Make sure that you machine name is in /etc/hosts something like: 127.0.0.1 youmachine localhost.localdomain localhost Mark - WL7NI On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: That did not fix the problem. Still hangs Ideas? Thanks 73 Jim W7RY From: Jim W7RY Sent: Tuesday, January 03, 2012 9:54 PM To: Jim Duuuude ; app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot Thanks! Just put in: ; generated by /sbin/dhclient-script nameserver 8.8.8.8 nameserver 8.8.4.4 That should fix it!! 73 Jim W7Ry From: Jim Duuuude Sent: Tuesday, January 03, 2012 9:19 PM To: w7ry at centurytel.net ; app_rpt mailing list Subject: RE: [App_rpt-users] Process Hanging on Reboot you DNS no-workee. Please check the entries in /etc/resolv.conf and make sure they are pointing to real, working DNS servers. JIM WB6NIL ------------------------------------------------------------------------------ From: w7ry at centurytel.net To: app_rpt-users at ohnosec.org Date: Tue, 3 Jan 2012 21:16:23 -0800 Subject: [App_rpt-users] Process Hanging on Reboot I have 2 processes that hang for 2+ minuets when I reboot. Starting sendmail: Starting sm-client: They eventually say OK then it continues to boot and all is ok. Any ideas? Thanks 73 Jim W7RY _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 ------------------------------------------------------------------------------ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users ------------------------------------------------------------------------------ No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4724 - Release Date: 01/05/12 -------------- next part -------------- An HTML attachment was scrubbed... URL: From wl7ni.ak at gmail.com Fri Jan 6 00:34:02 2012 From: wl7ni.ak at gmail.com (Mark Huelskoetter) Date: Thu, 5 Jan 2012 15:34:02 -0900 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: <5A186357CB1740B9A371CDC4CEB6734C@Laptop> References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> <5A186357CB1740B9A371CDC4CEB6734C@Laptop> Message-ID: One other place to check. Look in /etc/sysconfig/network: Mark sure you(R) hostname appears in there as well. It should look like this: NETWORKING=yes NETWORKING_IPV6=no HOSTNAME=YOURHOSTNAME Mark - WL7NI On Thu, Jan 5, 2012 at 3:06 PM, Jim W7RY wrote: > ** > It is. > > Jim W7RY > > > *From:* Mark Huelskoetter > *Sent:* Thursday, January 05, 2012 11:26 AM > *To:* Jim W7RY > *Cc:* Jim Duuuude ; app_rpt mailing list > *Subject:* Re: [App_rpt-users] Process Hanging on Reboot > > Make sure that you machine name is in /etc/hosts > > something like: > > 127.0.0.1 youmachine localhost.localdomain localhost > > Mark - WL7NI > > On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: > >> ** >> That did not fix the problem. Still hangs >> >> Ideas? >> >> Thanks >> 73 >> Jim W7RY >> >> >> *From:* Jim W7RY >> *Sent:* Tuesday, January 03, 2012 9:54 PM >> *To:* Jim Duuuude ; app_rpt mailing list >> *Subject:* Re: [App_rpt-users] Process Hanging on Reboot >> >> Thanks! >> >> Just put in: >> >> ; generated by /sbin/dhclient-script >> >> nameserver 8.8.8.8 >> >> nameserver 8.8.4.4 >> >> >> >> That should fix it!! >> >> >> >> 73 >> >> Jim W7Ry >> >> >> >> *From:* Jim Duuuude >> *Sent:* Tuesday, January 03, 2012 9:19 PM >> *To:* w7ry at centurytel.net ; app_rpt mailing list >> *Subject:* RE: [App_rpt-users] Process Hanging on Reboot >> >> you DNS no-workee. >> >> Please check the entries in /etc/resolv.conf >> and make sure they are pointing to real, >> working DNS servers. >> >> JIM WB6NIL >> >> ------------------------------ >> From: w7ry at centurytel.net >> To: app_rpt-users at ohnosec.org >> Date: Tue, 3 Jan 2012 21:16:23 -0800 >> Subject: [App_rpt-users] Process Hanging on Reboot >> >> I have 2 processes that hang for 2+ minuets when I reboot. >> >> Starting sendmail: >> Starting sm-client: >> >> They eventually say OK then it continues to boot and all is ok. >> >> Any ideas? >> >> Thanks >> 73 >> Jim W7RY >> >> >> _______________________________________________ App_rpt-users mailing >> list App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> No virus found in this message. >> Checked by AVG - www.avg.com >> Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 >> >> ------------------------------ >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> ------------------------------ >> >> No virus found in this message. >> Checked by AVG - www.avg.com >> Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4724 - Release Date: 01/05/12 > > > _______________________________________________ > 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 wl7ni.ak at gmail.com Fri Jan 6 00:35:28 2012 From: wl7ni.ak at gmail.com (Mark Huelskoetter) Date: Thu, 5 Jan 2012 15:35:28 -0900 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> <5A186357CB1740B9A371CDC4CEB6734C@Laptop> Message-ID: Oh good grief......MAKE sure not Mark sure.... That's it, I need new fingers... Hope it fixes it for you On Thu, Jan 5, 2012 at 3:34 PM, Mark Huelskoetter wrote: > One other place to check. Look in /etc/sysconfig/network: > Mark sure you(R) hostname appears in there as well. It should look like > this: > > NETWORKING=yes > NETWORKING_IPV6=no > HOSTNAME=YOURHOSTNAME > > Mark - WL7NI > > > > On Thu, Jan 5, 2012 at 3:06 PM, Jim W7RY wrote: > >> ** >> It is. >> >> Jim W7RY >> >> >> *From:* Mark Huelskoetter >> *Sent:* Thursday, January 05, 2012 11:26 AM >> *To:* Jim W7RY >> *Cc:* Jim Duuuude ; app_rpt mailing list >> *Subject:* Re: [App_rpt-users] Process Hanging on Reboot >> >> Make sure that you machine name is in /etc/hosts >> >> something like: >> >> 127.0.0.1 youmachine localhost.localdomain localhost >> >> Mark - WL7NI >> >> On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: >> >>> ** >>> That did not fix the problem. Still hangs >>> >>> Ideas? >>> >>> Thanks >>> 73 >>> Jim W7RY >>> >>> >>> *From:* Jim W7RY >>> *Sent:* Tuesday, January 03, 2012 9:54 PM >>> *To:* Jim Duuuude ; app_rpt mailing list >>> *Subject:* Re: [App_rpt-users] Process Hanging on Reboot >>> >>> Thanks! >>> >>> Just put in: >>> >>> ; generated by /sbin/dhclient-script >>> >>> nameserver 8.8.8.8 >>> >>> nameserver 8.8.4.4 >>> >>> >>> >>> That should fix it!! >>> >>> >>> >>> 73 >>> >>> Jim W7Ry >>> >>> >>> >>> *From:* Jim Duuuude >>> *Sent:* Tuesday, January 03, 2012 9:19 PM >>> *To:* w7ry at centurytel.net ; app_rpt mailing list >>> *Subject:* RE: [App_rpt-users] Process Hanging on Reboot >>> >>> you DNS no-workee. >>> >>> Please check the entries in /etc/resolv.conf >>> and make sure they are pointing to real, >>> working DNS servers. >>> >>> JIM WB6NIL >>> >>> ------------------------------ >>> From: w7ry at centurytel.net >>> To: app_rpt-users at ohnosec.org >>> Date: Tue, 3 Jan 2012 21:16:23 -0800 >>> Subject: [App_rpt-users] Process Hanging on Reboot >>> >>> I have 2 processes that hang for 2+ minuets when I reboot. >>> >>> Starting sendmail: >>> Starting sm-client: >>> >>> They eventually say OK then it continues to boot and all is ok. >>> >>> Any ideas? >>> >>> Thanks >>> 73 >>> Jim W7RY >>> >>> >>> _______________________________________________ App_rpt-users mailing >>> list App_rpt-users at ohnosec.org >>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> No virus found in this message. >>> Checked by AVG - www.avg.com >>> Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 >>> >>> ------------------------------ >>> >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at ohnosec.org >>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> ------------------------------ >>> >>> No virus found in this message. >>> Checked by AVG - www.avg.com >>> Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 >>> >>> >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at ohnosec.org >>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> >> No virus found in this message. >> Checked by AVG - www.avg.com >> Version: 2012.0.1901 / Virus Database: 2109/4724 - Release Date: 01/05/12 >> >> >> _______________________________________________ >> 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 dshaw at ke6upi.com Fri Jan 6 03:36:34 2012 From: dshaw at ke6upi.com (David KE6UPI) Date: Thu, 5 Jan 2012 19:36:34 -0800 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> <5A186357CB1740B9A371CDC4CEB6734C@Laptop> Message-ID: To turn off Sendmail. change directory "cd /etc/rc3.d" use mv to rename the start up file for sendmail. Change XX to match the number used to start sendmail. i.e. mv S05sendmail K05sendamil So S is to start the service at boot. the number is what order to start the service. K is to Kill at shutdown. cd /etc/rc3.d/ mv SXXsendmail KXXsendmail You still need your DNS settings. Sendmail is trying to resolve your computers hostname via your DNS and the hosts.conf file. So if you use Google's 8.8.8.8 DNS server or any DNS server and you don't have a registered domain with a "A" record that matched your computer hostname sendmail will have to time out at start up. If you are using DHCP to get an IP address then edit ifcfg-ethX and add or change this line DHCP_HOSTNAME=*"hostname"* . DHCP_HOSTNAME tells your dhcp server what name to use for the local DNS. So if you have a good router then this will work. Use your text editor /etc/sysconfig/network-scripts/ifcfg-eth0 So on my ACID install sendmail to set to start after the network gets an IP address. This is good. S10network S80sendmail David On Thu, Jan 5, 2012 at 4:35 PM, Mark Huelskoetter wrote: > Oh good grief......MAKE sure not Mark sure.... > > That's it, I need new fingers... > > Hope it fixes it for you > > > > On Thu, Jan 5, 2012 at 3:34 PM, Mark Huelskoetter wrote: > >> One other place to check. Look in /etc/sysconfig/network: >> Mark sure you(R) hostname appears in there as well. It should look like >> this: >> >> NETWORKING=yes >> NETWORKING_IPV6=no >> HOSTNAME=YOURHOSTNAME >> >> Mark - WL7NI >> >> >> >> On Thu, Jan 5, 2012 at 3:06 PM, Jim W7RY wrote: >> >>> ** >>> It is. >>> >>> Jim W7RY >>> >>> >>> *From:* Mark Huelskoetter >>> *Sent:* Thursday, January 05, 2012 11:26 AM >>> *To:* Jim W7RY >>> *Cc:* Jim Duuuude ; app_rpt mailing list >>> *Subject:* Re: [App_rpt-users] Process Hanging on Reboot >>> >>> Make sure that you machine name is in /etc/hosts >>> >>> something like: >>> >>> 127.0.0.1 youmachine localhost.localdomain localhost >>> >>> Mark - WL7NI >>> >>> On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: >>> >>>> ** >>>> That did not fix the problem. Still hangs >>>> >>>> Ideas? >>>> >>>> Thanks >>>> 73 >>>> Jim W7RY >>>> >>>> >>>> *From:* Jim W7RY >>>> *Sent:* Tuesday, January 03, 2012 9:54 PM >>>> *To:* Jim Duuuude ; app_rpt mailing list >>>> *Subject:* Re: [App_rpt-users] Process Hanging on Reboot >>>> >>>> Thanks! >>>> >>>> Just put in: >>>> >>>> ; generated by /sbin/dhclient-script >>>> >>>> nameserver 8.8.8.8 >>>> >>>> nameserver 8.8.4.4 >>>> >>>> >>>> >>>> That should fix it!! >>>> >>>> >>>> >>>> 73 >>>> >>>> Jim W7Ry >>>> >>>> >>>> >>>> *From:* Jim Duuuude >>>> *Sent:* Tuesday, January 03, 2012 9:19 PM >>>> *To:* w7ry at centurytel.net ; app_rpt mailing list >>>> *Subject:* RE: [App_rpt-users] Process Hanging on Reboot >>>> >>>> you DNS no-workee. >>>> >>>> Please check the entries in /etc/resolv.conf >>>> and make sure they are pointing to real, >>>> working DNS servers. >>>> >>>> JIM WB6NIL >>>> >>>> ------------------------------ >>>> From: w7ry at centurytel.net >>>> To: app_rpt-users at ohnosec.org >>>> Date: Tue, 3 Jan 2012 21:16:23 -0800 >>>> Subject: [App_rpt-users] Process Hanging on Reboot >>>> >>>> I have 2 processes that hang for 2+ minuets when I reboot. >>>> >>>> Starting sendmail: >>>> Starting sm-client: >>>> >>>> They eventually say OK then it continues to boot and all is ok. >>>> >>>> Any ideas? >>>> >>>> Thanks >>>> 73 >>>> Jim W7RY >>>> >>>> >>>> _______________________________________________ App_rpt-users mailing >>>> list App_rpt-users at ohnosec.org >>>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> No virus found in this message. >>>> Checked by AVG - www.avg.com >>>> Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: >>>> 01/03/12 >>>> >>>> ------------------------------ >>>> >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at ohnosec.org >>>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> ------------------------------ >>>> >>>> No virus found in this message. >>>> Checked by AVG - www.avg.com >>>> Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: >>>> 01/03/12 >>>> >>>> >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at ohnosec.org >>>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> >>>> >>> No virus found in this message. >>> Checked by AVG - www.avg.com >>> Version: 2012.0.1901 / Virus Database: 2109/4724 - Release Date: 01/05/12 >>> >>> >>> _______________________________________________ >>> 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 telesistant at hotmail.com Fri Jan 6 03:43:00 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Thu, 5 Jan 2012 19:43:00 -0800 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop>, , <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop>, <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop>, , <5A186357CB1740B9A371CDC4CEB6734C@Laptop>, , , Message-ID: what about 'chkconfig sendmail off' ?? wouldnt that be easier?? JIM Date: Thu, 5 Jan 2012 19:36:34 -0800 From: dshaw at ke6upi.com To: wl7ni.ak at gmail.com CC: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Process Hanging on Reboot To turn off Sendmail. change directory "cd /etc/rc3.d" use mv to rename the start up file for sendmail. Change XX to match the number used to start sendmail. i.e. mv S05sendmail K05sendamil So S is to start the service at boot. the number is what order to start the service. K is to Kill at shutdown. cd /etc/rc3.d/ mv SXXsendmail KXXsendmail You still need your DNS settings. Sendmail is trying to resolve your computers hostname via your DNS and the hosts.conf file. So if you use Google's 8.8.8.8 DNS server or any DNS server and you don't have a registered domain with a "A" record that matched your computer hostname sendmail will have to time out at start up. If you are using DHCP to get an IP address then edit ifcfg-ethX and add or change this line DHCP_HOSTNAME="hostname" . DHCP_HOSTNAME tells your dhcp server what name to use for the local DNS. So if you have a good router then this will work. Use your text editor /etc/sysconfig/network-scripts/ifcfg-eth0 So on my ACID install sendmail to set to start after the network gets an IP address. This is good. S10network S80sendmail David On Thu, Jan 5, 2012 at 4:35 PM, Mark Huelskoetter wrote: Oh good grief......MAKE sure not Mark sure.... That's it, I need new fingers... Hope it fixes it for you On Thu, Jan 5, 2012 at 3:34 PM, Mark Huelskoetter wrote: One other place to check. Look in /etc/sysconfig/network: Mark sure you(R) hostname appears in there as well. It should look like this: NETWORKING=yes NETWORKING_IPV6=no HOSTNAME=YOURHOSTNAME Mark - WL7NI On Thu, Jan 5, 2012 at 3:06 PM, Jim W7RY wrote: It is. Jim W7RY From: Mark Huelskoetter Sent: Thursday, January 05, 2012 11:26 AM To: Jim W7RY Cc: Jim Duuuude ; app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot Make sure that you machine name is in /etc/hosts something like: 127.0.0.1 youmachine localhost.localdomain localhost Mark - WL7NI On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: That did not fix the problem. Still hangs Ideas? Thanks 73 Jim W7RY From: Jim W7RY Sent: Tuesday, January 03, 2012 9:54 PM To: Jim Duuuude ; app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot Thanks! Just put in: ; generated by /sbin/dhclient-script nameserver 8.8.8.8 nameserver 8.8.4.4 That should fix it!! 73 Jim W7Ry From: Jim Duuuude Sent: Tuesday, January 03, 2012 9:19 PM To: w7ry at centurytel.net ; app_rpt mailing list Subject: RE: [App_rpt-users] Process Hanging on Reboot you DNS no-workee. Please check the entries in /etc/resolv.conf and make sure they are pointing to real, working DNS servers. JIM WB6NIL From: w7ry at centurytel.net To: app_rpt-users at ohnosec.org Date: Tue, 3 Jan 2012 21:16:23 -0800 Subject: [App_rpt-users] Process Hanging on Reboot I have 2 processes that hang for 2+ minuets when I reboot. Starting sendmail: Starting sm-client: They eventually say OK then it continues to boot and all is ok. Any ideas? Thanks 73 Jim W7RY _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4724 - Release Date: 01/05/12 _______________________________________________ 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 bbrown at byrg.net Fri Jan 6 03:58:10 2012 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Thu, 5 Jan 2012 21:58:10 -0600 Subject: [App_rpt-users] TK-840 service manual needed In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> <015601cccbda$b4750a20$1d5f1e60$@kb2ear.net> Message-ID: go here the pin out are the same for the tk840 tk940/941 this should get you what you want the logic is the same basically only the RF is different. http://www.repeater-builder.com/kenwood/pdfs/tk-941-svc-man.pdf http://www.repeater-builder.com/kenwood/pdfs/ -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://sm0kenet.net http://byrg.net http://kcdstar.byrg.net http://w0nqx.blogspot.com Quis custodiet ipsos custodes? Its not how many watts you have, its the SIZE of your watts that matter! -- Johnny Marshall, W0JM-SK -- On Thu, Jan 5, 2012 at 1:00 PM, pete M wrote: > First of all, since its my first post in 2012, Happy New Year 2012 have > some great DX and no problem with your repeaters! > > Ok like the tittle say, I need the service manual of a Kenwood TK-840 > mobile. > > I am in the process of building a homebrew dstar repeater, and I need > some information on what signal is available on the KCT-19 accessory cable. > > is it flat audio? is there a way to have flat audio? This radio will be > the receiver part of the repeater, the transmitter will be a tk-860HG. > > I have the programing cable and I?ve been able to program both radio in > the ham band, and they are really stable.. > > Anyone can help? > > And if someone knows a few info, like there is no flat audio output > possible from those radio, please tell me so I wont loose time on those > radio. > > thanks > > Pierre > VE2PF > > > > _______________________________________________ > 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 bbrown at byrg.net Fri Jan 6 04:01:43 2012 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Thu, 5 Jan 2012 22:01:43 -0600 Subject: [App_rpt-users] TK-840 service manual needed In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> <015601cccbda$b4750a20$1d5f1e60$@kb2ear.net> Message-ID: here is some other connection info that will apply for the tk-840 as well http://www.pyramidcomm.com/pdf/2012pdf/40SERIES.PDF -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://sm0kenet.net http://byrg.net http://kcdstar.byrg.net http://w0nqx.blogspot.com Quis custodiet ipsos custodes? Its not how many watts you have, its the SIZE of your watts that matter! -- Johnny Marshall, W0JM-SK -- On Thu, Jan 5, 2012 at 1:00 PM, pete M wrote: > First of all, since its my first post in 2012, Happy New Year 2012 have > some great DX and no problem with your repeaters! > > Ok like the tittle say, I need the service manual of a Kenwood TK-840 > mobile. > > I am in the process of building a homebrew dstar repeater, and I need > some information on what signal is available on the KCT-19 accessory cable. > > is it flat audio? is there a way to have flat audio? This radio will be > the receiver part of the repeater, the transmitter will be a tk-860HG. > > I have the programing cable and I?ve been able to program both radio in > the ham band, and they are really stable.. > > Anyone can help? > > And if someone knows a few info, like there is no flat audio output > possible from those radio, please tell me so I wont loose time on those > radio. > > thanks > > Pierre > VE2PF > > > > _______________________________________________ > 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 dshaw at ke6upi.com Fri Jan 6 04:20:40 2012 From: dshaw at ke6upi.com (David KE6UPI) Date: Thu, 5 Jan 2012 20:20:40 -0800 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop> <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop> <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop> <5A186357CB1740B9A371CDC4CEB6734C@Laptop> Message-ID: Yes Jim that would be easier. So would Google. David On Thu, Jan 5, 2012 at 7:43 PM, Jim Duuuude wrote: > what about 'chkconfig sendmail off' ?? > > wouldnt that be easier?? > > JIM > > > > ------------------------------ > Date: Thu, 5 Jan 2012 19:36:34 -0800 > From: dshaw at ke6upi.com > To: wl7ni.ak at gmail.com > CC: app_rpt-users at ohnosec.org > > Subject: Re: [App_rpt-users] Process Hanging on Reboot > > > > To turn off Sendmail. > > change directory "cd /etc/rc3.d" > use mv to rename the start up file for sendmail. Change XX to match the > number used to start sendmail. i.e. mv S05sendmail K05sendamil So S is to > start the service at boot. the number is what order to start the service. K > is to Kill at shutdown. > > cd /etc/rc3.d/ > mv SXXsendmail KXXsendmail > > You still need your DNS settings. > > Sendmail is trying to resolve your computers hostname via your DNS and the > hosts.conf file. So if you use Google's 8.8.8.8 DNS server or any DNS > server and you don't have a registered domain with a "A" record that > matched your computer hostname sendmail will have to time out at start up. > > If you are using DHCP to get an IP address then edit ifcfg-ethX and add or > change this line DHCP_HOSTNAME=*"hostname"* . DHCP_HOSTNAME tells your > dhcp server what name to use for the local DNS. So if you have a good > router then this will work. > > Use your text editor /etc/sysconfig/network-scripts/ifcfg-eth0 > > So on my ACID install sendmail to set to start after the network gets an > IP address. This is good. S10network S80sendmail > > David > > > On Thu, Jan 5, 2012 at 4:35 PM, Mark Huelskoetter wrote: > > Oh good grief......MAKE sure not Mark sure.... > > That's it, I need new fingers... > > Hope it fixes it for you > > > > On Thu, Jan 5, 2012 at 3:34 PM, Mark Huelskoetter wrote: > > One other place to check. Look in /etc/sysconfig/network: > Mark sure you(R) hostname appears in there as well. It should look like > this: > > NETWORKING=yes > NETWORKING_IPV6=no > HOSTNAME=YOURHOSTNAME > > Mark - WL7NI > > > > On Thu, Jan 5, 2012 at 3:06 PM, Jim W7RY wrote: > > ** > It is. > > Jim W7RY > > > *From:* Mark Huelskoetter > *Sent:* Thursday, January 05, 2012 11:26 AM > *To:* Jim W7RY > *Cc:* Jim Duuuude ; app_rpt mailing list > *Subject:* Re: [App_rpt-users] Process Hanging on Reboot > > Make sure that you machine name is in /etc/hosts > > something like: > > 127.0.0.1 youmachine localhost.localdomain localhost > > Mark - WL7NI > > On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: > > ** > That did not fix the problem. Still hangs > > Ideas? > > Thanks > 73 > Jim W7RY > > > *From:* Jim W7RY > *Sent:* Tuesday, January 03, 2012 9:54 PM > *To:* Jim Duuuude ; app_rpt mailing list > *Subject:* Re: [App_rpt-users] Process Hanging on Reboot > > Thanks! > > Just put in: > ; generated by /sbin/dhclient-script > nameserver 8.8.8.8 > nameserver 8.8.4.4 > > That should fix it!! > > 73 > Jim W7Ry > > > *From:* Jim Duuuude > *Sent:* Tuesday, January 03, 2012 9:19 PM > *To:* w7ry at centurytel.net ; app_rpt mailing list > *Subject:* RE: [App_rpt-users] Process Hanging on Reboot > > you DNS no-workee. > > Please check the entries in /etc/resolv.conf > and make sure they are pointing to real, > working DNS servers. > > JIM WB6NIL > > ------------------------------ > From: w7ry at centurytel.net > To: app_rpt-users at ohnosec.org > Date: Tue, 3 Jan 2012 21:16:23 -0800 > Subject: [App_rpt-users] Process Hanging on Reboot > > I have 2 processes that hang for 2+ minuets when I reboot. > > Starting sendmail: > Starting sm-client: > > They eventually say OK then it continues to boot and all is ok. > > Any ideas? > > Thanks > 73 > Jim W7RY > > > _______________________________________________ App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 > > ------------------------------ > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > ------------------------------ > > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4724 - Release Date: 01/05/12 > > _______________________________________________ > 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 jaydublu2002 at gmail.com Fri Jan 6 11:34:47 2012 From: jaydublu2002 at gmail.com (Jim Whiteside) Date: Fri, 6 Jan 2012 11:34:47 +0000 Subject: [App_rpt-users] USB Soundcard Fob - no audio Message-ID: I'm working hard to get a basic AllStar system running, and struggling to find a suitable USB Fob to modify (trying to do it on a budget) I've been unable to get hold of the exact model shown in www.qsl.net/kb9mwr/projects/voip/usbfob-119.pdf, but now have several of a very similar one with the printed description 'Virtual 7.1Ch Sound' and a slightly translucent case. lsusb reports the device as 'ID 0d8c:000c C-Media Electronics, Inc. Audio Adapter.' which I think might be CM119 or similar. When plugged in the green led starts to flash, but I've not yet been able to get any audio out of it - even when running 'rpt fun *80' from the Asterisk CLI I wanted to confirm this was a suitable fob before going to the grief of modifying - it's much more SMT than in the above PDF, and you can't actually access the pins on the chip itself as it's under a 'bubble' of a ceramic compound. Any advice would be gratefully received. -- Jim M0HPJ. From jrorke at cogeco.ca Fri Jan 6 12:52:56 2012 From: jrorke at cogeco.ca (Jon Rorke) Date: Fri, 06 Jan 2012 07:52:56 -0500 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop>, , <4E2471DEF0DA49FFB609BDF4EAA25586@Laptop>, <9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop>, , <5A186357CB1740B9A371CDC4CEB6734C@Laptop>, , , Message-ID: <4F06EEA8.90203@cogeco.ca> I have been doing the 'chkconfig sendmail off' thing too and it does work for send mail. But then my box hangs at sm-client too. Any idea on that or do the same for SM-client too? Jon VA3RQ On 1/5/2012 10:43 PM, Jim Duuuude wrote: > what about 'chkconfig sendmail off' ?? > > wouldnt that be easier?? > > JIM > > > > ------------------------------------------------------------------------ > Date: Thu, 5 Jan 2012 19:36:34 -0800 > From: dshaw at ke6upi.com > To: wl7ni.ak at gmail.com > CC: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Process Hanging on Reboot > > > > To turn off Sendmail. > > change directory "cd /etc/rc3.d" > use mv to rename the start up file for sendmail. Change XX to match > the number used to start sendmail. i.e. mv S05sendmail K05sendamil So > S is to start the service at boot. the number is what order to start > the service. K is to Kill at shutdown. > > cd /etc/rc3.d/ > mv SXXsendmail KXXsendmail > > You still need your DNS settings. > > Sendmail is trying to resolve your computers hostname via your DNS and > the hosts.conf file. So if you use Google's 8.8.8.8 DNS server or any > DNS server and you don't have a registered domain with a "A" record > that matched your computer hostname sendmail will have to time out at > start up. > > If you are using DHCP to get an IP address then edit ifcfg-ethX and > add or change this line DHCP_HOSTNAME=/"hostname"/ . DHCP_HOSTNAME > tells your dhcp server what name to use for the local DNS. So if you > have a good router then this will work. > > Use your text editor /etc/sysconfig/network-scripts/ifcfg-eth0 > > So on my ACID install sendmail to set to start after the network gets > an IP address. This is good. S10network S80sendmail > > David > > > On Thu, Jan 5, 2012 at 4:35 PM, Mark Huelskoetter > wrote: > > Oh good grief......MAKE sure not Mark sure.... > > That's it, I need new fingers... > > Hope it fixes it for you > > > > On Thu, Jan 5, 2012 at 3:34 PM, Mark Huelskoetter > > wrote: > > One other place to check. Look in /etc/sysconfig/network: > Mark sure you(R) hostname appears in there as well. It should > look like this: > > NETWORKING=yes > NETWORKING_IPV6=no > HOSTNAME=YOURHOSTNAME > > Mark - WL7NI > > > > On Thu, Jan 5, 2012 at 3:06 PM, Jim W7RY > wrote: > > It is. > Jim W7RY > > *From:* Mark Huelskoetter > *Sent:* Thursday, January 05, 2012 11:26 AM > *To:* Jim W7RY > *Cc:* Jim Duuuude ; > app_rpt mailing list > *Subject:* Re: [App_rpt-users] Process Hanging on Reboot > > Make sure that you machine name is in /etc/hosts > > something like: > > 127.0.0.1 youmachine localhost.localdomain localhost > > Mark - WL7NI > > On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY > > wrote: > > That did not fix the problem. Still hangs > Ideas? > Thanks > 73 > Jim W7RY > > *From:* Jim W7RY > *Sent:* Tuesday, January 03, 2012 9:54 PM > *To:* Jim Duuuude ; > app_rpt mailing list > *Subject:* Re: [App_rpt-users] Process Hanging on Reboot > > Thanks! > Just put in: > ; generated by /sbin/dhclient-script > nameserver 8.8.8.8 > nameserver 8.8.4.4 > > That should fix it!! > > 73 > Jim W7Ry > > > *From:* Jim Duuuude > *Sent:* Tuesday, January 03, 2012 9:19 PM > *To:* w7ry at centurytel.net > ; app_rpt mailing list > *Subject:* RE: [App_rpt-users] Process Hanging on Reboot > > you DNS no-workee. > > Please check the entries in /etc/resolv.conf > and make sure they are pointing to real, > working DNS servers. > > JIM WB6NIL > > ------------------------------------------------------------------------ > From: w7ry at centurytel.net > To: app_rpt-users at ohnosec.org > > Date: Tue, 3 Jan 2012 21:16:23 -0800 > Subject: [App_rpt-users] Process Hanging on Reboot > > I have 2 processes that hang for 2+ minuets when I reboot. > Starting sendmail: > Starting sm-client: > They eventually say OK then it continues to boot and > all is ok. > Any ideas? > Thanks > 73 > Jim W7RY > > _______________________________________________ > App_rpt-users mailing list App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4721 - > Release Date: 01/03/12 > > > ------------------------------------------------------------------------ > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > ------------------------------------------------------------------------ > > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4721 - > Release Date: 01/03/12 > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4724 - Release > Date: 01/05/12 > > _______________________________________________ > 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 george at dyb.com Fri Jan 6 13:51:45 2012 From: george at dyb.com (George Csahanin) Date: Fri, 6 Jan 2012 07:51:45 -0600 Subject: [App_rpt-users] USB Soundcard Fob - no audio References: Message-ID: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> The flashing green light is a good sign. That's reporting in as a CM108 for sure. >From the source code: #define C108_VENDOR_ID 0x0d8c #define C108_PRODUCT_ID 0x000c In usbradio.conf make sure that txmixa= and txmixb= something other than no Example from one of my nodes: txmixa=composite ;no,voice,tone,composite,auxvoice txmixb=composite also try (from asterisk command line) "radio tune" >From my 2360 node: ... Tx Voice Level currently set to 350 Tx Tone Level currently set to 160... If those are too low you might not get anything out. ALSO...to transmit tone "radio tune txvoice" should put out a tone. *80 (default setup) makes the thing ID, and if that isn't setup correctly might give you no audio. Another point is that I no longer modify USB Fobs. The ones I use are identical to the ones in that pdf. But I use the PC's parallel port lines for COS in and PTT out, much neater. I also do DC blocking (the caps) in the radio. ----- Original Message ----- From: "Jim Whiteside" To: Sent: Friday, January 06, 2012 5:34 AM Subject: [App_rpt-users] USB Soundcard Fob - no audio > I'm working hard to get a basic AllStar system running, and struggling > to find a suitable USB Fob to modify (trying to do it on a budget) > > I've been unable to get hold of the exact model shown in > www.qsl.net/kb9mwr/projects/voip/usbfob-119.pdf, but now have several > of a very similar one with the printed description 'Virtual 7.1Ch > Sound' and a slightly translucent case. > > lsusb reports the device as 'ID 0d8c:000c C-Media Electronics, Inc. > Audio Adapter.' which I think might be CM119 or similar. > > When plugged in the green led starts to flash, but I've not yet been > able to get any audio out of it - even when running 'rpt fun > *80' from the Asterisk CLI > > I wanted to confirm this was a suitable fob before going to the grief > of modifying - it's much more SMT than in the above PDF, and you can't > actually access the pins on the chip itself as it's under a 'bubble' > of a ceramic compound. > > Any advice would be gratefully received. > > -- > Jim M0HPJ. > > From w7ry at centurytel.net Fri Jan 6 14:28:13 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Fri, 6 Jan 2012 06:28:13 -0800 Subject: [App_rpt-users] Process Hanging on Reboot In-Reply-To: References: <799FF94DF8A541B7A370FEAE59C17D3D@Laptop><4E2471DEF0DA49FFB609BDF4EAA25586@Laptop><9E4E7EF2FC634FAD98DE949F40BEE1DE@Laptop><5A186357CB1740B9A371CDC4CEB6734C@Laptop> Message-ID: So would Google for what? To do what? Jim W7RY From: David KE6UPI Sent: Thursday, January 05, 2012 8:20 PM To: Jim Duuuude Cc: app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot Yes Jim that would be easier. So would Google. David On Thu, Jan 5, 2012 at 7:43 PM, Jim Duuuude wrote: what about 'chkconfig sendmail off' ?? wouldnt that be easier?? JIM ------------------------------------------------------------------------------ Date: Thu, 5 Jan 2012 19:36:34 -0800 From: dshaw at ke6upi.com To: wl7ni.ak at gmail.com CC: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Process Hanging on Reboot To turn off Sendmail. change directory "cd /etc/rc3.d" use mv to rename the start up file for sendmail. Change XX to match the number used to start sendmail. i.e. mv S05sendmail K05sendamil So S is to start the service at boot. the number is what order to start the service. K is to Kill at shutdown. cd /etc/rc3.d/ mv SXXsendmail KXXsendmail You still need your DNS settings. Sendmail is trying to resolve your computers hostname via your DNS and the hosts.conf file. So if you use Google's 8.8.8.8 DNS server or any DNS server and you don't have a registered domain with a "A" record that matched your computer hostname sendmail will have to time out at start up. If you are using DHCP to get an IP address then edit ifcfg-ethX and add or change this line DHCP_HOSTNAME="hostname" . DHCP_HOSTNAME tells your dhcp server what name to use for the local DNS. So if you have a good router then this will work. Use your text editor /etc/sysconfig/network-scripts/ifcfg-eth0 So on my ACID install sendmail to set to start after the network gets an IP address. This is good. S10network S80sendmail David On Thu, Jan 5, 2012 at 4:35 PM, Mark Huelskoetter wrote: Oh good grief......MAKE sure not Mark sure.... That's it, I need new fingers... Hope it fixes it for you On Thu, Jan 5, 2012 at 3:34 PM, Mark Huelskoetter wrote: One other place to check. Look in /etc/sysconfig/network: Mark sure you(R) hostname appears in there as well. It should look like this: NETWORKING=yes NETWORKING_IPV6=no HOSTNAME=YOURHOSTNAME Mark - WL7NI On Thu, Jan 5, 2012 at 3:06 PM, Jim W7RY wrote: It is. Jim W7RY From: Mark Huelskoetter Sent: Thursday, January 05, 2012 11:26 AM To: Jim W7RY Cc: Jim Duuuude ; app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot Make sure that you machine name is in /etc/hosts something like: 127.0.0.1 youmachine localhost.localdomain localhost Mark - WL7NI On Thu, Jan 5, 2012 at 9:39 AM, Jim W7RY wrote: That did not fix the problem. Still hangs Ideas? Thanks 73 Jim W7RY From: Jim W7RY Sent: Tuesday, January 03, 2012 9:54 PM To: Jim Duuuude ; app_rpt mailing list Subject: Re: [App_rpt-users] Process Hanging on Reboot Thanks! Just put in: ; generated by /sbin/dhclient-script nameserver 8.8.8.8 nameserver 8.8.4.4 That should fix it!! 73 Jim W7Ry From: Jim Duuuude Sent: Tuesday, January 03, 2012 9:19 PM To: w7ry at centurytel.net ; app_rpt mailing list Subject: RE: [App_rpt-users] Process Hanging on Reboot you DNS no-workee. Please check the entries in /etc/resolv.conf and make sure they are pointing to real, working DNS servers. JIM WB6NIL ---------------------------------------------------------------------- From: w7ry at centurytel.net To: app_rpt-users at ohnosec.org Date: Tue, 3 Jan 2012 21:16:23 -0800 Subject: [App_rpt-users] Process Hanging on Reboot I have 2 processes that hang for 2+ minuets when I reboot. Starting sendmail: Starting sm-client: They eventually say OK then it continues to boot and all is ok. Any ideas? Thanks 73 Jim W7RY _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 ---------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users ---------------------------------------------------------------------- No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4721 - Release Date: 01/03/12 _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4724 - Release Date: 01/05/12 _______________________________________________ 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 -------------------------------------------------------------------------------- No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4725 - Release Date: 01/05/12 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jaydublu2002 at gmail.com Fri Jan 6 14:29:29 2012 From: jaydublu2002 at gmail.com (Jim Whiteside) Date: Fri, 6 Jan 2012 14:29:29 +0000 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> Message-ID: George, Thanks for the reply. txmixa was set to 'composite', txmixb to '0' - changing this also to composite didn't make a difference. Do you know what asterisk*CLI> radio tune txvoice Current txvoice setting on Channel A is 500 Tone output starting on channel usb28233... Tone output ending on channel usb28233... asterisk*CLI> radio tune txtone Current Tx CTCSS modulation setting = 200 Neither of the above did anything. If I copnnect to the node using IaxRpt, *80 ID's fine from that application, but not from the fob. Also I can connect to another node and have a QSO using IaxRpt, but again nothing from the fob. I'm plugging stereo headphones into the fob headphone jack. Interesting advice about using LPT for the GPIO - I might pick your brains about that if I can get the audio working - I'd rather avoid the expense of buying in URI - the shipping is almost as much as the device to the UK, and I'd like the challenge of working it out. Cheers, Jim M0HPJ. On 6 January 2012 13:51, George Csahanin wrote: > > The flashing green light is a good sign. > > That's reporting in as a CM108 for sure. > > From the source code: > #define C108_VENDOR_ID 0x0d8c > #define C108_PRODUCT_ID 0x000c > > In usbradio.conf make sure that txmixa= and txmixb= something other than no > > Example from one of my nodes: > > txmixa=composite ? ? ? ?;no,voice,tone,composite,auxvoice > txmixb=composite > > also try (from asterisk command line) "radio tune" > > From my 2360 node: > ... > Tx Voice Level currently set to 350 > Tx Tone Level currently set to 160... > > If those are too low you might not get anything out. > > ALSO...to transmit tone "radio tune txvoice" should put out a tone. > > *80 (default setup) makes the thing ID, and if that isn't setup correctly > might give you no audio. > > Another point is that I no longer modify USB Fobs. The ones I use are > identical to the ones in that pdf. But I use the PC's parallel port lines > for COS in and PTT out, much neater. > I also do DC blocking (the caps) in the radio. > > > > ----- Original Message ----- From: "Jim Whiteside" > To: > Sent: Friday, January 06, 2012 5:34 AM > > Subject: [App_rpt-users] USB Soundcard Fob - no audio > > >> I'm working hard to get a basic AllStar system running, and struggling >> to find a suitable USB Fob to modify (trying to do it on a budget) >> >> I've been unable to get hold of the exact model shown in >> www.qsl.net/kb9mwr/projects/voip/usbfob-119.pdf, but now have several >> of a very similar one with the printed description 'Virtual 7.1Ch >> Sound' and a slightly translucent case. >> >> lsusb reports the device as 'ID 0d8c:000c C-Media Electronics, Inc. >> Audio Adapter.' which I think might be CM119 or similar. >> >> When plugged in the green led starts to flash, but I've not yet been >> able to get any audio out of it - even when running 'rpt fun >> *80' from the Asterisk CLI >> >> I wanted to confirm this was a suitable fob before going to the grief >> of modifying - it's much more SMT than in the above PDF, and you can't >> actually access the pins on the chip itself as it's under a 'bubble' >> of a ceramic compound. >> >> Any advice would be gratefully received. >> >> -- >> Jim M0HPJ. >> >> > -- Jim Whiteside. From n3fe at repeater.net Fri Jan 6 14:41:19 2012 From: n3fe at repeater.net (Corey Dean) Date: Fri, 6 Jan 2012 09:41:19 -0500 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com>, Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> Is the radio transmitting or is it just transmitting with no audio? Have to tried using the other channel? If you are using the left side have you tried the right side? Corey N3FE ________________________________________ From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Jim Whiteside [jaydublu2002 at gmail.com] Sent: Friday, January 06, 2012 9:29 AM To: app_rpt-users at ohnosec.org Cc: George Csahanin Subject: Re: [App_rpt-users] USB Soundcard Fob - no audio George, Thanks for the reply. txmixa was set to 'composite', txmixb to '0' - changing this also to composite didn't make a difference. Do you know what asterisk*CLI> radio tune txvoice Current txvoice setting on Channel A is 500 Tone output starting on channel usb28233... Tone output ending on channel usb28233... asterisk*CLI> radio tune txtone Current Tx CTCSS modulation setting = 200 Neither of the above did anything. If I copnnect to the node using IaxRpt, *80 ID's fine from that application, but not from the fob. Also I can connect to another node and have a QSO using IaxRpt, but again nothing from the fob. I'm plugging stereo headphones into the fob headphone jack. Interesting advice about using LPT for the GPIO - I might pick your brains about that if I can get the audio working - I'd rather avoid the expense of buying in URI - the shipping is almost as much as the device to the UK, and I'd like the challenge of working it out. Cheers, Jim M0HPJ. On 6 January 2012 13:51, George Csahanin wrote: > > The flashing green light is a good sign. > > That's reporting in as a CM108 for sure. > > From the source code: > #define C108_VENDOR_ID 0x0d8c > #define C108_PRODUCT_ID 0x000c > > In usbradio.conf make sure that txmixa= and txmixb= something other than no > > Example from one of my nodes: > > txmixa=composite ;no,voice,tone,composite,auxvoice > txmixb=composite > > also try (from asterisk command line) "radio tune" > > From my 2360 node: > ... > Tx Voice Level currently set to 350 > Tx Tone Level currently set to 160... > > If those are too low you might not get anything out. > > ALSO...to transmit tone "radio tune txvoice" should put out a tone. > > *80 (default setup) makes the thing ID, and if that isn't setup correctly > might give you no audio. > > Another point is that I no longer modify USB Fobs. The ones I use are > identical to the ones in that pdf. But I use the PC's parallel port lines > for COS in and PTT out, much neater. > I also do DC blocking (the caps) in the radio. > > > > ----- Original Message ----- From: "Jim Whiteside" > To: > Sent: Friday, January 06, 2012 5:34 AM > > Subject: [App_rpt-users] USB Soundcard Fob - no audio > > >> I'm working hard to get a basic AllStar system running, and struggling >> to find a suitable USB Fob to modify (trying to do it on a budget) >> >> I've been unable to get hold of the exact model shown in >> www.qsl.net/kb9mwr/projects/voip/usbfob-119.pdf, but now have several >> of a very similar one with the printed description 'Virtual 7.1Ch >> Sound' and a slightly translucent case. >> >> lsusb reports the device as 'ID 0d8c:000c C-Media Electronics, Inc. >> Audio Adapter.' which I think might be CM119 or similar. >> >> When plugged in the green led starts to flash, but I've not yet been >> able to get any audio out of it - even when running 'rpt fun >> *80' from the Asterisk CLI >> >> I wanted to confirm this was a suitable fob before going to the grief >> of modifying - it's much more SMT than in the above PDF, and you can't >> actually access the pins on the chip itself as it's under a 'bubble' >> of a ceramic compound. >> >> Any advice would be gratefully received. >> >> -- >> Jim M0HPJ. >> >> > -- Jim Whiteside. _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- This message was scanned and is believed to be clean. Click here to report this message as spam. http://simba.repeater.net/cgi-bin/learn-msg.cgi?id=92FD1221F.A8D38 From jaydublu2002 at gmail.com Fri Jan 6 14:48:25 2012 From: jaydublu2002 at gmail.com (Jim Whiteside) Date: Fri, 6 Jan 2012 14:48:25 +0000 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> Message-ID: > Is the radio transmitting or is it just transmitting with no audio? I've not yet modified the fob to take PTT out, and it's not connected to a radio yet - just some headphones (which work) - I wanted to prove the fob worked before progressing further. > Have to tried using the other channel? They're stereo headphones - nothing out of either side. Jim M0HPJ On 6 January 2012 14:41, Corey Dean wrote: > Is the radio transmitting or is it just transmitting with no audio? ?Have to tried using the other channel? ?If you are using the left side have you tried the right side? > > Corey N3FE From n3fe at repeater.net Fri Jan 6 15:16:46 2012 From: n3fe at repeater.net (Corey Dean) Date: Fri, 6 Jan 2012 10:16:46 -0500 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net>, Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE8@exchange.mail.repeater.net> I don't think you are going to hear anything unless they are powered. Try a set of powered computer speakers on the headphone jack and I bet you will hear something. Corey N3FE ________________________________________ From: Jim Whiteside [jaydublu2002 at gmail.com] Sent: Friday, January 06, 2012 9:48 AM To: app_rpt-users at ohnosec.org Cc: Corey Dean Subject: Re: [App_rpt-users] USB Soundcard Fob - no audio > Is the radio transmitting or is it just transmitting with no audio? I've not yet modified the fob to take PTT out, and it's not connected to a radio yet - just some headphones (which work) - I wanted to prove the fob worked before progressing further. > Have to tried using the other channel? They're stereo headphones - nothing out of either side. Jim M0HPJ On 6 January 2012 14:41, Corey Dean wrote: > Is the radio transmitting or is it just transmitting with no audio? Have to tried using the other channel? If you are using the left side have you tried the right side? > > Corey N3FE -- This message was scanned and is believed to be clean. Click here to report this message as spam. http://simba.repeater.net/cgi-bin/learn-msg.cgi?id=CDB16221F.A4461 From jaydublu2002 at gmail.com Fri Jan 6 15:22:55 2012 From: jaydublu2002 at gmail.com (Jim Whiteside) Date: Fri, 6 Jan 2012 15:22:55 +0000 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE8@exchange.mail.repeater.net> References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE8@exchange.mail.repeater.net> Message-ID: Thanks Corey, I just double checked with powered speakers and still no joy. Jim M0HPJ On 6 January 2012 15:16, Corey Dean wrote: > I don't think you are going to hear anything unless they are powered. ?Try a set of powered computer speakers on the headphone jack and I bet you will hear something. > > Corey N3FE > ________________________________________ > From: Jim Whiteside [jaydublu2002 at gmail.com] > Sent: Friday, January 06, 2012 9:48 AM > To: app_rpt-users at ohnosec.org > Cc: Corey Dean > Subject: Re: [App_rpt-users] USB Soundcard Fob - no audio > >> Is the radio transmitting or is it just transmitting with no audio? > > I've not yet modified the fob to take PTT out, and it's not connected > to a radio yet - just some headphones (which work) - I wanted to prove > the fob worked before progressing further. > >> Have to tried using the other channel? > > They're stereo headphones - nothing out of either side. > > Jim M0HPJ > > On 6 January 2012 14:41, Corey Dean wrote: >> Is the radio transmitting or is it just transmitting with no audio? ?Have to tried using the other channel? ?If you are using the left side have you tried the right side? >> >> Corey N3FE > > -- > This message was scanned and is believed to be clean. > Click here to report this message as spam. > http://simba.repeater.net/cgi-bin/learn-msg.cgi?id=CDB16221F.A4461 -- Jim Whiteside. From kb2ear at kb2ear.net Fri Jan 6 17:05:21 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Fri, 6 Jan 2012 12:05:21 -0500 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE8@exchange.mail.repeater.net> Message-ID: <060401cccc95$5feaab70$1fc00250$@kb2ear.net> Take the FOB and plug in to a windows PC. Confirm that it works there using windows media player or something. If not then you have a bad USB FOB. -----Original Message----- From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Jim Whiteside Sent: Friday, January 06, 2012 10:23 AM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] USB Soundcard Fob - no audio Thanks Corey, I just double checked with powered speakers and still no joy. Jim M0HPJ On 6 January 2012 15:16, Corey Dean wrote: > I don't think you are going to hear anything unless they are powered. ?Try a set of powered computer speakers on the headphone jack and I bet you will hear something. > > Corey N3FE > ________________________________________ > From: Jim Whiteside [jaydublu2002 at gmail.com] > Sent: Friday, January 06, 2012 9:48 AM > To: app_rpt-users at ohnosec.org > Cc: Corey Dean > Subject: Re: [App_rpt-users] USB Soundcard Fob - no audio > >> Is the radio transmitting or is it just transmitting with no audio? > > I've not yet modified the fob to take PTT out, and it's not connected > to a radio yet - just some headphones (which work) - I wanted to prove > the fob worked before progressing further. > >> Have to tried using the other channel? > > They're stereo headphones - nothing out of either side. > > Jim M0HPJ > > On 6 January 2012 14:41, Corey Dean wrote: >> Is the radio transmitting or is it just transmitting with no audio? ?Have to tried using the other channel? ?If you are using the left side have you tried the right side? >> >> Corey N3FE > > -- > This message was scanned and is believed to be clean. > Click here to report this message as spam. > http://simba.repeater.net/cgi-bin/learn-msg.cgi?id=CDB16221F.A4461 -- Jim Whiteside. _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From jaydublu2002 at gmail.com Fri Jan 6 17:31:58 2012 From: jaydublu2002 at gmail.com (Jim Whiteside) Date: Fri, 6 Jan 2012 17:31:58 +0000 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: <060401cccc95$5feaab70$1fc00250$@kb2ear.net> References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE8@exchange.mail.repeater.net> <060401cccc95$5feaab70$1fc00250$@kb2ear.net> Message-ID: I now have three of the same type of fob - bought from different suppliers - all work from iTunes on Windoze, none produce any audio from Asterisk, into the same headphones that produced audio from iTunes. Jim M0HPJ. On 6 January 2012 17:05, Scott Weis wrote: > Take the FOB and plug in to a windows PC. Confirm that it works there using > windows media player or something. ?If not then you have a bad USB FOB. > From n3fe at repeater.net Fri Jan 6 17:42:33 2012 From: n3fe at repeater.net (Corey Dean) Date: Fri, 6 Jan 2012 12:42:33 -0500 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE8@exchange.mail.repeater.net> <060401cccc95$5feaab70$1fc00250$@kb2ear.net>, Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDEC@exchange.mail.repeater.net> I buy all of mine from newegg. Never had a bad one yet and everyone of them works. Just do a search for cm108 on their site. I think the are $18.99 US. Corey N3FE ________________________________________ From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Jim Whiteside [jaydublu2002 at gmail.com] Sent: Friday, January 06, 2012 12:31 PM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] USB Soundcard Fob - no audio I now have three of the same type of fob - bought from different suppliers - all work from iTunes on Windoze, none produce any audio from Asterisk, into the same headphones that produced audio from iTunes. Jim M0HPJ. On 6 January 2012 17:05, Scott Weis wrote: > Take the FOB and plug in to a windows PC. Confirm that it works there using > windows media player or something. If not then you have a bad USB FOB. > _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- This message was scanned and is believed to be clean. Click here to report this message as spam. http://simba.repeater.net/cgi-bin/learn-msg.cgi?id=48F57221F.A7B80 From bdboyle at bdboyle.com Fri Jan 6 17:46:43 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Fri, 06 Jan 2012 12:46:43 -0500 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE8@exchange.mail.repeater.net> <060401cccc95$5feaab70$1fc00250$@kb2ear.net> Message-ID: <4F073383.3050901@bdboyle.com> On 1/6/12 12:31 PM, Jim Whiteside wrote: > I now have three of the same type of fob - bought from different > suppliers - all work from iTunes on Windoze, none produce any audio > from Asterisk, into the same headphones that produced audio from > iTunes. > I think you may be SOL in trying to use them, then. There are devices which are known to work (whether they're DMK's URI or other CMedia-based devices is immaterial); these obviously don't based on your description(s). Question to ask yourself (which I do all the time, whether it's ham radio Stuph or building Lotus Europas or....???) is whether your time or cash outlay is worth more. (full disclosure, I hate hitting my head against brick walls...sometimes, it's just cheaper to expend currency than to expend time to get something to work that never will...:)) -- 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 jaydublu2002 at gmail.com Fri Jan 6 18:41:31 2012 From: jaydublu2002 at gmail.com (Jim Whiteside) Date: Fri, 6 Jan 2012 18:41:31 +0000 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDEC@exchange.mail.repeater.net> References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE8@exchange.mail.repeater.net> <060401cccc95$5feaab70$1fc00250$@kb2ear.net> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDEC@exchange.mail.repeater.net> Message-ID: Many thanks for that info Corey - I've just found someone in the UK selling that model (eBuyer.com) at ?10.85. I'll let you know how I get on. Jim M0HPJ. On 6 January 2012 17:42, Corey Dean wrote: > I buy all of mine from newegg. ?Never had a bad one yet and everyone of them works. ?Just do a search for cm108 on their site. ?I think the are $18.99 US. > > Corey N3FE > ________________________________________ > From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Jim Whiteside [jaydublu2002 at gmail.com] > Sent: Friday, January 06, 2012 12:31 PM > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] USB Soundcard Fob - no audio > > I now have three of the same type of fob - bought from different > suppliers - all work from iTunes on Windoze, none produce any audio > from Asterisk, into the same headphones that produced audio from > iTunes. > > Jim M0HPJ. > > On 6 January 2012 17:05, Scott Weis wrote: >> Take the FOB and plug in to a windows PC. Confirm that it works there using >> windows media player or something. ?If not then you have a bad USB FOB. >> > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -- > This message was scanned and is believed to be clean. > Click here to report this message as spam. > http://simba.repeater.net/cgi-bin/learn-msg.cgi?id=48F57221F.A7B80 -- Jim Whiteside. From k6kya at hokeynet.net Sat Jan 7 10:02:23 2012 From: k6kya at hokeynet.net (Steve Passmore) Date: Sat, 07 Jan 2012 02:02:23 -0800 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: References: Message-ID: <4F08182F.1080509@hokeynet.net> I don't think this is your problem since the green led is flashing but make sure you've updated to the latest SVN On 1/6/2012 3:34, Jim Whiteside wrote: > I'm working hard to get a basic AllStar system running, and struggling > to find a suitable USB Fob to modify (trying to do it on a budget) > > I've been unable to get hold of the exact model shown in > www.qsl.net/kb9mwr/projects/voip/usbfob-119.pdf, but now have several > of a very similar one with the printed description 'Virtual 7.1Ch > Sound' and a slightly translucent case. > > lsusb reports the device as 'ID 0d8c:000c C-Media Electronics, Inc. > Audio Adapter.' which I think might be CM119 or similar. > > When plugged in the green led starts to flash, but I've not yet been > able to get any audio out of it - even when running 'rpt fun > *80' from the Asterisk CLI > > I wanted to confirm this was a suitable fob before going to the grief > of modifying - it's much more SMT than in the above PDF, and you can't > actually access the pins on the chip itself as it's under a 'bubble' > of a ceramic compound. > > Any advice would be gratefully received. > From vencl at att.net Sat Jan 7 17:29:26 2012 From: vencl at att.net (Lu Vencl) Date: Sat, 7 Jan 2012 12:29:26 -0500 Subject: [App_rpt-users] Allstar issues this AM? In-Reply-To: <69748F9F-260E-4925-ACBC-948B2C1C0877@me.com> References: <005401ccc0a6$f4919ef0$ddb4dcd0$@net> <007401ccc0a7$bcd0e560$3672b020$@net> <46F46A34-C628-4EA2-B3B0-4CF60B490EAB@att.net> <69748F9F-260E-4925-ACBC-948B2C1C0877@me.com> Message-ID: <051901cccd61$e7c4add0$b74e0970$@net> Looks it happening again.. Anyone else having this issue? Started about 45 minutes ago. I can't make connection to and from the FLA hub. I had Ron K4GET try IAXRPT and that works. But after reboots, rpt reload etc, I can't connect.. I can ping google etc so I know I have internet connection. Lu KA4EPS -----Original Message----- From: Matt Roberts [mailto:n9gmr at me.com] Sent: Thursday, December 22, 2011 3:00 PM To: Lu Vencl Cc: George Csahanin; app_rpt mailing list Subject: Re: [App_rpt-users] Allstar issues this AM? On Dec 22, 2011, at 2:31 PM, Lu Vencl wrote: > Were those nodes on AT&T dsl? All of mine were but then cleared up later. According to Matt this all started about 6 am et I was connected to 27892 and at 6:00 A.M. the connection dropped. I thought it was a problem with my repeater, or a timeout had been set. I'm using Bright HOuse cable internet. Matt Roberts n9gmr at me.com Call Sign N9GMR IRLP 4515 EchoLink 640860 Allstar 28142 From tim.sawyer at me.com Sun Jan 8 00:41:12 2012 From: tim.sawyer at me.com (Tim Sawyer) Date: Sat, 07 Jan 2012 16:41:12 -0800 Subject: [App_rpt-users] SyntorX w/ XCAT In-Reply-To: <1325636484.3601.8.camel@localhost> References: <4F03623A.5010702@morell.us> <4f03682a.4a9bec0a.25b6.ffff8625@mx.google.com> <4F037C15.2040002@morell.us> <1325636484.3601.8.camel@localhost> Message-ID: <6ED7B0C0-0CD3-4046-A570-D2FD5F75F64E@me.com> You'll really like the XCAT/Syntor/Allstar set up. We have remote bases on 10, 6, 2 meters, and UHF. Bring out the COS line to the URI. -- Tim :wq On Jan 3, 2012, at 4:21 PM, Robert Poff wrote: > I'm putting together a Syntor X w/XCAT as a frequency agile remote base. > > I see the XCAT PC software recognizing the COS state as sent from the XCAT CI-V. > Does app_rpt use that CI-V statement? Or, do I need to bring COS out to the URI? > > Any other hints, or suggestions on this project are appreciated. > > -- > Robert A. Poff > Loganville, PA > > WB3AWJ - Allstar 27784 > Powered by Linux > > > _______________________________________________ > 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 petem001 at hotmail.com Sun Jan 8 02:31:39 2012 From: petem001 at hotmail.com (pete M) Date: Sat, 7 Jan 2012 21:31:39 -0500 Subject: [App_rpt-users] app_rpt ona thin client Message-ID: I want to use a small thin client to use as repeater controler. But cant use the acid distro cause My hd is only 1 gig. I am looking at some small distro to install on the thin client (a t5630 from HP) and wonder what I need exactly to compile asterisk and app_rpt on the machine.. anyone can help a bit? Pierre VE2PF -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Sun Jan 8 04:18:47 2012 From: tim.sawyer at me.com (Tim Sawyer) Date: Sat, 07 Jan 2012 20:18:47 -0800 Subject: [App_rpt-users] recent upgragdes to chan_voter In-Reply-To: References: Message-ID: <81945DA6-AC2A-419A-B085-720A332D3D9E@me.com> Here are a few examples of the new voter priority CLI. voter prio instance site disable ; (or -1) Makes site ineligible for voting voter prio instance site off ; (or -2) Remove any priority, make eligible voter prio instance site 5 ; vote this site if there is any signal and no higher priority voter prio instance ; show priority of all sites instance is the node number of the voter instance site is the name (not case sensitive) as defined in voter.conf -- Tim :wq On Jan 4, 2012, at 2:21 PM, Jim Duuuude wrote: > The chan_voter channel driver that goes along with app_rpt has a couple of new > features (current in SVN). > > The 'voter test' CLI command now takes an instance id and no longer supports > modes < 0 (force vote for testing purposes). It still supports the 'torture' tests > that have always existed. > > A config file parameter (on a client-by-client basis, in the client string specification) > called 'prio=XXX' has been added. This allow specification of a default 'prio level' > for the specified client. > > There is a new 'voter prio' CLI command. This specifies (or allows query of) > a value to override the config-file specified 'priority level' for the specified > voter client. > > An effective priority level is calculated for each client, based upon the level specified > in the config file, and the override level if specified from a CLI command. > > For a 'voting' (GPS-timing based) client, this allows 'groups' of clients with higher > priority levels to be 'favored' over 'groups' of clients with lower priority levels > when making the 'voting' decision. > > For a 'non-voting' (non-GPS-timing based) client, it provides a means whereby > if a signal is received from a 'non-voting' client with a priority > 1, the one with > the highest priority 'takes over' the channel's audio (does not include the voted > audio or other 'non-voting' clients not at this priority level). This could potentially > be useful for implementing some sort of control station hierarchy or something of > that nature. > > For either type of client, setting its priority to -1 make it ineligible for consideration > (locks its out entirely). > > JIM WB6NIL > > > > _______________________________________________ > 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 telesistant at hotmail.com Sun Jan 8 04:31:54 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Sat, 7 Jan 2012 20:31:54 -0800 Subject: [App_rpt-users] recent upgragdes to chan_voter In-Reply-To: <81945DA6-AC2A-419A-B085-720A332D3D9E@me.com> References: , <81945DA6-AC2A-419A-B085-720A332D3D9E@me.com> Message-ID: actually "disable" and "off" are both equivalent to -2. to make site ineligible for voting you have to use -1. JIM WB6NIL From: tim.sawyer at me.com Date: Sat, 7 Jan 2012 20:18:47 -0800 To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] recent upgragdes to chan_voter Here are a few examples of the new voter priority CLI. voter prio instance site disable ; (or -1) Makes site ineligible for voting voter prio instance site off ; (or -2) Remove any priority, make eligiblevoter prio instance site 5 ; vote this site if there is any signal and no higher priority voter prio instance ; show priority of all sites instance is the node number of the voter instancesite is the name (not case sensitive) as defined in voter.conf -- Tim :wq On Jan 4, 2012, at 2:21 PM, Jim Duuuude wrote:The chan_voter channel driver that goes along with app_rpt has a couple of new features (current in SVN). The 'voter test' CLI command now takes an instance id and no longer supports modes < 0 (force vote for testing purposes). It still supports the 'torture' tests that have always existed. A config file parameter (on a client-by-client basis, in the client string specification) called 'prio=XXX' has been added. This allow specification of a default 'prio level' for the specified client. There is a new 'voter prio' CLI command. This specifies (or allows query of) a value to override the config-file specified 'priority level' for the specified voter client. An effective priority level is calculated for each client, based upon the level specified in the config file, and the override level if specified from a CLI command. For a 'voting' (GPS-timing based) client, this allows 'groups' of clients with higher priority levels to be 'favored' over 'groups' of clients with lower priority levels when making the 'voting' decision. For a 'non-voting' (non-GPS-timing based) client, it provides a means whereby if a signal is received from a 'non-voting' client with a priority > 1, the one with the highest priority 'takes over' the channel's audio (does not include the voted audio or other 'non-voting' clients not at this priority level). This could potentially be useful for implementing some sort of control station hierarchy or something of that nature. For either type of client, setting its priority to -1 make it ineligible for consideration (locks its out entirely). JIM WB6NIL _______________________________________________ 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 wb3awj at comcast.net Sun Jan 8 05:50:48 2012 From: wb3awj at comcast.net (Robert Poff) Date: Sun, 08 Jan 2012 00:50:48 -0500 Subject: [App_rpt-users] SyntorX w/ XCAT In-Reply-To: <6ED7B0C0-0CD3-4046-A570-D2FD5F75F64E@me.com> References: <4F03623A.5010702@morell.us> <4f03682a.4a9bec0a.25b6.ffff8625@mx.google.com> <4F037C15.2040002@morell.us> <1325636484.3601.8.camel@localhost> <6ED7B0C0-0CD3-4046-A570-D2FD5F75F64E@me.com> Message-ID: <1326001848.24563.9.camel@localhost> Thanks Tim, I suspected that but wasn't sure. I've been playing with the radio on the workbench attached to an antenna. Pretty nifty. I've always been more of a GE type though...... Haven't started the interfacing yet. I have a junk control cable coming to scavenge the radio connector from. Sort of thinking of building a mini-control head in the shell along with the signals to/from the URI. That way I can keep the control group I now have for later projects. This thing is going to on a Station Master (and actually cut for 2 meters) 200' up a tower where the ground height above average is about 375'. Gonna be fun! -- Robert A. Poff Loganville, PA WB3AWJ - Allstar 27784 Powered by Linux On Sat, 2012-01-07 at 16:41 -0800, Tim Sawyer wrote: > You'll really like the XCAT/Syntor/Allstar set up. We have remote > bases on 10, 6, 2 meters, and UHF. > > > > Bring out the COS line to the URI. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From petem001 at hotmail.com Sun Jan 8 05:51:12 2012 From: petem001 at hotmail.com (pete M) Date: Sun, 8 Jan 2012 00:51:12 -0500 Subject: [App_rpt-users] cant download configuration file Message-ID: I just installed an allstar server (with acid) and I want it to download its configuration file from the allstar server But when it come to it it fail with: Failed to download configuration list I did : cd /tmp curl -L https://allstarlink.org/config/portalconfig.sh -o foo.sh sh foo.sh ; rm foo.shBut its allways the same thing, it can get the foo.sh script from curl, but it will fail to download.. anyone can help? Pierre VE2PF -------------- next part -------------- An HTML attachment was scrubbed... URL: From jbarber at pinnaclevoicesystems.com Sun Jan 8 19:21:34 2012 From: jbarber at pinnaclevoicesystems.com (John Barber) Date: Sun, 8 Jan 2012 14:21:34 -0500 Subject: [App_rpt-users] Dms engineering uri tuning issues Message-ID: I have installed acid and am trying to do radio tune. When I run "radio tune rxnoise" the highest I can get is 25615. I am using a Motorola cm400. When I run "radio tune txvoice" I can hear a 1 kHz tone but it is very faint. I am looking for a way to correct both of these issues John Barber Systems Engineer Pinnacle Voice & Data Systems 317-497-1026 From specialq.que at ntlworld.com Mon Jan 9 14:10:13 2012 From: specialq.que at ntlworld.com (DougH) Date: Mon, 9 Jan 2012 14:10:13 -0000 Subject: [App_rpt-users] Registration Fails Message-ID: My nodes 2253 and 27243 been down for some time. New modem / router installed. Have forwarded port 4569 to each asterik computer in turn, both fail. Get message that there is a registration problem and XIPRadio reports no registration for peer 'gui' when attempting to connect. Connections are possible but inbound audio only. Found reference to registration failure indicating that 4569 may need to be forced and to contact admin. The modem / router is a Netgear CG3101 'super hub'. Do the symptoms fit the problem and if so could 4569 be 'forced' please? Thank you, Doug - MM0BJA From kd8b at thebades.net Mon Jan 9 14:25:43 2012 From: kd8b at thebades.net (Doug Bade) Date: Mon, 9 Jan 2012 09:25:43 -0500 Subject: [App_rpt-users] Registration Fails In-Reply-To: References: Message-ID: <006c01ccceda$945ae900$bd10bb00$@thebades.net> They both seem to be online as far as the allstar registry is concerned... I do not think you can port forward 4569 to 2 different computers inside a firewall router unless you have 2 outside IP addresses. From an IP perspective it is not a god plan if possible at all.. You need separate ports for them if you plan to need TWO computers, or run both repeaters on One computer.... at least as far as I have seen.. Doug KD8B -----Original Message----- From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of DougH Sent: Monday, January 09, 2012 9:10 AM To: App_rpt-users at ohnosec.org Subject: [App_rpt-users] Registration Fails My nodes 2253 and 27243 been down for some time. New modem / router installed. Have forwarded port 4569 to each asterik computer in turn, both fail. Get message that there is a registration problem and XIPRadio reports no registration for peer 'gui' when attempting to connect. Connections are possible but inbound audio only. Found reference to registration failure indicating that 4569 may need to be forced and to contact admin. The modem / router is a Netgear CG3101 'super hub'. Do the symptoms fit the problem and if so could 4569 be 'forced' please? Thank you, Doug - MM0BJA _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From specialq.que at ntlworld.com Mon Jan 9 15:16:15 2012 From: specialq.que at ntlworld.com (DougH) Date: Mon, 9 Jan 2012 15:16:15 -0000 Subject: [App_rpt-users] Registration Fails In-Reply-To: <006c01ccceda$945ae900$bd10bb00$@thebades.net> References: <006c01ccceda$945ae900$bd10bb00$@thebades.net> Message-ID: <9DE40AFCADE8445EAA4D7D98547E46EC@DougLaptop2> OK thank you Mark / Doug. Yes understand the port forwarding, probably did not explain sufficiently but tried both machines separately. Anyway looks like some other problem. Will play about some more. Been two or more years since the nodes were up and I've forgotten most of this stuff. The machines are both on and running asterisk but only one has 4569 forwarded.....why are they both showing on the system I wonder. Back to the drawing board. Your assist appreciated. Regards, Doug - MM0BJA ----- Original Message ----- From: "Doug Bade" To: "'DougH'" ; Sent: Monday, January 09, 2012 2:25 PM Subject: RE: [App_rpt-users] Registration Fails > They both seem to be online as far as the allstar registry is concerned... > I do not think you can port forward 4569 to 2 different computers inside a > firewall router unless you have 2 outside IP addresses. From an IP > perspective it is not a god plan if possible at all.. You need separate > ports for them if you plan to need TWO computers, or run both repeaters on > One computer.... at least as far as I have seen.. > > Doug > KD8B > > -----Original Message----- > From: app_rpt-users-bounces at ohnosec.org > [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of DougH > Sent: Monday, January 09, 2012 9:10 AM > To: App_rpt-users at ohnosec.org > Subject: [App_rpt-users] Registration Fails > > My nodes 2253 and 27243 been down for some time. New modem / router > installed. Have forwarded port 4569 to each asterik computer in turn, both > fail. Get message that there is a registration problem and XIPRadio > reports > no registration for peer 'gui' when attempting to connect. > > Connections are possible but inbound audio only. > > Found reference to registration failure indicating that 4569 may need to > be > forced and to contact admin. The modem / router is a Netgear CG3101 'super > hub'. > > Do the symptoms fit the problem and if so could 4569 be 'forced' please? > > Thank you, > Doug - MM0BJA > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > From monty at ke7jvx.com Mon Jan 9 15:17:37 2012 From: monty at ke7jvx.com (Monty) Date: Mon, 9 Jan 2012 08:17:37 -0700 Subject: [App_rpt-users] Registration Fails In-Reply-To: References: Message-ID: Hi Doug, Sounds like you do not have the [gui] user in your iax.conf. I don't have the config in front of me right now, maybe someone can post. You also need to add a stanza to your extensions.conf. On Jan 9, 2012 7:10 AM, "DougH" wrote: > My nodes 2253 and 27243 been down for some time. New modem / router > installed. Have forwarded port 4569 to each asterik computer in turn, both > fail. Get message that there is a registration problem and XIPRadio reports > no registration for peer 'gui' when attempting to connect. > > Connections are possible but inbound audio only. > > Found reference to registration failure indicating that 4569 may need to > be forced and to contact admin. The modem / router is a Netgear CG3101 > 'super hub'. > > Do the symptoms fit the problem and if so could 4569 be 'forced' please? > > Thank you, > Doug - MM0BJA > ______________________________**_________________ > 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 dshaw at ke6upi.com Mon Jan 9 15:45:17 2012 From: dshaw at ke6upi.com (David KE6UPI) Date: Mon, 9 Jan 2012 07:45:17 -0800 Subject: [App_rpt-users] Registration Fails In-Reply-To: <9DE40AFCADE8445EAA4D7D98547E46EC@DougLaptop2> References: <006c01ccceda$945ae900$bd10bb00$@thebades.net> <9DE40AFCADE8445EAA4D7D98547E46EC@DougLaptop2> Message-ID: At the Asterisk command line "asterisk -vr" try and connect to 2000 hub. "rpt fun 2253 *32000" What errors are you getting. I would do this with only one server/node on line and after you wait about 30 minutes after your server/node is started. This will give it time to register and for all the servers/nodes to download a node list with your node listed. Also check that iax.conf and that you have used the new register statement without a "A" in front of your node number. You shouldn't need port forwarding for out bound connections. David On Mon, Jan 9, 2012 at 7:16 AM, DougH wrote: > OK thank you Mark / Doug. Yes understand the port forwarding, probably did > not explain sufficiently but tried both machines separately. Anyway looks > like some other problem. Will play about some more. Been two or more years > since the nodes were up and I've forgotten most of this stuff. The machines > are both on and running asterisk but only one has 4569 forwarded.....why > are > they both showing on the system I wonder. Back to the drawing board. > > Your assist appreciated. > > Regards, > Doug - MM0BJA > > ----- Original Message ----- From: "Doug Bade" > To: "'DougH'" ; > Sent: Monday, January 09, 2012 2:25 PM > Subject: RE: [App_rpt-users] Registration Fails > > > > They both seem to be online as far as the allstar registry is concerned... >> I do not think you can port forward 4569 to 2 different computers inside a >> firewall router unless you have 2 outside IP addresses. From an IP >> perspective it is not a god plan if possible at all.. You need separate >> ports for them if you plan to need TWO computers, or run both repeaters on >> One computer.... at least as far as I have seen.. >> >> Doug >> KD8B >> >> -----Original Message----- >> From: app_rpt-users-bounces at ohnosec.**org >> [mailto:app_rpt-users-bounces@**ohnosec.org] >> On Behalf Of DougH >> Sent: Monday, January 09, 2012 9:10 AM >> To: App_rpt-users at ohnosec.org >> Subject: [App_rpt-users] Registration Fails >> >> My nodes 2253 and 27243 been down for some time. New modem / router >> installed. Have forwarded port 4569 to each asterik computer in turn, both >> fail. Get message that there is a registration problem and XIPRadio >> reports >> no registration for peer 'gui' when attempting to connect. >> >> Connections are possible but inbound audio only. >> >> Found reference to registration failure indicating that 4569 may need to >> be >> forced and to contact admin. The modem / router is a Netgear CG3101 'super >> hub'. >> >> Do the symptoms fit the problem and if so could 4569 be 'forced' please? >> >> Thank you, >> Doug - MM0BJA >> >> ______________________________**_________________ >> 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 specialq.que at ntlworld.com Tue Jan 10 12:00:58 2012 From: specialq.que at ntlworld.com (DougH) Date: Tue, 10 Jan 2012 12:00:58 -0000 Subject: [App_rpt-users] Registartion failure -To those who assisted.... Message-ID: ....in my 'Registration Failure' question. Thank you.....situation has been resolved due to a combination of your inputs. Help much appreciated, Regards, Doug - MM0BJA From kc9gqr at gmail.com Tue Jan 10 17:36:14 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Tue, 10 Jan 2012 11:36:14 -0600 Subject: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20 In-Reply-To: References: Message-ID: ANy easier way to set up ALL STAR besides Linux command line.? I am just not any good with LInux command line i guess Anyone in the IL area mind setting up a computer for me? On Tue, Jan 10, 2012 at 11:00 AM, 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. Registartion failure -To those who assisted.... (DougH) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 10 Jan 2012 12:00:58 -0000 > From: "DougH" > To: > Subject: [App_rpt-users] Registartion failure -To those who > assisted.... > Message-ID: > Content-Type: text/plain; format=flowed; charset="iso-8859-1"; > reply-type=original > > ....in my 'Registration Failure' question. Thank you.....situation has been > resolved due to a combination of your inputs. > > Help much appreciated, > > Regards, > Doug - MM0BJA > > > > ------------------------------ > > _______________________________________________ > 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 35, Issue 20 > ********************************************* > -------------- next part -------------- An HTML attachment was scrubbed... URL: From w5bi at amsat.org Tue Jan 10 18:25:42 2012 From: w5bi at amsat.org (GARY BONEBRAKE) Date: Tue, 10 Jan 2012 12:25:42 -0600 Subject: [App_rpt-users] CTCSS functions with RTCM Message-ID: RTCM in "failover mode" - will the RTCM decode CTCSS or will I have to provide the CTCSS discrete input? Also, what DTMF commands are provided in this mode? Thanks Gary W5BI -------------- next part -------------- An HTML attachment was scrubbed... URL: From pete.elke at esquared.com Tue Jan 10 18:49:07 2012 From: pete.elke at esquared.com (Peter Elke) Date: Tue, 10 Jan 2012 18:49:07 -0000 Subject: [App_rpt-users] CTCSS functions with RTCM In-Reply-To: References: Message-ID: <8035B62A7B044D4B81015D5C49D1627D699BC6@webmail.esquared.net> Hi Gary, Only encode, the receiver will have to decode just like it does normally in non-failover mode. No DTMF local functions. Pete/wi6h From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of GARY BONEBRAKE Sent: Tuesday, January 10, 2012 10:26 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] CTCSS functions with RTCM RTCM in "failover mode" - will the RTCM decode CTCSS or will I have to provide the CTCSS discrete input? Also, what DTMF commands are provided in this mode? Thanks Gary W5BI -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc9gqr at gmail.com Tue Jan 10 19:24:10 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Tue, 10 Jan 2012 13:24:10 -0600 Subject: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20 In-Reply-To: References: Message-ID: I thought i would get the server set up and then get the USB to radio interface.. what is the best and cheap one to buy. I don't want to roll my own as if everything works out well we will move the unit to the repeater site in the Spring. But for now i was going to put it on a simplex node. I just didn't want to buy the adapter then stuck with it with no way to configure the server.. for the time being i will hook it to the ft2600 yaesu .. any thoughts on usb to radio interface? On Tue, Jan 10, 2012 at 11:00 AM, 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. Registartion failure -To those who assisted.... (DougH) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 10 Jan 2012 12:00:58 -0000 > From: "DougH" > To: > Subject: [App_rpt-users] Registartion failure -To those who > assisted.... > Message-ID: > Content-Type: text/plain; format=flowed; charset="iso-8859-1"; > reply-type=original > > ....in my 'Registration Failure' question. Thank you.....situation has been > resolved due to a combination of your inputs. > > Help much appreciated, > > Regards, > Doug - MM0BJA > > > > ------------------------------ > > _______________________________________________ > 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 35, Issue 20 > ********************************************* > -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Tue Jan 10 19:33:56 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Tue, 10 Jan 2012 11:33:56 -0800 Subject: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20 In-Reply-To: References: , Message-ID: I think that would definitely be the DMK Engineering URI. JIM WB6NIL Date: Tue, 10 Jan 2012 13:24:10 -0600 From: kc9gqr at gmail.com To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20 I thought i would get the server set up and then get the USB to radio interface.. what is the best and cheap one to buy. I don't want to roll my own as if everything works out well we will move the unit to the repeater site in the Spring. But for now i was going to put it on a simplex node. I just didn't want to buy the adapter then stuck with it with no way to configure the server.. for the time being i will hook it to the ft2600 yaesu .. any thoughts on usb to radio interface? On Tue, Jan 10, 2012 at 11:00 AM, 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. Registartion failure -To those who assisted.... (DougH) ---------------------------------------------------------------------- Message: 1 Date: Tue, 10 Jan 2012 12:00:58 -0000 From: "DougH" To: Subject: [App_rpt-users] Registartion failure -To those who assisted.... Message-ID: Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original ....in my 'Registration Failure' question. Thank you.....situation has been resolved due to a combination of your inputs. Help much appreciated, Regards, Doug - MM0BJA ------------------------------ _______________________________________________ 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 35, Issue 20 ********************************************* _______________________________________________ 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 steve at michiganbroadband.com Thu Jan 12 15:05:16 2012 From: steve at michiganbroadband.com (Steve Gladden) Date: Thu, 12 Jan 2012 10:05:16 -0500 Subject: [App_rpt-users] USB Sucks Yay! The Sequel! Message-ID: My understanding is that you can use *any* digium FXO/FXS (and possibly a less expensive clone) card it will work well and skrew the piece of crap USB interfaces. I further understand/think that it *MUST* be a two port card with both FXO and FXS present is this true? Or can you somehow get away with a single port FXO or FXS card? Single port cards are cost comparative to a ready made DRI USB which is --->>>>>*NOT*<<<<<--- production remote repeater site quality/capable and good only for testing experimenting etc. Even if such a card is TWICE the price of a DMK URI.. This is the way to go for a production system.. Which is *ALL* that I would ever run at a site.. And home I'll still maybe d*** around with USB interfaces which truly suck with app_rpt in ALL of my testing I've done in 3 years. Am I clear in this understanding? Any suggestions on cards/Interfaces that work well? Any that don't?? stick with Digium? I should have asked this bundle of questions 2 years ago *sigh* I realize newer boards will not have PCI slots.. "USB sucks + is unrealiable" -->as I have been assured both through my own testing and the developers of app_rpt. If you tell me you have a perfectly working sytem I'll have you do *my test* sit & listen locally at the system to the TX on continuously with PL encode and you *will* hear the audio pops & interruptions in the trasnmitted audio that I am confident are present in ALL usb installed systems :-).. but has been proven liveable for most. If you absolutely have to go with USB for whatever reason beagleboard etc.. small low power controller then it's time for a different controller if you require production/site performance & reliability. Michigan Broadband Systems Connecting Your Business! +1 734.527.7150 Direct +1 248.327.4389 Fax steve at michiganbroadband.com www.michiganbroadband.com ________________________________ From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney [kc9gqr at gmail.com] Sent: Tuesday, January 10, 2012 2:24 PM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20 I thought i would get the server set up and then get the USB to radio interface.. what is the best and cheap one to buy. I don't want to roll my own as if everything works out well we will move the unit to the repeater site in the Spring. But for now i was going to put it on a simplex node. I just didn't want to buy the adapter then stuck with it with no way to configure the server.. for the time being i will hook it to the ft2600 yaesu .. any thoughts on usb to radio interface? On Tue, Jan 10, 2012 at 11:00 AM, > 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. Registartion failure -To those who assisted.... (DougH) ---------------------------------------------------------------------- Message: 1 Date: Tue, 10 Jan 2012 12:00:58 -0000 From: "DougH" > To: > Subject: [App_rpt-users] Registartion failure -To those who assisted.... Message-ID: Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original ....in my 'Registration Failure' question. Thank you.....situation has been resolved due to a combination of your inputs. Help much appreciated, Regards, Doug - MM0BJA ------------------------------ _______________________________________________ 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 35, Issue 20 ********************************************* -------------- next part -------------- An HTML attachment was scrubbed... URL: From dshaw at ke6upi.com Thu Jan 12 15:38:51 2012 From: dshaw at ke6upi.com (David KE6UPI) Date: Thu, 12 Jan 2012 07:38:51 -0800 Subject: [App_rpt-users] USB Sucks Yay! The Sequel! In-Reply-To: References: Message-ID: Steve, I think you should design a new PCI card for app-rpt radio world. I use the 4 port PCI card my self. Works great. Have fun designing and bring your new product to the radio market. Oh by the way my other nodes use DMK URI and they work just fine. A link to the 4 port cards. I don't think they are for sale anymore. http://ohnosec.org/drupal/node/135 Good luck and *God's speed*, (Because I want it tomorrow) David On Thu, Jan 12, 2012 at 7:05 AM, Steve Gladden wrote: > My understanding is that you can use *any* digium FXO/FXS (and possibly > a less expensive clone) card it will work well and skrew the piece of crap > USB interfaces. > I further understand/think that it *MUST* be a two port card with both FXO > and FXS present is this true? > Or can you somehow get away with a single port FXO or FXS card? > Single port cards are cost comparative to a ready made DRI USB which is > --->>>>>*NOT*<<<<<--- production remote repeater site quality/capable and > good only for testing experimenting etc. > Even if such a card is TWICE the price of a DMK URI.. This is the way to > go for a production system.. > Which is *ALL* that I would ever run at a site.. > And home I'll still maybe d*** around with USB interfaces which truly suck > with app_rpt in ALL of my testing I've done in 3 years. > > Am I clear in this understanding? > > > > Any suggestions on cards/Interfaces that work well? > > Any that don't?? stick with Digium? > > I should have asked this bundle of questions 2 years ago *sigh* > > > > I realize newer boards will not have PCI slots.. > "USB sucks + is unrealiable" > > -->as I have been assured both through my own testing and the developers > of app_rpt. > > If you tell me you have a perfectly working sytem I'll have you do *my > test* sit & listen locally at the system to the TX on continuously with PL > encode and you *will* hear the audio pops & interruptions in the > trasnmitted audio that I am confident are present in ALL usb installed > systems :-).. but has been proven liveable for most. > > If you absolutely have to go with USB for whatever reason beagleboard > etc.. small low power controller > then it's time for a different controller if you require production/site > performance & reliability. > > > > > > > > Michigan Broadband Systems > Connecting Your Business! > > > > +1 734.527.7150 Direct > +1 248.327.4389 Fax > steve at michiganbroadband.com > www.michiganbroadband.com > > ------------------------------ > *From:* app_rpt-users-bounces at ohnosec.org [ > app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney [ > kc9gqr at gmail.com] > *Sent:* Tuesday, January 10, 2012 2:24 PM > *To:* app_rpt-users at ohnosec.org > *Subject:* Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20 > > I thought i would get the server set up and then get the USB to radio > interface.. what is the best and cheap one to buy. I don't want to roll my > own as if everything works out well we will move the unit to the repeater > site in the Spring. But for now i was going to put it on a simplex node. > I just didn't want to buy the adapter then stuck with it with no way to > configure the server.. for the time being i will hook it to the ft2600 > yaesu .. > > any thoughts on usb to radio interface? > > On Tue, Jan 10, 2012 at 11:00 AM, 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. Registartion failure -To those who assisted.... (DougH) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Tue, 10 Jan 2012 12:00:58 -0000 >> From: "DougH" >> To: >> Subject: [App_rpt-users] Registartion failure -To those who >> assisted.... >> Message-ID: >> Content-Type: text/plain; format=flowed; charset="iso-8859-1"; >> reply-type=original >> >> ....in my 'Registration Failure' question. Thank you.....situation has >> been >> resolved due to a combination of your inputs. >> >> Help much appreciated, >> >> Regards, >> Doug - MM0BJA >> >> >> >> ------------------------------ >> >> _______________________________________________ >> 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 35, Issue 20 >> ********************************************* >> > > > _______________________________________________ > 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 kd8b at thebades.net Thu Jan 12 15:49:08 2012 From: kd8b at thebades.net (Doug Bade) Date: Thu, 12 Jan 2012 10:49:08 -0500 Subject: [App_rpt-users] USB Sucks Yay! The Sequel! In-Reply-To: References: Message-ID: <009001ccd141$b954e5d0$2bfeb170$@thebades.net> I would have to say that the issue discussed with USB drops/pops/clicks is NOT an issue that "has to be". I use USB sound interfaces (CM108) for my D-Star repeater(s) running dstarrepeatercontroller software. One of my system production tests is to generate a dtmf character from my dstar portable and listen to the recovered dtmf on the far end. If you are familiar with AMBE and dtmf issues, the AMBE codec handles dtmf as a command string and sends it through as a command sequence to be regenerated on the far end. If there is *any* breaks in the data stream encoded through the usb sound fob, it will be manifested in a break in the dtmf recovered presentation on the far end. In many setups along the way, this was a problem, however it *CAN* be tweaked and time slicing corrected to allow no drops. I have a production system that does not have drops for sustained PTT's up to/in excess of 3 minutes of a sustained dtmf character that are clean for that time frame. The data rate of Dstar would seem to exceed any analog presentation that Allstar may build. So. It CAN work, it may be that some tweaking of Allstar and/or the linux code may need to happen, but to say with certainty that sound fob repeaters are not production quality is unfair at least in my world. As I can demonstrate otherwise.. uptimes in excess of months are typical and no USB hangs or dropson both of my dstar GMSK repeaters I would also suggest that certain issues may be present in USB sound fob systems of Allstar that have a problem I/We detected in the dstar world of implementation that may have to do with some issues in usb sound implementation. All CM1xx chipsets were designed for telephony and as such have a sidetone function built in. There is an internal audio loop from the mic side to the headset side. It is designed to provide comfort audio to your ear while you are talking but in our repeater world provides a direct, low level direct analog loop between rx audio and the transmitter. Depending on series resistance vales and coupling, these levels can become an issue, it definitely is to GMSK modem data of our dstar implementations.. What happens is you have 2 loops out of time, one direct and one through the computer dsp. This is problematical in things that are sensitive to phase shift and can result in cancelleation etc. A quick and dirty solution is to use 2 sound fobs for repeating. as one for tx and one for rx. The circuits are isolated and no dual audio path.. Using 2 DMK URI's might be cost prohibitive for the most part. but sound fobs can replace maybe one end or the other on TX or RX. I am not sure how the Allstar implementation would handle that but it could be done,as my USB URI implementations for Allstar are working quite well. Where I am going with all this is "glitchiness" of the systems may be resolvable issues as we HAVE resolutions in dstar. so flat out bad rapping sound fobs is maybe not really appropriate.. A significant issue and problem using FXO/FXS cards is you need to deal with line supervision issues and ptt/cor which are not part of the FXO FXS "normal" implementation. It can be done but I did some work on a system for work where we tried to use a pair of Multitech FXO/FXS units to link 2 radios and it was a lot more cumbersome than was worth.. We ended up opting for Multitech's E&M versions as audio and signaling are not directly linked and E&M signaling translates to PTT and COR a lot easier. CTCSS is still going to be an issue as that would be out-of-band audio for Telco class FXO/FXS/E&M hardware. E&M is used for microwave analog radio linking because it foots the bill very well.. but it does not carry CTCSS either way directly. Doug KD8B From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Steve Gladden Sent: Thursday, January 12, 2012 10:05 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] USB Sucks Yay! The Sequel! My understanding is that you can use *any* digium FXO/FXS (and possibly a less expensive clone) card it will work well and skrew the piece of crap USB interfaces. I further understand/think that it *MUST* be a two port card with both FXO and FXS present is this true? Or can you somehow get away with a single port FXO or FXS card? Single port cards are cost comparative to a ready made DRI USB which is --->>>>>*NOT*<<<<<--- production remote repeater site quality/capable and good only for testing experimenting etc. Even if such a card is TWICE the price of a DMK URI.. This is the way to go for a production system.. Which is *ALL* that I would ever run at a site.. And home I'll still maybe d*** around with USB interfaces which truly suck with app_rpt in ALL of my testing I've done in 3 years. Am I clear in this understanding? Any suggestions on cards/Interfaces that work well? Any that don't?? stick with Digium? I should have asked this bundle of questions 2 years ago *sigh* I realize newer boards will not have PCI slots.. "USB sucks + is unrealiable" -->as I have been assured both through my own testing and the developers of app_rpt. If you tell me you have a perfectly working sytem I'll have you do *my test* sit & listen locally at the system to the TX on continuously with PL encode and you *will* hear the audio pops & interruptions in the trasnmitted audio that I am confident are present in ALL usb installed systems :-).. but has been proven liveable for most. If you absolutely have to go with USB for whatever reason beagleboard etc.. small low power controller then it's time for a different controller if you require production/site performance & reliability. Michigan Broadband Systems Connecting Your Business! +1 734.527.7150 Direct +1 248.327.4389 Fax steve at michiganbroadband.com www.michiganbroadband.com _____ From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney [kc9gqr at gmail.com] Sent: Tuesday, January 10, 2012 2:24 PM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20 I thought i would get the server set up and then get the USB to radio interface.. what is the best and cheap one to buy. I don't want to roll my own as if everything works out well we will move the unit to the repeater site in the Spring. But for now i was going to put it on a simplex node. I just didn't want to buy the adapter then stuck with it with no way to configure the server.. for the time being i will hook it to the ft2600 yaesu .. any thoughts on usb to radio interface? On Tue, Jan 10, 2012 at 11:00 AM, 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. Registartion failure -To those who assisted.... (DougH) ---------------------------------------------------------------------- Message: 1 Date: Tue, 10 Jan 2012 12:00:58 -0000 From: "DougH" To: Subject: [App_rpt-users] Registartion failure -To those who assisted.... Message-ID: Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original ....in my 'Registration Failure' question. Thank you.....situation has been resolved due to a combination of your inputs. Help much appreciated, Regards, Doug - MM0BJA ------------------------------ _______________________________________________ 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 35, Issue 20 ********************************************* -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Thu Jan 12 17:13:18 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Thu, 12 Jan 2012 09:13:18 -0800 Subject: [App_rpt-users] USB Sucks Yay! The Sequel! In-Reply-To: References: , Message-ID: the PCI radio cards are still available and for sale.. if interested, contact me off list. JIM WB6NIL Date: Thu, 12 Jan 2012 07:38:51 -0800 From: dshaw at ke6upi.com To: steve at michiganbroadband.com CC: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] USB Sucks Yay! The Sequel! Steve, I think you should design a new PCI card for app-rpt radio world. I use the 4 port PCI card my self. Works great. Have fun designing and bring your new product to the radio market. Oh by the way my other nodes use DMK URI and they work just fine. A link to the 4 port cards. I don't think they are for sale anymore. http://ohnosec.org/drupal/node/135 Good luck and God's speed, (Because I want it tomorrow) David On Thu, Jan 12, 2012 at 7:05 AM, Steve Gladden wrote: My understanding is that you can use *any* digium FXO/FXS (and possibly a less expensive clone) card it will work well and skrew the piece of crap USB interfaces. I further understand/think that it *MUST* be a two port card with both FXO and FXS present is this true? Or can you somehow get away with a single port FXO or FXS card? Single port cards are cost comparative to a ready made DRI USB which is --->>>>>*NOT*<<<<<--- production remote repeater site quality/capable and good only for testing experimenting etc. Even if such a card is TWICE the price of a DMK URI.. This is the way to go for a production system.. Which is *ALL* that I would ever run at a site.. And home I'll still maybe d*** around with USB interfaces which truly suck with app_rpt in ALL of my testing I've done in 3 years. Am I clear in this understanding? Any suggestions on cards/Interfaces that work well? Any that don't?? stick with Digium? I should have asked this bundle of questions 2 years ago *sigh* I realize newer boards will not have PCI slots.. "USB sucks + is unrealiable" -->as I have been assured both through my own testing and the developers of app_rpt. If you tell me you have a perfectly working sytem I'll have you do *my test* sit & listen locally at the system to the TX on continuously with PL encode and you *will* hear the audio pops & interruptions in the trasnmitted audio that I am confident are present in ALL usb installed systems :-).. but has been proven liveable for most. If you absolutely have to go with USB for whatever reason beagleboard etc.. small low power controller then it's time for a different controller if you require production/site performance & reliability. Michigan Broadband Systems Connecting Your Business! +1 734.527.7150 Direct +1 248.327.4389 Fax steve at michiganbroadband.com www.michiganbroadband.com From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney [kc9gqr at gmail.com] Sent: Tuesday, January 10, 2012 2:24 PM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20 I thought i would get the server set up and then get the USB to radio interface.. what is the best and cheap one to buy. I don't want to roll my own as if everything works out well we will move the unit to the repeater site in the Spring. But for now i was going to put it on a simplex node. I just didn't want to buy the adapter then stuck with it with no way to configure the server.. for the time being i will hook it to the ft2600 yaesu .. any thoughts on usb to radio interface? On Tue, Jan 10, 2012 at 11:00 AM, 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. Registartion failure -To those who assisted.... (DougH) ---------------------------------------------------------------------- Message: 1 Date: Tue, 10 Jan 2012 12:00:58 -0000 From: "DougH" To: Subject: [App_rpt-users] Registartion failure -To those who assisted.... Message-ID: Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original ....in my 'Registration Failure' question. Thank you.....situation has been resolved due to a combination of your inputs. Help much appreciated, Regards, Doug - MM0BJA ------------------------------ _______________________________________________ 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 35, Issue 20 ********************************************* _______________________________________________ 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 bbrown at byrg.net Thu Jan 12 17:34:44 2012 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Thu, 12 Jan 2012 11:34:44 -0600 Subject: [App_rpt-users] USB Sucks Yay! The Sequel! In-Reply-To: <009001ccd141$b954e5d0$2bfeb170$@thebades.net> References: <009001ccd141$b954e5d0$2bfeb170$@thebades.net> Message-ID: I have to echo Doug on the sound FOB issue. I have several systems up and running with both fobs and DMK devices have had no issues with drop outs. Now all use the same PC hardware, HP D510SFF PCs and the Compaq model under the EVO D510 label in our installations.(mainly cause they were cheap and free.) Both have no issues with motor boating or drops outs both work good last long time. Maybe you have hardware (PC) issues but to say the FOBs or DMK USB devices have issues, is bunk. Just my 2 cents -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://sm0kenet.net http://byrg.net http://kcdstar.byrg.net http://w0nqx.blogspot.com Quis custodiet ipsos custodes? Its not how many watts you have, its the SIZE of your watts that matter! -- Johnny Marshall, W0JM-SK -- On Thu, Jan 12, 2012 at 9:49 AM, Doug Bade wrote: > I would have to say that the issue discussed with USB drops/pops/clicks > is NOT an issue that ?has to be?? I use USB sound interfaces (CM108) for > my D-Star repeater(s) running dstarrepeatercontroller software. One of my > system production tests is to generate a dtmf character from my dstar > portable and listen to the recovered dtmf on the far end. If you are > familiar with AMBE and dtmf ** ** > > ** ** > > ** Snip ** > > *From:* app_rpt-users-bounces at ohnosec.org [mailto: > app_rpt-users-bounces at ohnosec.org] *On Behalf Of *Steve Gladden > *Sent:* Thursday, January 12, 2012 10:05 AM > *To:* app_rpt-users at ohnosec.org > *Subject:* [App_rpt-users] USB Sucks Yay! The Sequel!**** > > ** ** > > My understanding is that you can use *any* digium FXO/FXS (and possibly > a less expensive clone) card it will work well and skrew the piece of crap > USB interfaces. > I further understand/think that it *MUST* be a two port card with both FXO > and FXS present is this true? > Or can you somehow get away with a single port FXO or FXS card?**** > > Single port cards are cost comparative to a ready made DRI USB which is > --->>>>>*NOT*<<<<<--- production remote repeater site quality/capable and > good only for testing experimenting etc. > Even if such a card is TWICE the price of a DMK URI.. This is the way to > go for a production system.. > Which is *ALL* that I would ever run at a site.. > And home I'll still maybe d*** around with USB interfaces which truly suck > with app_rpt in ALL of my testing I've done in 3 years. > > Am I clear in this understanding?**** > > **** > > Any suggestions on cards/Interfaces that work well?**** > > Any that don't?? stick with Digium? > > I should have asked this bundle of questions 2 years ago *sigh***** > > **** > > I realize newer boards will not have PCI slots.. > "USB sucks + is unrealiable"**** > > -->as I have been assured both through my own testing and the developers > of app_rpt.**** > > If you tell me you have a perfectly working sytem I'll have you do *my > test* sit & listen locally at the system to the TX on continuously with PL > encode and you *will* hear the audio pops & interruptions in the > trasnmitted audio that I am confident are present in ALL usb installed > systems :-).. but has been proven liveable for most.**** > > If you absolutely have to go with USB for whatever reason beagleboard > etc.. small low power controller > then it's time for a different controller if you require production/site > performance & reliability.**** > > **** > > > ------------------------------ > > *From:* app_rpt-users-bounces at ohnosec.org [ > app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney [ > kc9gqr at gmail.com] > *Sent:* Tuesday, January 10, 2012 2:24 PM > *To:* app_rpt-users at ohnosec.org > *Subject:* Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20**** > > I thought i would get the server set up and then get the USB to radio > interface.. what is the best and cheap one to buy. I don't want to roll my > own as if everything works out well we will move the unit to the repeater > site in the Spring. But for now i was going to put it on a simplex node. > I just didn't want to buy the adapter then stuck with it with no way to > configure the server.. for the time being i will hook it to the ft2600 > yaesu ..**** > > **** > > any thoughts on usb to radio interface?**** > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jaydublu2002 at gmail.com Thu Jan 12 18:17:36 2012 From: jaydublu2002 at gmail.com (Jim Whiteside) Date: Thu, 12 Jan 2012 18:17:36 +0000 Subject: [App_rpt-users] USB Soundcard Fob - no audio In-Reply-To: References: <8855EE8134DB4D0FB1662D2D64ECFFE1@lintv.com> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE6@exchange.mail.repeater.net> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDE8@exchange.mail.repeater.net> <060401cccc95$5feaab70$1fc00250$@kb2ear.net> <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FDEC@exchange.mail.repeater.net> Message-ID: So the plot thickens ... A 'StarTech.com USB to Stereo Audio External Sound Card' turned up, looking identical to the one identified by Corey. Documentation says the chipset is 'C-Media CM108AH', and indeed when I break the case open there's a nice SMT CM108AH with exposed leads that I can hack if I go that route. lsusb reports it as 'ID 0d8c:013c C-Media Electronics, Inc.' But ... still no audio!!!!! In desperation, I resinstall everything from the ACID disk I got from allstarlink.org, and lo-and-behold it works! And, all of the other fobs work too. Anyone want a USB Soundcard? Still no idea why it didn't work first time round, but there we go. Many thanks for all your help, Jim M0HPJ. On 6 January 2012 18:41, Jim Whiteside wrote: > Many thanks for that info Corey - I've just found someone in the UK > selling that model (eBuyer.com) at ?10.85. > > I'll let you know how I get on. > > Jim M0HPJ. > > On 6 January 2012 17:42, Corey Dean wrote: >> I buy all of mine from newegg. ?Never had a bad one yet and everyone of them works. ?Just do a search for cm108 on their site. ?I think the are $18.99 US. >> >> Corey N3FE From kb4fxc at inttek.net Thu Jan 12 18:19:13 2012 From: kb4fxc at inttek.net (David McGough) Date: Thu, 12 Jan 2012 13:19:13 -0500 (EST) Subject: [App_rpt-users] USB Sucks Yay! The Sequel! In-Reply-To: <009001ccd141$b954e5d0$2bfeb170$@thebades.net> Message-ID: I want to comment as well that the USB woes seen with asterisk/app_rpt are NOT a systemic linux issue, in my experience. I am running a hacked version of the linux "soundmodem" software packet MODEM that interfaces with CM108 USB soundcards. Specifically, I'm using DMK URI cards. Soundmodem controls the PTT signaling and can monitor COS, etc. Note that as Doug mentioned, if ANY USB sound related drops/pops/clicks were to occur, the result would be trashed data packets. I'm using the URI's on busy APRS nodes and see outstanding results. These systems have been so reliable that I've got them in difficult to reach locations (like 900 ft. up a tower!) and they just sit there an run. Anyway.... 73, David KB4FXC On Thu, 12 Jan 2012, Doug Bade wrote: > I would have to say that the issue discussed with USB drops/pops/clicks is > NOT an issue that "has to be". I use USB sound interfaces (CM108) for my > D-Star repeater(s) running dstarrepeatercontroller software. One of my > system production tests is to generate a dtmf character from my dstar > portable and listen to the recovered dtmf on the far end. If you are > familiar with AMBE and dtmf issues, the AMBE codec handles dtmf as a command > string and sends it through as a command sequence to be regenerated on the > far end. If there is *any* breaks in the data stream encoded through the usb > sound fob, it will be manifested in a break in the dtmf recovered > presentation on the far end. In many setups along the way, this was a > problem, however it *CAN* be tweaked and time slicing corrected to allow no > drops. I have a production system that does not have drops for sustained > PTT's up to/in excess of 3 minutes of a sustained dtmf character that are > clean for that time frame. The data rate of Dstar would seem to exceed any > analog presentation that Allstar may build. > > > > So. It CAN work, it may be that some tweaking of Allstar > and/or the linux code may need to happen, but to say with certainty that > sound fob repeaters are not production quality is unfair at least in my > world. As I can demonstrate otherwise.. uptimes in excess of months are > typical and no USB hangs or dropson both of my dstar GMSK repeaters > > > > I would also suggest that certain issues may be present in > USB sound fob systems of Allstar that have a problem I/We detected in the > dstar world of implementation that may have to do with some issues in usb > sound implementation. All CM1xx chipsets were designed for telephony and as > such have a sidetone function built in. There is an internal audio loop from > the mic side to the headset side. It is designed to provide comfort audio to > your ear while you are talking but in our repeater world provides a direct, > low level direct analog loop between rx audio and the transmitter. Depending > on series resistance vales and coupling, these levels can become an issue, > it definitely is to GMSK modem data of our dstar implementations.. What > happens is you have 2 loops out of time, one direct and one through the > computer dsp. This is problematical in things that are sensitive to phase > shift and can result in cancelleation etc. A quick and dirty solution is to > use 2 sound fobs for repeating. as one for tx and one for rx. The circuits > are isolated and no dual audio path.. Using 2 DMK URI's might be cost > prohibitive for the most part. but sound fobs can replace maybe one end or > the other on TX or RX. I am not sure how the Allstar implementation would > handle that but it could be done,as my USB URI implementations for Allstar > are working quite well. > > > > Where I am going with all this is "glitchiness" of the > systems may be resolvable issues as we HAVE resolutions in dstar. so flat > out bad rapping sound fobs is maybe not really appropriate.. > > A significant issue and problem using FXO/FXS cards is you need to deal with > line supervision issues and ptt/cor which are not part of the FXO FXS > "normal" implementation. It can be done but I did some work on a system for > work where we tried to use a pair of Multitech FXO/FXS units to link 2 > radios and it was a lot more cumbersome than was worth.. We ended up opting > for Multitech's E&M versions as audio and signaling are not directly linked > and E&M signaling translates to PTT and COR a lot easier. CTCSS is still > going to be an issue as that would be out-of-band audio for Telco class > FXO/FXS/E&M hardware. > > > > E&M is used for microwave analog radio linking because it foots the bill > very well.. but it does not carry CTCSS either way directly. > > > > Doug > > KD8B > > > > > > > > From: app_rpt-users-bounces at ohnosec.org > [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Steve Gladden > Sent: Thursday, January 12, 2012 10:05 AM > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] USB Sucks Yay! The Sequel! > > > > My understanding is that you can use *any* digium FXO/FXS (and possibly a > less expensive clone) card it will work well and skrew the piece of crap USB > interfaces. > I further understand/think that it *MUST* be a two port card with both FXO > and FXS present is this true? > Or can you somehow get away with a single port FXO or FXS card? > > Single port cards are cost comparative to a ready made DRI USB which is > --->>>>>*NOT*<<<<<--- production remote repeater site quality/capable and > good only for testing experimenting etc. > Even if such a card is TWICE the price of a DMK URI.. This is the way to go > for a production system.. > Which is *ALL* that I would ever run at a site.. > And home I'll still maybe d*** around with USB interfaces which truly suck > with app_rpt in ALL of my testing I've done in 3 years. > > Am I clear in this understanding? > > > > Any suggestions on cards/Interfaces that work well? > > Any that don't?? stick with Digium? > > I should have asked this bundle of questions 2 years ago *sigh* > > > > I realize newer boards will not have PCI slots.. > "USB sucks + is unrealiable" > > -->as I have been assured both through my own testing and the developers of > app_rpt. > > If you tell me you have a perfectly working sytem I'll have you do *my test* > sit & listen locally at the system to the TX on continuously with PL encode > and you *will* hear the audio pops & interruptions in the trasnmitted audio > that I am confident are present in ALL usb installed systems :-).. but has > been proven liveable for most. > > If you absolutely have to go with USB for whatever reason beagleboard etc.. > small low power controller > then it's time for a different controller if you require production/site > performance & reliability. > > > > > > > > > Michigan Broadband Systems > Connecting Your Business! > > > > +1 734.527.7150 Direct > +1 248.327.4389 Fax > steve at michiganbroadband.com > www.michiganbroadband.com > > > _____ > > From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] > On Behalf Of Bradley Haney [kc9gqr at gmail.com] > Sent: Tuesday, January 10, 2012 2:24 PM > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 20 > > I thought i would get the server set up and then get the USB to radio > interface.. what is the best and cheap one to buy. I don't want to roll my > own as if everything works out well we will move the unit to the repeater > site in the Spring. But for now i was going to put it on a simplex node. > I just didn't want to buy the adapter then stuck with it with no way to > configure the server.. for the time being i will hook it to the ft2600 > yaesu .. > > > > any thoughts on usb to radio interface? > > On Tue, Jan 10, 2012 at 11:00 AM, 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. Registartion failure -To those who assisted.... (DougH) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 10 Jan 2012 12:00:58 -0000 > From: "DougH" > To: > Subject: [App_rpt-users] Registartion failure -To those who > assisted.... > Message-ID: > Content-Type: text/plain; format=flowed; charset="iso-8859-1"; > reply-type=original > > ....in my 'Registration Failure' question. Thank you.....situation has been > resolved due to a combination of your inputs. > > Help much appreciated, > > Regards, > Doug - MM0BJA > > > > ------------------------------ > > _______________________________________________ > 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 35, Issue 20 > ********************************************* > > > > From jaydublu2002 at gmail.com Thu Jan 12 18:41:58 2012 From: jaydublu2002 at gmail.com (Jim Whiteside) Date: Thu, 12 Jan 2012 18:41:58 +0000 Subject: [App_rpt-users] FIXED: USB Soundcard Fob - no audio Message-ID: It was the USB Hub! Using a straight through USB extension works with all my fobs, with a cheapo 4-way hub the device is reported to the system, but no audio comes through. So now I'm feeling silly, because I'm sure I checked it without the hub at some point. Anyway, I thought I'd feed back what the eventual resolution was - and I rebuilt my OS for nothing! Cheers, Jim M0HPJ On 12 January 2012 18:17, Jim Whiteside wrote: > So the plot thickens ... > > A 'StarTech.com USB to Stereo Audio External Sound Card' turned up, > looking identical to the one identified by Corey. > > Documentation says the chipset is 'C-Media CM108AH', and indeed when I > break the case open there's a nice SMT CM108AH with exposed leads that > I can hack if I go that route. > > lsusb reports it as 'ID 0d8c:013c C-Media Electronics, Inc.' > > But ... still no audio!!!!! > > In desperation, I resinstall everything from the ACID disk I got from > allstarlink.org, and lo-and-behold it works! And, all of the other > fobs work too. > > Anyone want a USB Soundcard? > > Still no idea why it didn't work first time round, but there we go. > > Many thanks for all your help, > > Jim M0HPJ. > From n3fe at repeater.net Thu Jan 12 18:49:49 2012 From: n3fe at repeater.net (Corey Dean) Date: Thu, 12 Jan 2012 13:49:49 -0500 Subject: [App_rpt-users] FIXED: USB Soundcard Fob - no audio In-Reply-To: References: Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E0276A9A1FE95@exchange.mail.repeater.net> Usb hubs are not a good thing! Throw them away!!! Corey N3FE ________________________________________ From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Jim Whiteside [jaydublu2002 at gmail.com] Sent: Thursday, January 12, 2012 1:41 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] FIXED: USB Soundcard Fob - no audio It was the USB Hub! Using a straight through USB extension works with all my fobs, with a cheapo 4-way hub the device is reported to the system, but no audio comes through. So now I'm feeling silly, because I'm sure I checked it without the hub at some point. Anyway, I thought I'd feed back what the eventual resolution was - and I rebuilt my OS for nothing! Cheers, Jim M0HPJ On 12 January 2012 18:17, Jim Whiteside wrote: > So the plot thickens ... > > A 'StarTech.com USB to Stereo Audio External Sound Card' turned up, > looking identical to the one identified by Corey. > > Documentation says the chipset is 'C-Media CM108AH', and indeed when I > break the case open there's a nice SMT CM108AH with exposed leads that > I can hack if I go that route. > > lsusb reports it as 'ID 0d8c:013c C-Media Electronics, Inc.' > > But ... still no audio!!!!! > > In desperation, I resinstall everything from the ACID disk I got from > allstarlink.org, and lo-and-behold it works! And, all of the other > fobs work too. > > Anyone want a USB Soundcard? > > Still no idea why it didn't work first time round, but there we go. > > Many thanks for all your help, > > Jim M0HPJ. > _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- This message was scanned and is believed to be clean. Click here to report this message as spam. http://simba.repeater.net/cgi-bin/learn-msg.cgi?id=154932387.A94F4 From petem001 at hotmail.com Thu Jan 12 18:54:41 2012 From: petem001 at hotmail.com (Pierre Martel) Date: Thu, 12 Jan 2012 13:54:41 -0500 Subject: [App_rpt-users] RE : Re: FIXED: USB Soundcard Fob - no audio Message-ID: Not all usb hub are bad. I use a good active usb hub and my usb fob are working great. It is even rated for usb 3 Envoy? depuis un mobile Samsung Corey Dean a ?crit?: Usb hubs are not a good thing!? Throw them away!!! Corey N3FE ________________________________________ From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Jim Whiteside [jaydublu2002 at gmail.com] Sent: Thursday, January 12, 2012 1:41 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] FIXED:? USB Soundcard Fob - no audio It was the USB Hub! Using a straight through USB extension works with all my fobs, with a cheapo 4-way hub the device is reported to the system, but no audio comes through. So now I'm feeling silly, because I'm sure I checked it without the hub at some point. Anyway, I thought I'd feed back what the eventual resolution was - and I rebuilt my OS for nothing! Cheers, Jim M0HPJ On 12 January 2012 18:17, Jim Whiteside wrote: > So the plot thickens ... > > A 'StarTech.com USB to Stereo Audio External Sound Card' turned up, > looking identical to the one identified by Corey. > > Documentation says the chipset is 'C-Media CM108AH', and indeed when I > break the case open there's a nice SMT CM108AH with exposed leads that > I can hack if I go that route. > > lsusb reports it as 'ID 0d8c:013c C-Media Electronics, Inc.' > > But ... still no audio!!!!! > > In desperation, I resinstall everything from the ACID disk I got from > allstarlink.org, and lo-and-behold it works! And, all of the other > fobs work too. > > Anyone want a USB Soundcard? > > Still no idea why it didn't work first time round, but there we go. > > Many thanks for all your help, > > Jim M0HPJ. > _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- This message was scanned and is believed to be clean. Click here to report this message as spam. http://simba.repeater.net/cgi-bin/learn-msg.cgi?id=154932387.A94F4 _______________________________________________ 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 bdboyle at bdboyle.com Thu Jan 12 19:13:07 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Thu, 12 Jan 2012 14:13:07 -0500 Subject: [App_rpt-users] USB Sucks Yay! The Sequel! In-Reply-To: References: Message-ID: <4F0F30C3.4000003@bdboyle.com> Yeah, USB sucks. But, then, a little perspective.... At the base case, what are our expectations? Full 5.1 surround sound, broadcast quality? For a communications-channel radio? Don't think so. It's a waste. I'm thinking that, and this is based on my experience only, so, if yours is different, you'll have a different take on it... The URI does what it does well. It's a $79.00 USD audio-to-USB adapter. It is unique in what it does. And it does it a LOT better than anything else I've found out there at that price point. For $79.00, an old computer, and some time, you get a full feature, internet-connectable, network-able, totally configurable radio controller with more features than you'll ever use. Try doing that with an SCOM or Arcom hardware solution for the same price. For instance...broadcasters are using, solely as backups in most cases, audio to IP encoder/decoder sets from a company called Barix. It takes an audio stream, turns it into IP packets, and broadcasts it out. Guess what? Costs around $450 for the encoder (with wall wart) and $250 for the decoder (ditto). 50-15K stereo with a 100MB RJ45 on the back to plug into the network. That's all it does. No useable DSP to derive control signals, no hardware controls, no user-programmable I/O. Audio in...IP out...IP in...audio out. Now, on the other side, you have the Universal Serial Bus. Not the Universal Audio Bus. It's a one-size fits-all solution. You can plug in a URI, Logitek Webcam, HP Printer, your keyboard, mouse, and a missle launcher toy from GeekToys, and they'll all be recognized, and if you have the app to drive it...will all coexist and work off the same bus. That it's not optimized for any one protocol means that it works (sometimes poorly) for all of them. It's one of the biggest compromise technologies in the PC world. So, do you get the occasional pop or crackle or ? Sure. Is it the URI's fault or the back end itself? And if it is the back end (which it is more often than not...), what is the cost, in folding green (or whatever the prevalent color of your local currency is) to make the next step UP in quality for what is, at the transmission point, a bandwidth-limited, distance limited, purpose-limited communications system? The human mind can work with degraded video transmission frame rates because the visual engine, so to speak, can fill in the transition between receipt of one image (persistence of vision) to the next. Not so with audio; our hearing is based on linear (in terms of time slices) response and except for the occasional case of your ears ringing, has to hear a continuous stream in order to made sense of the entire communication. That's why we can watch a 15FPS video and still think it's something (which is 50% of the normal US frame video frame rate and 9 FPS less than movie projection) but, if you interrupt an audio stream for 50% of the time...it's unintelligible. So...is the delta to get to what you consider a perfect system worth it? If you have the funds, the processing power, and want that broadcast quality (you ought to listen sometimes to the 160 band and all the old pharts running cast-off broadcast transmitters...AM..) 99.9999% reliability? Go for it. But that does not mean that the technology is useless; in fact, for both price and ability to implement, it may well be more economical and efficient to accept the occasional pop and whistle if the cost and ease of implementation warrants it. -- 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 baig.engr at yahoo.com Fri Jan 13 05:43:20 2012 From: baig.engr at yahoo.com (Muhammad Baig) Date: Thu, 12 Jan 2012 21:43:20 -0800 (PST) Subject: [App_rpt-users] (no subject) Message-ID: <1326433400.84345.YahooMailClassic@web120202.mail.ne1.yahoo.com> sir i wana help from you....? -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb8pmy at kb8pmy.net Fri Jan 13 11:18:32 2012 From: kb8pmy at kb8pmy.net (Ryan Collier) Date: Fri, 13 Jan 2012 06:18:32 -0500 Subject: [App_rpt-users] Softphone to the repeater Ports... Message-ID: <1326453512171485500@kb8pmy.net> An embedded and charset-unspecified text was scrubbed... Name: not available URL: -------------- next part -------------- An HTML attachment was scrubbed... URL: From cpe.jfreeman at gmail.com Fri Jan 13 17:41:39 2012 From: cpe.jfreeman at gmail.com (Josh Freeman) Date: Fri, 13 Jan 2012 11:41:39 -0600 Subject: [App_rpt-users] Softphone to the repeater Ports... In-Reply-To: <1326453512171485500@kb8pmy.net> References: <1326453512171485500@kb8pmy.net> Message-ID: <4F106CD3.3070102@gmail.com> Yes, you can do this. I had an AllStar-independent demonstration repeater set up with two phones connected via a SIP ATA, and that worked just fine. How are you invoking the Rpt application in the extension that would connect your SIP phone to the repeater? You have to use either the reverse-autopatch option or one of the "phone control mode" options... but one of those should provide an acceptable solution for connecting a SIP or Zaptel channel to the repeater. The doc snippet below should give you the basic idea - ************ Rannounce-string[|timeout[|timeout-destination]] - Amateur Radio Reverse Autopatch. Caller is put on hold, and announcement (as specified by the 'announce-string') is played on radio system. Users of radio system can access autopatch, dial specified code, and pick up call. Announce-string is list of names of recordings, or \"PARKED\" to substitute code for un-parking, or \"NODE\" to substitute node number. P - Phone Control mode. This allows a regular phone user to have full control and audio access to the radio system. For the user to have DTMF control, the 'phone_functions' parameter must be specified for the node in 'rpt.conf'. An additional function (cop,6) must be listed so that PTT control is available. D - Dumb Phone Control mode. This allows a regular phone user to have full control and audio access to the radio system. In this mode, the PTT is activated for the entire length of the call. For the user to have DTMF control (not generally recomended in this mode), the 'dphone_functions' parameter must be specified for the node in 'rpt.conf'. Otherwise no DTMF control will be available to the phone user. ************ 73 de Josh KI4ITI On 01/13/2012 05:18 AM, Ryan Collier wrote: > Greeting Group, > > I finally got my repeater back up do to hardware failure. But I am > trying to add to the system to get more control over it. So I have > setup sip softphones on my computers. They all talk to eachother fine > after my blonde moment. (hand on forehead) > > So what I am trying to accomplish is to be able to use the sip > softphones on the repeater system with out having to connect to the > allstar sip network. Because the repeater will still work with out the > WAN hookup. If we loose internet and the hsmm-mesh is hooked up I want > the sip phones to still work on my internal system. When I do connect > a sip phone to the repeater channel I get this error. We only accept > links via IAX2, Echolink, IRLP or Local!! > > Is there a way I can make this work or am I beating a dead horse? > > 73 > Ryan > KB8PMY > > > _______________________________________________ > 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 wolthui3 at msu.edu Sat Jan 14 18:16:33 2012 From: wolthui3 at msu.edu (Michael J. Wolthuis) Date: Sat, 14 Jan 2012 13:16:33 -0500 Subject: [App_rpt-users] Softphone to the repeater Ports... Message-ID: <4F11C681.7010507@msu.edu> I would like to do this also. Is there a document somewhere that shows how to set it up for private LAN or for direct connection from a SIP trunk? I would like to tie my local Asterisk phone system into my repeater, but not sure on the setup for the Allstar side. Mike kb8zgl From n5zua at earthlink.net Sat Jan 14 18:55:34 2012 From: n5zua at earthlink.net (Steve Agee) Date: Sat, 14 Jan 2012 12:55:34 -0600 Subject: [App_rpt-users] Error Question References: <4EEE398A.4040209@arrl.net> <001801ccbdba$8b199ca0$a14cd5e0$@com> Message-ID: <78529FEFA05A48B5888BD153D178E546@steveea3dc3d27> What would cause this error to happen? WARNING[20541] chan_usbradio.c: Error reading output space N5ZUA From telesistant at hotmail.com Sat Jan 14 19:08:34 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Sat, 14 Jan 2012 11:08:34 -0800 Subject: [App_rpt-users] Error Question In-Reply-To: <78529FEFA05A48B5888BD153D178E546@steveea3dc3d27> References: <4EEE398A.4040209@arrl.net> <001801ccbdba$8b199ca0$a14cd5e0$@com>, <78529FEFA05A48B5888BD153D178E546@steveea3dc3d27> Message-ID: USB Sucks! > From: n5zua at earthlink.net > To: App_rpt-users at ohnosec.org > Date: Sat, 14 Jan 2012 12:55:34 -0600 > Subject: [App_rpt-users] Error Question > > What would cause this error to happen? > > WARNING[20541] chan_usbradio.c: Error reading output space > > N5ZUA > _______________________________________________ > 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 telesistant at hotmail.com Sat Jan 14 19:16:44 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Sat, 14 Jan 2012 11:16:44 -0800 Subject: [App_rpt-users] Softphone to the repeater Ports... In-Reply-To: <4F11C681.7010507@msu.edu> References: <4F11C681.7010507@msu.edu> Message-ID: in your Asterisk Dialplan, you need to invoke Rpt like this: exten => Something,1,rpt,1234|P (for Phone with function controlled PTT) -or- exten => Something,1,rpt,1234|Pv (for Voice-controlled PTT) (examples given for node number 1234) JIM WB6NIL > Date: Sat, 14 Jan 2012 13:16:33 -0500 > From: wolthui3 at msu.edu > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Softphone to the repeater Ports... > > I would like to do this also. Is there a document somewhere that shows > how to set it up for private LAN or for direct connection from a SIP > trunk? I would like to tie my local Asterisk phone system into my > repeater, but not sure on the setup for the Allstar side. > > Mike > kb8zgl > > _______________________________________________ > 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 kc9gqr at gmail.com Sat Jan 14 23:02:26 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Sat, 14 Jan 2012 17:02:26 -0600 Subject: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? Message-ID: My node was reachable that iam configuring all day yesterday and then today all of a sudden it is not.. when i try to ssh into the node it says connection refused and its not showing up on online node list online... Do i need to re install the software? Please help Kc9gqr -------------- next part -------------- An HTML attachment was scrubbed... URL: From n9gmr at me.com Sat Jan 14 23:34:33 2012 From: n9gmr at me.com (Matt Roberts) Date: Sat, 14 Jan 2012 18:34:33 -0500 Subject: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? In-Reply-To: References: Message-ID: <553D277E-75D2-4DCE-B0BC-A81B8249F7B2@me.com> What's your node number? Did you specify the correct port number when connecting remotely? Matt Roberts n9gmr at me.com Sent from my iPhone On Jan 14, 2012, at 6:02 PM, Bradley Haney wrote: > My node was reachable that iam configuring all day yesterday and then today all of a sudden it is not.. when i try to ssh into the node it says connection refused and its not showing up on online node list online... > > Do i need to re install the software? > > Please help > > Kc9gqr > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From shaun at pmbnet.co.za Sun Jan 15 01:54:23 2012 From: shaun at pmbnet.co.za (Shaun Rudling) Date: Sun, 15 Jan 2012 03:54:23 +0200 Subject: [App_rpt-users] RTCM and CTCSS pin 4 Message-ID: <4F1231CF.20103@pmbnet.co.za> I could not get my Kenwood TKR-750 to pull down the RTCM pin 4 enough to trigger the COR. The pin4 voltage got down to 1.1v which is not enough. I fixed this by soldering a 540ohm resister from RTCM pin 4 to ground. It was just enough to bring it down to a switching point when the Kenwood sensed my 88.5Hz tone. Shaun zr5s From n6gkj.cm98 at yahoo.com Sun Jan 15 05:40:51 2012 From: n6gkj.cm98 at yahoo.com (Ron Simpson) Date: Sat, 14 Jan 2012 21:40:51 -0800 (PST) Subject: [App_rpt-users] Woo Hoo!! Message-ID: <1326606051.67097.androidMobile@web125906.mail.ne1.yahoo.com> Update! I built my local control around a Motorola Spectra DTMF Mic and a powered speaker. Finally figured out what the DMK URI needed for proper switching, faked out the levels and connected to a node for a nice check out! Talked to someone on the WinSystem who gave me a good report!? Now to clean it up and package it all together. Spectra mics can be found easy enough. The bias circuit was taken right out if the MAXTRAC manual. Now to build a few more, thank you Jim and Dave for your help!! 73, Ron - N6GKJ Sent from Yahoo! Mail on Android -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc9gqr at gmail.com Mon Jan 16 02:00:51 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Sun, 15 Jan 2012 20:00:51 -0600 Subject: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 28 In-Reply-To: References: Message-ID: Ok I give my centos box will just not get on the network.. How do you manual change the network settings in centos.. I think i need to change the DNS servers and such On Sun, Jan 15, 2012 at 11:00 AM, 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: Softphone to the repeater Ports... (Michael J. Wolthuis) > 2. Error Question (Steve Agee) > 3. Re: Error Question (Jim Duuuude) > 4. Re: Softphone to the repeater Ports... (Jim Duuuude) > 5. SOMETHING WRONG WITH THE SYSTEM? (Bradley Haney) > 6. Re: SOMETHING WRONG WITH THE SYSTEM? (Matt Roberts) > 7. RTCM and CTCSS pin 4 (Shaun Rudling) > 8. Woo Hoo!! (Ron Simpson) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 14 Jan 2012 13:16:33 -0500 > From: "Michael J. Wolthuis" > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Softphone to the repeater Ports... > Message-ID: <4F11C681.7010507 at msu.edu> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > I would like to do this also. Is there a document somewhere that shows > how to set it up for private LAN or for direct connection from a SIP > trunk? I would like to tie my local Asterisk phone system into my > repeater, but not sure on the setup for the Allstar side. > > Mike > kb8zgl > > > > ------------------------------ > > Message: 2 > Date: Sat, 14 Jan 2012 12:55:34 -0600 > From: "Steve Agee" > To: > Subject: [App_rpt-users] Error Question > Message-ID: <78529FEFA05A48B5888BD153D178E546 at steveea3dc3d27> > Content-Type: text/plain; format=flowed; charset="iso-8859-1"; > reply-type=original > > What would cause this error to happen? > > WARNING[20541] chan_usbradio.c: Error reading output space > > N5ZUA > > > ------------------------------ > > Message: 3 > Date: Sat, 14 Jan 2012 11:08:34 -0800 > From: Jim Duuuude > To: , app_rpt mailing list > > Subject: Re: [App_rpt-users] Error Question > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > > USB Sucks! > > > From: n5zua at earthlink.net > > To: App_rpt-users at ohnosec.org > > Date: Sat, 14 Jan 2012 12:55:34 -0600 > > Subject: [App_rpt-users] Error Question > > > > What would cause this error to happen? > > > > WARNING[20541] chan_usbradio.c: Error reading output space > > > > N5ZUA > > _______________________________________________ > > 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/20120114/06ec14b3/attachment-0001.html > > > > ------------------------------ > > Message: 4 > Date: Sat, 14 Jan 2012 11:16:44 -0800 > From: Jim Duuuude > To: , app_rpt mailing list > > Subject: Re: [App_rpt-users] Softphone to the repeater Ports... > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > > in your Asterisk Dialplan, you need to invoke Rpt like this: > > exten => Something,1,rpt,1234|P (for Phone with function controlled PTT) > > -or- > > exten => Something,1,rpt,1234|Pv (for Voice-controlled PTT) > > (examples given for node number 1234) > > JIM WB6NIL > > > Date: Sat, 14 Jan 2012 13:16:33 -0500 > > From: wolthui3 at msu.edu > > To: app_rpt-users at ohnosec.org > > Subject: Re: [App_rpt-users] Softphone to the repeater Ports... > > > > I would like to do this also. Is there a document somewhere that shows > > how to set it up for private LAN or for direct connection from a SIP > > trunk? I would like to tie my local Asterisk phone system into my > > repeater, but not sure on the setup for the Allstar side. > > > > Mike > > kb8zgl > > > > _______________________________________________ > > 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/20120114/d60aafa9/attachment-0001.html > > > > ------------------------------ > > Message: 5 > Date: Sat, 14 Jan 2012 17:02:26 -0600 > From: Bradley Haney > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > My node was reachable that iam configuring all day yesterday and then today > all of a sudden it is not.. when i try to ssh into the node it says > connection refused and its not showing up on online node list online... > > Do i need to re install the software? > > Please help > > Kc9gqr > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://ohnosec.org/pipermail/app_rpt-users/attachments/20120114/ef6493e3/attachment-0001.html > > > > ------------------------------ > > Message: 6 > Date: Sat, 14 Jan 2012 18:34:33 -0500 > From: Matt Roberts > To: Bradley Haney > Cc: "app_rpt-users at ohnosec.org" > Subject: Re: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? > Message-ID: <553D277E-75D2-4DCE-B0BC-A81B8249F7B2 at me.com> > Content-Type: text/plain; CHARSET=US-ASCII > > What's your node number? Did you specify the correct port number when > connecting remotely? > > Matt Roberts > n9gmr at me.com > > Sent from my iPhone > > On Jan 14, 2012, at 6:02 PM, Bradley Haney wrote: > > > My node was reachable that iam configuring all day yesterday and then > today all of a sudden it is not.. when i try to ssh into the node it says > connection refused and its not showing up on online node list online... > > > > Do i need to re install the software? > > > > Please help > > > > Kc9gqr > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > ------------------------------ > > Message: 7 > Date: Sun, 15 Jan 2012 03:54:23 +0200 > From: Shaun Rudling > To: app_rpt-users at ohnosec.org, Jim Duuuude > Subject: [App_rpt-users] RTCM and CTCSS pin 4 > Message-ID: <4F1231CF.20103 at pmbnet.co.za> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > I could not get my Kenwood TKR-750 to pull down the RTCM pin 4 enough to > trigger the COR. The pin4 voltage got down to 1.1v which is not enough. > > I fixed this by soldering a 540ohm resister from RTCM pin 4 to ground. > It was just enough to bring it down to a switching point when the > Kenwood sensed my 88.5Hz tone. > > Shaun > zr5s > > > > > > > > > > ------------------------------ > > Message: 8 > Date: Sat, 14 Jan 2012 21:40:51 -0800 (PST) > From: Ron Simpson > To: "App_rpt-users at ohnosec.org" > Subject: [App_rpt-users] Woo Hoo!! > Message-ID: > <1326606051.67097.androidMobile at web125906.mail.ne1.yahoo.com> > Content-Type: text/plain; charset="iso-8859-1" > > Update! > > I built my local control around a Motorola Spectra DTMF Mic and a powered > speaker. Finally figured out what the DMK URI needed for proper switching, > faked out the levels and connected to a node for a nice check out! Talked > to someone on the WinSystem who gave me a good report!? Now to clean it up > and package it all together. > > Spectra mics can be found easy enough. The bias circuit was taken right > out if the MAXTRAC manual. Now to build a few more, thank you Jim and Dave > for your help!! > > 73, > > Ron - N6GKJ > Sent from Yahoo! Mail on Android > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://ohnosec.org/pipermail/app_rpt-users/attachments/20120114/45013317/attachment-0001.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 35, Issue 28 > ********************************************* > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb2ear at kb2ear.net Mon Jan 16 03:15:04 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Sun, 15 Jan 2012 22:15:04 -0500 Subject: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 28 In-Reply-To: References: Message-ID: <013401ccd3fd$0af31070$20d93150$@kb2ear.net> System-config-network From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney Sent: Sunday, January 15, 2012 9:01 PM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 28 Ok I give my centos box will just not get on the network.. How do you manual change the network settings in centos.. I think i need to change the DNS servers and such On Sun, Jan 15, 2012 at 11:00 AM, 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: Softphone to the repeater Ports... (Michael J. Wolthuis) 2. Error Question (Steve Agee) 3. Re: Error Question (Jim Duuuude) 4. Re: Softphone to the repeater Ports... (Jim Duuuude) 5. SOMETHING WRONG WITH THE SYSTEM? (Bradley Haney) 6. Re: SOMETHING WRONG WITH THE SYSTEM? (Matt Roberts) 7. RTCM and CTCSS pin 4 (Shaun Rudling) 8. Woo Hoo!! (Ron Simpson) ---------------------------------------------------------------------- Message: 1 Date: Sat, 14 Jan 2012 13:16:33 -0500 From: "Michael J. Wolthuis" To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Softphone to the repeater Ports... Message-ID: <4F11C681.7010507 at msu.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed I would like to do this also. Is there a document somewhere that shows how to set it up for private LAN or for direct connection from a SIP trunk? I would like to tie my local Asterisk phone system into my repeater, but not sure on the setup for the Allstar side. Mike kb8zgl ------------------------------ Message: 2 Date: Sat, 14 Jan 2012 12:55:34 -0600 From: "Steve Agee" To: Subject: [App_rpt-users] Error Question Message-ID: <78529FEFA05A48B5888BD153D178E546 at steveea3dc3d27> Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original What would cause this error to happen? WARNING[20541] chan_usbradio.c: Error reading output space N5ZUA ------------------------------ Message: 3 Date: Sat, 14 Jan 2012 11:08:34 -0800 From: Jim Duuuude To: , app_rpt mailing list Subject: Re: [App_rpt-users] Error Question Message-ID: Content-Type: text/plain; charset="iso-8859-1" USB Sucks! > From: n5zua at earthlink.net > To: App_rpt-users at ohnosec.org > Date: Sat, 14 Jan 2012 12:55:34 -0600 > Subject: [App_rpt-users] Error Question > > What would cause this error to happen? > > WARNING[20541] chan_usbradio.c: Error reading output space > > N5ZUA > _______________________________________________ > 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: 4 Date: Sat, 14 Jan 2012 11:16:44 -0800 From: Jim Duuuude To: , app_rpt mailing list Subject: Re: [App_rpt-users] Softphone to the repeater Ports... Message-ID: Content-Type: text/plain; charset="iso-8859-1" in your Asterisk Dialplan, you need to invoke Rpt like this: exten => Something,1,rpt,1234|P (for Phone with function controlled PTT) -or- exten => Something,1,rpt,1234|Pv (for Voice-controlled PTT) (examples given for node number 1234) JIM WB6NIL > Date: Sat, 14 Jan 2012 13:16:33 -0500 > From: wolthui3 at msu.edu > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Softphone to the repeater Ports... > > I would like to do this also. Is there a document somewhere that shows > how to set it up for private LAN or for direct connection from a SIP > trunk? I would like to tie my local Asterisk phone system into my > repeater, but not sure on the setup for the Allstar side. > > Mike > kb8zgl > > _______________________________________________ > 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: 5 Date: Sat, 14 Jan 2012 17:02:26 -0600 From: Bradley Haney To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? Message-ID: > Content-Type: text/plain; charset="iso-8859-1" My node was reachable that iam configuring all day yesterday and then today all of a sudden it is not.. when i try to ssh into the node it says connection refused and its not showing up on online node list online... Do i need to re install the software? Please help Kc9gqr -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 6 Date: Sat, 14 Jan 2012 18:34:33 -0500 From: Matt Roberts To: Bradley Haney Cc: "app_rpt-users at ohnosec.org" Subject: Re: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? Message-ID: <553D277E-75D2-4DCE-B0BC-A81B8249F7B2 at me.com> Content-Type: text/plain; CHARSET=US-ASCII What's your node number? Did you specify the correct port number when connecting remotely? Matt Roberts n9gmr at me.com Sent from my iPhone On Jan 14, 2012, at 6:02 PM, Bradley Haney wrote: > My node was reachable that iam configuring all day yesterday and then today all of a sudden it is not.. when i try to ssh into the node it says connection refused and its not showing up on online node list online... > > Do i need to re install the software? > > Please help > > Kc9gqr > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users ------------------------------ Message: 7 Date: Sun, 15 Jan 2012 03:54:23 +0200 From: Shaun Rudling To: app_rpt-users at ohnosec.org, Jim Duuuude Subject: [App_rpt-users] RTCM and CTCSS pin 4 Message-ID: <4F1231CF.20103 at pmbnet.co.za> Content-Type: text/plain; charset=ISO-8859-1; format=flowed I could not get my Kenwood TKR-750 to pull down the RTCM pin 4 enough to trigger the COR. The pin4 voltage got down to 1.1v which is not enough. I fixed this by soldering a 540ohm resister from RTCM pin 4 to ground. It was just enough to bring it down to a switching point when the Kenwood sensed my 88.5Hz tone. Shaun zr5s ------------------------------ Message: 8 Date: Sat, 14 Jan 2012 21:40:51 -0800 (PST) From: Ron Simpson To: "App_rpt-users at ohnosec.org" Subject: [App_rpt-users] Woo Hoo!! Message-ID: <1326606051.67097.androidMobile at web125906.mail.ne1.yahoo.com> Content-Type: text/plain; charset="iso-8859-1" Update! I built my local control around a Motorola Spectra DTMF Mic and a powered speaker. Finally figured out what the DMK URI needed for proper switching, faked out the levels and connected to a node for a nice check out! Talked to someone on the WinSystem who gave me a good report!? Now to clean it up and package it all together. Spectra mics can be found easy enough. The bias circuit was taken right out if the MAXTRAC manual. Now to build a few more, thank you Jim and Dave for your help!! 73, Ron - N6GKJ Sent from Yahoo! Mail on Android -------------- 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 35, Issue 28 ********************************************* -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc9gqr at gmail.com Mon Jan 16 03:59:24 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Sun, 15 Jan 2012 21:59:24 -0600 Subject: [App_rpt-users] ECHOLINK CONNECTIONS Message-ID: When i am connected and i amusing the web trans i have noticed that the echolink stations that are connected node numbers do not match the Echolink nodes on the echolink website.. Could some one help me out with that -------------- next part -------------- An HTML attachment was scrubbed... URL: From w7ry at centurytel.net Mon Jan 16 04:04:09 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Sun, 15 Jan 2012 20:04:09 -0800 Subject: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 28 In-Reply-To: <013401ccd3fd$0af31070$20d93150$@kb2ear.net> References: <013401ccd3fd$0af31070$20d93150$@kb2ear.net> Message-ID: Won't work (at least on my node) with the capital S. Needs to be small s 73 Jim W7RY From: Scott Weis Sent: Sunday, January 15, 2012 7:15 PM To: 'Bradley Haney' ; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 28 System-config-network From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney Sent: Sunday, January 15, 2012 9:01 PM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 28 Ok I give my centos box will just not get on the network.. How do you manual change the network settings in centos.. I think i need to change the DNS servers and such On Sun, Jan 15, 2012 at 11:00 AM, 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: Softphone to the repeater Ports... (Michael J. Wolthuis) 2. Error Question (Steve Agee) 3. Re: Error Question (Jim Duuuude) 4. Re: Softphone to the repeater Ports... (Jim Duuuude) 5. SOMETHING WRONG WITH THE SYSTEM? (Bradley Haney) 6. Re: SOMETHING WRONG WITH THE SYSTEM? (Matt Roberts) 7. RTCM and CTCSS pin 4 (Shaun Rudling) 8. Woo Hoo!! (Ron Simpson) ---------------------------------------------------------------------- Message: 1 Date: Sat, 14 Jan 2012 13:16:33 -0500 From: "Michael J. Wolthuis" To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Softphone to the repeater Ports... Message-ID: <4F11C681.7010507 at msu.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed I would like to do this also. Is there a document somewhere that shows how to set it up for private LAN or for direct connection from a SIP trunk? I would like to tie my local Asterisk phone system into my repeater, but not sure on the setup for the Allstar side. Mike kb8zgl ------------------------------ Message: 2 Date: Sat, 14 Jan 2012 12:55:34 -0600 From: "Steve Agee" To: Subject: [App_rpt-users] Error Question Message-ID: <78529FEFA05A48B5888BD153D178E546 at steveea3dc3d27> Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original What would cause this error to happen? WARNING[20541] chan_usbradio.c: Error reading output space N5ZUA ------------------------------ Message: 3 Date: Sat, 14 Jan 2012 11:08:34 -0800 From: Jim Duuuude To: , app_rpt mailing list Subject: Re: [App_rpt-users] Error Question Message-ID: Content-Type: text/plain; charset="iso-8859-1" USB Sucks! > From: n5zua at earthlink.net > To: App_rpt-users at ohnosec.org > Date: Sat, 14 Jan 2012 12:55:34 -0600 > Subject: [App_rpt-users] Error Question > > What would cause this error to happen? > > WARNING[20541] chan_usbradio.c: Error reading output space > > N5ZUA > _______________________________________________ > 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: 4 Date: Sat, 14 Jan 2012 11:16:44 -0800 From: Jim Duuuude To: , app_rpt mailing list Subject: Re: [App_rpt-users] Softphone to the repeater Ports... Message-ID: Content-Type: text/plain; charset="iso-8859-1" in your Asterisk Dialplan, you need to invoke Rpt like this: exten => Something,1,rpt,1234|P (for Phone with function controlled PTT) -or- exten => Something,1,rpt,1234|Pv (for Voice-controlled PTT) (examples given for node number 1234) JIM WB6NIL > Date: Sat, 14 Jan 2012 13:16:33 -0500 > From: wolthui3 at msu.edu > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Softphone to the repeater Ports... > > I would like to do this also. Is there a document somewhere that shows > how to set it up for private LAN or for direct connection from a SIP > trunk? I would like to tie my local Asterisk phone system into my > repeater, but not sure on the setup for the Allstar side. > > Mike > kb8zgl > > _______________________________________________ > 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: 5 Date: Sat, 14 Jan 2012 17:02:26 -0600 From: Bradley Haney To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? Message-ID: Content-Type: text/plain; charset="iso-8859-1" My node was reachable that iam configuring all day yesterday and then today all of a sudden it is not.. when i try to ssh into the node it says connection refused and its not showing up on online node list online... Do i need to re install the software? Please help Kc9gqr -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 6 Date: Sat, 14 Jan 2012 18:34:33 -0500 From: Matt Roberts To: Bradley Haney Cc: "app_rpt-users at ohnosec.org" Subject: Re: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? Message-ID: <553D277E-75D2-4DCE-B0BC-A81B8249F7B2 at me.com> Content-Type: text/plain; CHARSET=US-ASCII What's your node number? Did you specify the correct port number when connecting remotely? Matt Roberts n9gmr at me.com Sent from my iPhone On Jan 14, 2012, at 6:02 PM, Bradley Haney wrote: > My node was reachable that iam configuring all day yesterday and then today all of a sudden it is not.. when i try to ssh into the node it says connection refused and its not showing up on online node list online... > > Do i need to re install the software? > > Please help > > Kc9gqr > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users ------------------------------ Message: 7 Date: Sun, 15 Jan 2012 03:54:23 +0200 From: Shaun Rudling To: app_rpt-users at ohnosec.org, Jim Duuuude Subject: [App_rpt-users] RTCM and CTCSS pin 4 Message-ID: <4F1231CF.20103 at pmbnet.co.za> Content-Type: text/plain; charset=ISO-8859-1; format=flowed I could not get my Kenwood TKR-750 to pull down the RTCM pin 4 enough to trigger the COR. The pin4 voltage got down to 1.1v which is not enough. I fixed this by soldering a 540ohm resister from RTCM pin 4 to ground. It was just enough to bring it down to a switching point when the Kenwood sensed my 88.5Hz tone. Shaun zr5s ------------------------------ Message: 8 Date: Sat, 14 Jan 2012 21:40:51 -0800 (PST) From: Ron Simpson To: "App_rpt-users at ohnosec.org" Subject: [App_rpt-users] Woo Hoo!! Message-ID: <1326606051.67097.androidMobile at web125906.mail.ne1.yahoo.com> Content-Type: text/plain; charset="iso-8859-1" Update! I built my local control around a Motorola Spectra DTMF Mic and a powered speaker. Finally figured out what the DMK URI needed for proper switching, faked out the levels and connected to a node for a nice check out! Talked to someone on the WinSystem who gave me a good report!? Now to clean it up and package it all together. Spectra mics can be found easy enough. The bias circuit was taken right out if the MAXTRAC manual. Now to build a few more, thank you Jim and Dave for your help!! 73, Ron - N6GKJ Sent from Yahoo! Mail on Android -------------- 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 35, Issue 28 ********************************************* -------------------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------------------------------------------------------------------------- No virus found in this message. Checked by AVG - www.avg.com Version: 2012.0.1901 / Virus Database: 2109/4745 - Release Date: 01/15/12 -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Mon Jan 16 04:47:43 2012 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 15 Jan 2012 20:47:43 -0800 Subject: [App_rpt-users] ECHOLINK CONNECTIONS In-Reply-To: References: Message-ID: <01C3AD39-EF90-4296-AC35-24A6457E5D5F@me.com> Do they have an extra 3 and some zeros in front of the correct node number? -- Tim :wq On Jan 15, 2012, at 7:59 PM, Bradley Haney wrote: > When i am connected and i amusing the web trans i have noticed that the echolink stations that are connected node numbers do not match the Echolink nodes on the echolink website.. Could some one help me out with that _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From waynehale at mac.com Mon Jan 16 06:34:22 2012 From: waynehale at mac.com (Wayne Hale) Date: Sun, 15 Jan 2012 22:34:22 -0800 Subject: [App_rpt-users] Webtranceiver problems Message-ID: <4F13C4EE.6060900@mac.com> Just purchased a new Windows 7 desktop PC but having problems getting webtranceiver to work with my Allstar remote base node. From my HP laptop running the same version of Windows, same version of Firefox with Java extensions etc. the webtranceiver works perfectly. From my new desktop, same software, I can log into my account, the java applet starts, the software switches the radio to my default frequency, offset, and TX PL tone. Unfortunately that is where it stops. Although the screen "buttons" flash or blink when I go through the steps to log in, log in does in fact not happen. There is no audio from the system telling me I've connected. The ONLY button that seems to work is "Disconnect". Clicking that button does in deed disconnect from the node, the frequency display goes blank. I can click the Connect button again, it looks like connect is working but again, no audio or PTT even after doing the log in sequence. I've compared the laptop Firefox extensions and additions to the desktop and loaded everything that looks like it might be an issue, java in particular. This isn't exactly a node issue, the node works perfectly from my older desktop running WinXP SP3. Anyone got any ideas or seen the same thing happen? Thanks W6IZK Node 28146 From jed at jedbarton.com Mon Jan 16 06:54:27 2012 From: jed at jedbarton.com (Jed Barton) Date: Mon, 16 Jan 2012 01:54:27 -0500 Subject: [App_rpt-users] connection issues Message-ID: <65EE19795FDD4C94A043BC12577FD678@JEDI> Hey guys, Jed.n1jbc here. Hope this is the right list to post this too. I'm wet behing the ears when it comes to allstar. I got my account setup, but now trying to figure everything out. A little confused when it comes to the telephone portal. I tried connecting to node 2135 and it keeps telling me it's invalad. Any dieas what i might be doing wrong? Sincerest Regards, Jed From n9gmr at me.com Mon Jan 16 10:17:00 2012 From: n9gmr at me.com (Matt Roberts) Date: Mon, 16 Jan 2012 05:17:00 -0500 Subject: [App_rpt-users] connection issues In-Reply-To: <65EE19795FDD4C94A043BC12577FD678@JEDI> References: <65EE19795FDD4C94A043BC12577FD678@JEDI> Message-ID: <4278C34A-8C8D-4637-AAC5-9C7E18C561EA@me.com> Not all nodes allow you to connect on the phone. Matt Roberts n9gmr at me.com Sent from my iPhone On Jan 16, 2012, at 1:54 AM, Jed Barton wrote: > Hey guys, > Jed.n1jbc here. Hope this is the right list to post this too. > I'm wet behing the ears when it comes to allstar. > I got my account setup, but now trying to figure everything out. > A little confused when it comes to the telephone portal. I tried connecting > to node 2135 and it keeps telling me it's invalad. Any dieas what i might > be doing wrong? > > Sincerest Regards, > Jed > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From telesistant at hotmail.com Mon Jan 16 10:30:26 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Mon, 16 Jan 2012 02:30:26 -0800 Subject: [App_rpt-users] connection issues In-Reply-To: <65EE19795FDD4C94A043BC12577FD678@JEDI> References: <65EE19795FDD4C94A043BC12577FD678@JEDI> Message-ID: maybe they have their telephone portal access turned off > From: jed at jedbarton.com > To: app_rpt-users at ohnosec.org > Date: Mon, 16 Jan 2012 01:54:27 -0500 > Subject: [App_rpt-users] connection issues > > Hey guys, > Jed.n1jbc here. Hope this is the right list to post this too. > I'm wet behing the ears when it comes to allstar. > I got my account setup, but now trying to figure everything out. > A little confused when it comes to the telephone portal. I tried connecting > to node 2135 and it keeps telling me it's invalad. Any dieas what i might > be doing wrong? > > Sincerest Regards, > Jed > > _______________________________________________ > 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 bdboyle at bdboyle.com Mon Jan 16 13:00:39 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Mon, 16 Jan 2012 08:00:39 -0500 Subject: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 28 In-Reply-To: References: <013401ccd3fd$0af31070$20d93150$@kb2ear.net> Message-ID: That's what happens when autocorrect/autocapitalizaation steps in and "helps" you. -- Bryan Sent from my iPad On Jan 15, 2012, at 11:04 PM, "Jim W7RY" wrote: > Won't work (at least on my node) with the capital S. Needs to be small s > > 73 > Jim W7RY > > > From: Scott Weis > Sent: Sunday, January 15, 2012 7:15 PM > To: 'Bradley Haney' ; app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 28 > > System-config-network > > From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney > Sent: Sunday, January 15, 2012 9:01 PM > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 28 > > Ok I give my centos box will just not get on the network.. How do you manual change the network settings in centos.. I think i need to change the DNS servers and such > > > On Sun, Jan 15, 2012 at 11:00 AM, 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: Softphone to the repeater Ports... (Michael J. Wolthuis) > 2. Error Question (Steve Agee) > 3. Re: Error Question (Jim Duuuude) > 4. Re: Softphone to the repeater Ports... (Jim Duuuude) > 5. SOMETHING WRONG WITH THE SYSTEM? (Bradley Haney) > 6. Re: SOMETHING WRONG WITH THE SYSTEM? (Matt Roberts) > 7. RTCM and CTCSS pin 4 (Shaun Rudling) > 8. Woo Hoo!! (Ron Simpson) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 14 Jan 2012 13:16:33 -0500 > From: "Michael J. Wolthuis" > To: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Softphone to the repeater Ports... > Message-ID: <4F11C681.7010507 at msu.edu> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > I would like to do this also. Is there a document somewhere that shows > how to set it up for private LAN or for direct connection from a SIP > trunk? I would like to tie my local Asterisk phone system into my > repeater, but not sure on the setup for the Allstar side. > > Mike > kb8zgl > > > > ------------------------------ > > Message: 2 > Date: Sat, 14 Jan 2012 12:55:34 -0600 > From: "Steve Agee" > To: > Subject: [App_rpt-users] Error Question > Message-ID: <78529FEFA05A48B5888BD153D178E546 at steveea3dc3d27> > Content-Type: text/plain; format=flowed; charset="iso-8859-1"; > reply-type=original > > What would cause this error to happen? > > WARNING[20541] chan_usbradio.c: Error reading output space > > N5ZUA > > > ------------------------------ > > Message: 3 > Date: Sat, 14 Jan 2012 11:08:34 -0800 > From: Jim Duuuude > To: , app_rpt mailing list > > Subject: Re: [App_rpt-users] Error Question > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > > USB Sucks! > > > From: n5zua at earthlink.net > > To: App_rpt-users at ohnosec.org > > Date: Sat, 14 Jan 2012 12:55:34 -0600 > > Subject: [App_rpt-users] Error Question > > > > What would cause this error to happen? > > > > WARNING[20541] chan_usbradio.c: Error reading output space > > > > N5ZUA > > _______________________________________________ > > 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: 4 > Date: Sat, 14 Jan 2012 11:16:44 -0800 > From: Jim Duuuude > To: , app_rpt mailing list > > Subject: Re: [App_rpt-users] Softphone to the repeater Ports... > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > > in your Asterisk Dialplan, you need to invoke Rpt like this: > > exten => Something,1,rpt,1234|P (for Phone with function controlled PTT) > > -or- > > exten => Something,1,rpt,1234|Pv (for Voice-controlled PTT) > > (examples given for node number 1234) > > JIM WB6NIL > > > Date: Sat, 14 Jan 2012 13:16:33 -0500 > > From: wolthui3 at msu.edu > > To: app_rpt-users at ohnosec.org > > Subject: Re: [App_rpt-users] Softphone to the repeater Ports... > > > > I would like to do this also. Is there a document somewhere that shows > > how to set it up for private LAN or for direct connection from a SIP > > trunk? I would like to tie my local Asterisk phone system into my > > repeater, but not sure on the setup for the Allstar side. > > > > Mike > > kb8zgl > > > > _______________________________________________ > > 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: 5 > Date: Sat, 14 Jan 2012 17:02:26 -0600 > From: Bradley Haney > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > My node was reachable that iam configuring all day yesterday and then today > all of a sudden it is not.. when i try to ssh into the node it says > connection refused and its not showing up on online node list online... > > Do i need to re install the software? > > Please help > > Kc9gqr > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 6 > Date: Sat, 14 Jan 2012 18:34:33 -0500 > From: Matt Roberts > To: Bradley Haney > Cc: "app_rpt-users at ohnosec.org" > Subject: Re: [App_rpt-users] SOMETHING WRONG WITH THE SYSTEM? > Message-ID: <553D277E-75D2-4DCE-B0BC-A81B8249F7B2 at me.com> > Content-Type: text/plain; CHARSET=US-ASCII > > What's your node number? Did you specify the correct port number when connecting remotely? > > Matt Roberts > n9gmr at me.com > > Sent from my iPhone > > On Jan 14, 2012, at 6:02 PM, Bradley Haney wrote: > > > My node was reachable that iam configuring all day yesterday and then today all of a sudden it is not.. when i try to ssh into the node it says connection refused and its not showing up on online node list online... > > > > Do i need to re install the software? > > > > Please help > > > > Kc9gqr > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > ------------------------------ > > Message: 7 > Date: Sun, 15 Jan 2012 03:54:23 +0200 > From: Shaun Rudling > To: app_rpt-users at ohnosec.org, Jim Duuuude > Subject: [App_rpt-users] RTCM and CTCSS pin 4 > Message-ID: <4F1231CF.20103 at pmbnet.co.za> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > I could not get my Kenwood TKR-750 to pull down the RTCM pin 4 enough to > trigger the COR. The pin4 voltage got down to 1.1v which is not enough. > > I fixed this by soldering a 540ohm resister from RTCM pin 4 to ground. > It was just enough to bring it down to a switching point when the > Kenwood sensed my 88.5Hz tone. > > Shaun > zr5s > > > > > > > > > > ------------------------------ > > Message: 8 > Date: Sat, 14 Jan 2012 21:40:51 -0800 (PST) > From: Ron Simpson > To: "App_rpt-users at ohnosec.org" > Subject: [App_rpt-users] Woo Hoo!! > Message-ID: > <1326606051.67097.androidMobile at web125906.mail.ne1.yahoo.com> > Content-Type: text/plain; charset="iso-8859-1" > > Update! > > I built my local control around a Motorola Spectra DTMF Mic and a powered speaker. Finally figured out what the DMK URI needed for proper switching, faked out the levels and connected to a node for a nice check out! Talked to someone on the WinSystem who gave me a good report!? Now to clean it up and package it all together. > > Spectra mics can be found easy enough. The bias circuit was taken right out if the MAXTRAC manual. Now to build a few more, thank you Jim and Dave for your help!! > > 73, > > Ron - N6GKJ > Sent from Yahoo! Mail on Android > > -------------- 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 35, Issue 28 > ********************************************* > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4745 - Release Date: 01/15/12 > > _______________________________________________ > 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 kc9gqr at gmail.com Mon Jan 16 13:15:39 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Mon, 16 Jan 2012 07:15:39 -0600 Subject: [App_rpt-users] ECHOLINK CONNECTIONS In-Reply-To: <01C3AD39-EF90-4296-AC35-24A6457E5D5F@me.com> References: <01C3AD39-EF90-4296-AC35-24A6457E5D5F@me.com> Message-ID: nope.. numbers don't even match... i connceted my droid to the link and the number that poped up was different each time. On Sun, Jan 15, 2012 at 10:47 PM, Tim Sawyer wrote: > Do they have an extra 3 and some zeros in front of the correct node number? > -- > Tim > :wq > > On Jan 15, 2012, at 7:59 PM, Bradley Haney wrote: > > > When i am connected and i amusing the web trans i have noticed that > the echolink stations that are connected node numbers do not match the > Echolink nodes on the echolink website.. Could some one help me out with > that _______________________________________________ > > 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 bdboyle at bdboyle.com Mon Jan 16 13:48:56 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Mon, 16 Jan 2012 08:48:56 -0500 Subject: [App_rpt-users] ECHOLINK CONNECTIONS In-Reply-To: References: <01C3AD39-EF90-4296-AC35-24A6457E5D5F@me.com> Message-ID: <4F142AC8.9090303@bdboyle.com> On 1/16/12 8:15 AM, Bradley Haney wrote: > nope.. numbers don't even match... i connceted my droid to the link and > the number that poped up was different each time. > If you're not connecting directly from the droid/samsung/iPhone/??? handset to the node and going through a proxy, you are picking up the proxy node number rather than your own (even though , since you authenticate to the proxy, the intermediate node is what actually makes the connection to the end point). That's what Echolink sends out; app_rpt is only displaying what the Echolink software sends it, so, it's not an app_rpt problem. Just demoed it here to see what's going on while looking at a tail -f on my asterisk messages file. Connected via a public proxy (which may change from time to time, even from handset to handset standing next to each other...just did it here on my node with an iPhone and android something or other...two apps, two handsets, two different node numbers...then connected directly with my iPhone...and it picked up my proper number, not the proxy node number...) It's not that big of a deal. I don't announce Echolink connections when they connect...I'm more concerned with the Allstar nodes correctly reporting than people driving by aimlessly connecting through Echo. app_rpt is NOT a native Echolink application, so, it depends on downloading the authenticated node list on a regular basis (every 5 minutes iirc, so as not to overload the echolink servers and probably get Jonathan's shorts in a twist...) instead of interactively authenticating. The proxies are always there (well, as much as anything that is run by volunteers...), so, they're in the list more often than not, which is why you can start the app on the handset, authenticate to a proxy, and almost immediately get connected to an Allstar system versus connecting directly and getting an 'unauthorized' reply when you try and connect to an allstar node. IF you're using a proxy, you have no guarantee that you will get the same one each time, or ever get to a proxy to begin with. So...why is this a concern? -- Bryan WB0YLE 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 ke2n at cs.com Mon Jan 16 17:23:14 2012 From: ke2n at cs.com (Ken) Date: Mon, 16 Jan 2012 12:23:14 -0500 (EST) Subject: [App_rpt-users] ECHOLINK CONNECTIONS In-Reply-To: References: <01C3AD39-EF90-4296-AC35-24A6457E5D5F@me.com> Message-ID: <8CEA28AAA0C8872-241C-97429@webmail-m159.sysops.aol.com> When people connect with a proxy (and that includes all smartphone apps) the number that shows up is likely to be bogus. It may be the node number of the proxy server, or app gateway, but I don't think you can count on that either. When people connect to my node using a smart phone I generally do not hear any node number just " " connected. Ken -----Original Message----- From: Bradley Haney To: Tim Sawyer Cc: app_rpt mailing list Sent: Mon, Jan 16, 2012 8:15 am Subject: Re: [App_rpt-users] ECHOLINK CONNECTIONS nope.. numbers don't even match... i connceted my droid to the link and the number that poped up was different each time. On Sun, Jan 15, 2012 at 10:47 PM, Tim Sawyer wrote: Do they have an extra 3 and some zeros in front of the correct node number? -- Tim :wq On Jan 15, 2012, at 7:59 PM, Bradley Haney wrote: > When i am connected and i amusing the web trans i have noticed that the echolink stations that are connected node numbers do not match the Echolink nodes on the echolink website.. Could some one help me out with that _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users _______________________________________________ pp_rpt-users mailing list pp_rpt-users at ohnosec.org ttp://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From waynehale at mac.com Mon Jan 16 19:02:35 2012 From: waynehale at mac.com (Wayne Hale) Date: Mon, 16 Jan 2012 11:02:35 -0800 Subject: [App_rpt-users] Another webtranceiver oddity Message-ID: <4F14744B.9080204@mac.com> Just for fun and grins, on my Windows 7 desktop that doesn't work properly with Webtranceiver, I launched Oracle's VM Virtual Box and opened a virtual machine running Linux Mint version 12. Opened Firefox under Linux , logged into my Allstar Node and instantly got the audio feedback saying I was connected. I then logged in with my node password and got audio confirmation that I was logged in. I can enter macro commands to change frequencies and that works ok BUT the PTT button doesn't key the transmitter. 90% there in having a working node from the new PC even if I'm having to use a virtual machine to do it. The virtual machine passes all I/O down to the Windows system resources then out to the network to control my node which leads me to wonder if it isn't some issue between various browsers and the java code in webtranceiver? I've tried Firefox, Internet Explorer, Opera, Google Chrome and even Safari. Being a little more methodical today, it appears that all of the browsers under Win7 will actually log in to the node. The macros change frequencies and other parameters ok, you just don't get any audio either from the radio or system acknowledging you logged in, nor do you hear audio from the radio even if you unsquelch it. The PTT does not work under any browser on my new PC. What might be a clue is that under Linux, it is probably using a different version of the Java interpreter, at least the audio passes under that version although the transmit button (PTT) does not. Wonder if anyone has Windows 7 professional version that does XP emulation and try running a browser under that and see if webtranceiver will work under xp emulation? I have the home version and can't see laying out another 80 to upgrade to the pro version just to get XP emulation. Wayne W6IZK node 28146 From vacuumtubesforever at gmail.com Mon Jan 16 21:58:46 2012 From: vacuumtubesforever at gmail.com (Ed Wilhelm) Date: Mon, 16 Jan 2012 16:58:46 -0500 Subject: [App_rpt-users] Another webtranceiver oddity In-Reply-To: <4F14744B.9080204@mac.com> References: <4F14744B.9080204@mac.com> Message-ID: <4F149D96.50108@gmail.com> Running Windows 7 Pro on this laptop with Firefox 9.01 and web transceiver works fine. I tried running the XP VM with Firefox and it receives OK and I can key PTT but it makes some very very strange sounds on transmit. (no normal audio at all). I also run OpenSuse 11.4 on VMware and it works fine on the web transceiver. Ed, W8VT On 1/16/2012 2:02 PM, Wayne Hale wrote: > Just for fun and grins, on my Windows 7 desktop that doesn't work > properly with Webtranceiver, I launched Oracle's VM Virtual Box and > opened a virtual machine running Linux Mint version 12. Opened > Firefox under Linux , logged into my Allstar Node and instantly got > the audio feedback saying I was connected. I then logged in with my > node password and got audio confirmation that I was logged in. I can > enter macro commands to change frequencies and that works ok BUT the > PTT button doesn't key the transmitter. 90% there in having a working > node from the new PC even if I'm having to use a virtual machine to do > it. > > The virtual machine passes all I/O down to the Windows system > resources then out to the network to control my node which leads me to > wonder if it isn't some issue between various browsers and the java > code in webtranceiver? I've tried Firefox, Internet Explorer, Opera, > Google Chrome and even Safari. > > Being a little more methodical today, it appears that all of the > browsers under Win7 will actually log in to the node. The macros > change frequencies and other parameters ok, you just don't get any > audio either from the radio or system acknowledging you logged in, nor > do you hear audio from the radio even if you unsquelch it. The PTT > does not work under any browser on my new PC. > > What might be a clue is that under Linux, it is probably using a > different version of the Java interpreter, at least the audio passes > under that version although the transmit button (PTT) does not. > > Wonder if anyone has Windows 7 professional version that does XP > emulation and try running a browser under that and see if > webtranceiver will work under xp emulation? I have the home version > and can't see laying out another 80 to upgrade to the pro version just > to get XP emulation. > > Wayne W6IZK > node 28146 > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From wolthui3 at msu.edu Tue Jan 17 00:31:56 2012 From: wolthui3 at msu.edu (Michael J. Wolthuis) Date: Mon, 16 Jan 2012 19:31:56 -0500 Subject: [App_rpt-users] ztdummy failing to build on VIA MiniITX machine Message-ID: <4F14C17C.6070504@msu.edu> I have allstar loaded on my VIA MiniITX machine after a lot of struggling with it, but couldn't boot the ACID load unfortunately, so had to try another way. Now I am really close, but I can't get ztdummy to build: *** Warning: "hrtimer_set_expires" [/usr/src/astsrc/zaptel/kernel/ztdummy.ko] undefined! That is the error I get, which I know means the kernel doesn't have the timer set defined in it. I thought there was another way to build zaptel though so it would work? I downloaded the latest SVN from digium and it compiles and modprobe loads it fine, but appears that version is too new... I get call errors to duhundi then. I know, just time for a new machine that will load the acid out of the box. Mike kb8zgl From Ramesh at va3uv.com Tue Jan 17 03:24:31 2012 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Mon, 16 Jan 2012 22:24:31 -0500 Subject: [App_rpt-users] app_rpt and P25 (?) Message-ID: <4F14E9EF.4050506@va3uv.com> Hey All; Does anyone know anything about this project: http://www.sedition.org.au/op25/wiki/RepeaterPage This article seems to suggest some sort of 'channel driver' between app_rpt and P25???? Unfortunately, the link in the article redirects to a University in Australia, which prompts for a user name and passwd! Anyone have any scoop on this? Thx! Ramesh. From kc9gqr at gmail.com Wed Jan 18 06:41:25 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Wed, 18 Jan 2012 00:41:25 -0600 Subject: [App_rpt-users] Parital success Message-ID: I have everything up and running except when i want to change a setting on my node... it will not down load from the web portal the screen just looks at me and then if i do the curl thing i get to do you wish to use the pre configured user information and i put yes and it says filed to download configuration list.. so then i try it not to use the user info and password and then i get an error failed to download configuration list.. Any suggestions? I have not figured out on how to actually get into the file to edit manual.. I see the long script but not sure how to get to the /etc ....... Bradley -------------- next part -------------- An HTML attachment was scrubbed... URL: From n3vsi1 at verizon.net Wed Jan 18 23:49:31 2012 From: n3vsi1 at verizon.net (Larry) Date: Wed, 18 Jan 2012 18:49:31 -0500 Subject: [App_rpt-users] Setup Message-ID: <9439CFFCFD2346E99C2ADEC1C214B654@LarryPC> Hello, name is Larry here 28094 n3vsi. Looking for some help in getting my allstar node up and running. 1. Have the acid cd already loaded. everything loaded find. port 222 forward in router 2. have the URI 3. have radio and cable for URI 4. have node # 28094 5. everything is hooked up and waiting Thanks for any help. Larry -------------- next part -------------- An HTML attachment was scrubbed... URL: From ke2n at cs.com Thu Jan 19 01:16:33 2012 From: ke2n at cs.com (Ken) Date: Wed, 18 Jan 2012 20:16:33 -0500 Subject: [App_rpt-users] Setup In-Reply-To: <9439CFFCFD2346E99C2ADEC1C214B654@LarryPC> References: <9439CFFCFD2346E99C2ADEC1C214B654@LarryPC> Message-ID: <000c01ccd647$fbda46b0$f38ed410$@com> That is a pretty broad question. Can you say what is it you WANT to do? Your node can probably already be used as a "hub" node. This is a node which has no Radio hardware associated with it whatsoever. For that you need to have port 4569 through the router. Once you have done that, other nodes and web transceiver users can connect to your node. I tried just now and it failed. So I suppose you are missing the router setup. Have you configured the system? (in your case I suppose simplex node for half duplex operation). You do that from the "portal" or manually. The portal has a server "setup wizard" that lets you configure everything you need. Have you done that? After you have done that (and connected your radio) you need to set the audio levels. See: https://allstarlink.org/usbradio.html Then you get your hands on *another* radio (or HT) and talk to your node. It will accept DTMF commands to read out information on the air or to connect your node to some other node. Then you are in business - you can work the world from your HT (among other things.) 73 Ken From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Larry Sent: Wednesday, January 18, 2012 6:50 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] Setup Hello, name is Larry here 28094 n3vsi. Looking for some help in getting my allstar node up and running. 1. Have the acid cd already loaded. everything loaded find. port 222 forward in router 2. have the URI 3. have radio and cable for URI 4. have node # 28094 5. everything is hooked up and waiting Thanks for any help. Larry -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Thu Jan 19 03:03:14 2012 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 18 Jan 2012 19:03:14 -0800 Subject: [App_rpt-users] Setup In-Reply-To: <9439CFFCFD2346E99C2ADEC1C214B654@LarryPC> References: <9439CFFCFD2346E99C2ADEC1C214B654@LarryPC> Message-ID: <7E84A9E8-B43D-4EA7-83A1-6F1679D586B7@me.com> The easiest way to start is to set up your node configuration on the Allstar site. First thing you do is login to https://allstarlink.org and go into account setting and make your profile a system operator. That will open up a whole bunch of new options on the web site which you can use to configure your server and node. Go thru all the options. Note that some options will get grayed out after changing one thing. You have to back out and come back in to the settings and you'll be able to change those things. Give that a try and let us know how you do. Then we'll figure out how to download the portal configuration to your computer. Normally the portal stuff is done first the you answer in the affirmative the question about downloading the confirmation during the ACID install. But I'm sure there is some way to download it after the fact. -- Tim :wq On Jan 18, 2012, at 3:49 PM, Larry wrote: > Hello, name is Larry here 28094 n3vsi. Looking for some help in getting my allstar node up and running. > > 1. Have the acid cd already loaded. everything loaded find. port 222 forward in router > 2. have the URI > 3. have radio and cable for URI > 4. have node # 28094 > 5. everything is hooked up and waiting > > Thanks for any help. > > Larry > _______________________________________________ > 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 conny at n5hc.com Thu Jan 19 16:06:53 2012 From: conny at n5hc.com (Conny Jonsson) Date: Thu, 19 Jan 2012 09:06:53 -0700 Subject: [App_rpt-users] RTCM general-purpose mode buffers Message-ID: <43FB6189-BFF8-43FB-BFC0-DDD32BE4DE0E@n5hc.com> What's the minimum usable buffer length for the RTCM Tx Buffer Length and voter.conf buflen when operating the RTCM in general-purpose mode? 73 de N5HC -------------- next part -------------- An HTML attachment was scrubbed... URL: From mhebert1975 at gmail.com Thu Jan 19 23:45:15 2012 From: mhebert1975 at gmail.com (Michael Hebert) Date: Thu, 19 Jan 2012 23:45:15 +0000 Subject: [App_rpt-users] Allstar Link help Message-ID: <1420966754-1327016715-cardhu_decombobulator_blackberry.rim.net-2088084484-@b1.c8.bise6.blackberry> All, I am trying to register on the Allstar Link and having problems. My friend recommend trying to post here. My callsign is KD5DFB and I originally registered with my mike-hebert at att.net shortly after I registered I changed email addresses and can no longer access my att.net emails. I have tried to reset my password but of course it goes to my old email. Can someone please help me access my Allstar link account to change my email so that I can get the registration email sent to mhebert1975 at gmail.com Thanks for your help in advance Respectfully, Michael Hebert KD5DFB From yokshs at gmail.com Fri Jan 20 05:23:02 2012 From: yokshs at gmail.com (K&R Yoksh) Date: Thu, 19 Jan 2012 23:23:02 -0600 Subject: [App_rpt-users] TK-840 service manual needed Message-ID: Hello Pierre, I have just been working on a similar project for my Kenwood TK860 and TK862. Perhaps my notes may be of use to you? http://www.qsl.net/k0kn/projects.html#KWTK 73. Kyle K0KN From kc9gqr at gmail.com Fri Jan 20 06:21:31 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Fri, 20 Jan 2012 00:21:31 -0600 Subject: [App_rpt-users] CONFIG FILE HELP... Message-ID: what is the path to get to the long config file for the rpt so i can set up more DTMF functions and such along with echolink announcements? i did a view rptr.conf under the directory of asterisk but i can't find all of the dtmf stuff or telementry stuff or anything like that... Bradley -------------- next part -------------- An HTML attachment was scrubbed... URL: From ke2n at cs.com Fri Jan 20 09:27:06 2012 From: ke2n at cs.com (Ken) Date: Fri, 20 Jan 2012 04:27:06 -0500 Subject: [App_rpt-users] CONFIG FILE HELP... In-Reply-To: References: Message-ID: <001701ccd755$ad277ce0$077676a0$@com> The config files are in /etc/asterisk/ You can find files in Linux with the locate command as in locate rpt.conf but first you need to do updatedb (no capital letters - in case something "corrects" my typing above GL Ken From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney Sent: Friday, January 20, 2012 1:22 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] CONFIG FILE HELP... what is the path to get to the long config file for the rpt so i can set up more DTMF functions and such along with echolink announcements? i did a view rptr.conf under the directory of asterisk but i can't find all of the dtmf stuff or telementry stuff or anything like that... Bradley -------------- next part -------------- An HTML attachment was scrubbed... URL: From petem001 at hotmail.com Fri Jan 20 12:54:31 2012 From: petem001 at hotmail.com (pete M) Date: Fri, 20 Jan 2012 07:54:31 -0500 Subject: [App_rpt-users] TK-840 service manual needed In-Reply-To: References: Message-ID: It's ok Kyle I have used the kct-19 accessory cable to connect to both radio's and from there I had access to descriminator audio and ptt and cor and flat audio. But A good service manual would never be rejected ;-) -----Message d'origine----- From: K&R Yoksh Sent: Friday, January 20, 2012 12:23 AM To: app_rpt Subject: Re: [App_rpt-users] TK-840 service manual needed Hello Pierre, I have just been working on a similar project for my Kenwood TK860 and TK862. Perhaps my notes may be of use to you? http://www.qsl.net/k0kn/projects.html#KWTK 73. Kyle K0KN _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From n9gmr at me.com Fri Jan 20 14:31:20 2012 From: n9gmr at me.com (Matt Roberts) Date: Fri, 20 Jan 2012 09:31:20 -0500 Subject: [App_rpt-users] CONFIG FILE HELP... In-Reply-To: References: Message-ID: <84166CCD-69FB-4E2E-823F-A45A49BEBA36@me.com> On Jan 20, 2012, at 1:21 AM, Bradley Haney wrote: > what is the path to get to the long config file for the rpt so i can set up more DTMF functions and such along with echolink announcements? i did a view rptr.conf under the directory of asterisk but i can't find all of the dtmf stuff or telementry stuff or anything like that... /etc/asterisk/rpt.conf You have to add a lot of functions, especially the COP commands. Matt Roberts n9gmr at me.com Call Sign N9GMR IRLP 4515 EchoLink 640860 Allstar 28142 From george at dyb.com Fri Jan 20 18:46:06 2012 From: george at dyb.com (George Csahanin) Date: Fri, 20 Jan 2012 12:46:06 -0600 Subject: [App_rpt-users] CONFIG FILE HELP... References: <84166CCD-69FB-4E2E-823F-A45A49BEBA36@me.com> Message-ID: <211F994C80C644479B7499DEA73C9192@lintv.com> What you may actually be looking for is best found in the app_rpt.c source code. The generally available sample config files aren't necessarily including the more recent info. http://svn.ohnosec.org/viewvc/projects/allstar/astsrc-1.4.23-pre/trunk/asterisk/apps/app_rpt.c?root=svn&view=markup It's a pretty big file, so it may take a bit of time to load. Somewhere areound line 50 is where all the command stuff begins. Something tells me that is what you're looking for. GeorgeC W2DB 2360 ----- Original Message ----- From: "Matt Roberts" To: "Bradley Haney" Cc: Sent: Friday, January 20, 2012 8:31 AM Subject: Re: [App_rpt-users] CONFIG FILE HELP... > > On Jan 20, 2012, at 1:21 AM, Bradley Haney wrote: > >> what is the path to get to the long config file for the rpt so i can >> set up more DTMF functions and such along with echolink announcements? >> i did a view rptr.conf under the directory of asterisk but i can't >> find all of the dtmf stuff or telementry stuff or anything like that... > > /etc/asterisk/rpt.conf > > You have to add a lot of functions, especially the COP commands. > > > Matt Roberts > n9gmr at me.com > Call Sign N9GMR > IRLP 4515 > EchoLink 640860 > Allstar 28142 > > > From george at dyb.com Fri Jan 20 18:52:03 2012 From: george at dyb.com (George Csahanin) Date: Fri, 20 Jan 2012 12:52:03 -0600 Subject: [App_rpt-users] Slightly OT:U-Verse References: Message-ID: Hi everyone. I just decided teo re-arrange my TV/phone/Internet stuff, and ordered AT&T Uverse, and was assured three times that I can keep my present block of static IP addresses I have with my Business HSI Elite-S DSL plan. I have read online many horror stories related to this service and I'm curious if anyone out there in app_rpt land is using the multiple static IP U-Verse service with APP_RPT or anything else. If it all works well the speed improvement will be pretty significant up to 24MB down/3MB up. Present plan is 6MB down, 768KBPS up, and I run name mail and web servers and a VPN to another house, plus node 2360. GeorgeC W2DB 2360 From fred at moses.bz Fri Jan 20 19:18:27 2012 From: fred at moses.bz (Fredric Moses) Date: Fri, 20 Jan 2012 14:18:27 -0500 Subject: [App_rpt-users] Slightly OT:U-Verse In-Reply-To: References: Message-ID: Can let you know for sure tomorrow as I am installing a new repeater site( Node 28270,28271 and 28272 ). and we got U-Verse installed with a static block week or so ago.. I tested the static block with my laptop and they worked fine..?. But we are installing the repeater and app_rpt based controller here tomorrow.. But have no reason to think it won't work as I already verified the static address group in the uverse? Now all we got was internet.. No sense in paying for TV for the rooftop location.. not sure if that would make a difference? but it is a UVerse gateway just like I had at my apartment for TV when I lived there. -- Fredric Moses - W8FSM - WQOG498 fred at moses.bz On Jan 20, 2012, at 1:52 PM, George Csahanin wrote: > Hi everyone. > > I just decided teo re-arrange my TV/phone/Internet stuff, and ordered AT&T Uverse, and was assured three times that I can keep my present block of static IP addresses I have with my Business HSI Elite-S DSL plan. I have read online many horror stories related to this service and I'm curious if anyone out there in app_rpt land is using the multiple static IP U-Verse service with APP_RPT or anything else. > > If it all works well the speed improvement will be pretty significant up to 24MB down/3MB up. Present plan is 6MB down, 768KBPS up, and I run name mail and web servers and a VPN to another house, plus node 2360. > > GeorgeC > W2DB > 2360 > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From ismaelisuani at gmail.com Fri Jan 20 19:35:10 2012 From: ismaelisuani at gmail.com (Ismael Isuani) Date: Fri, 20 Jan 2012 16:35:10 -0300 Subject: [App_rpt-users] Process calls with AGI Message-ID: I would like to send all incoming calls in RPT to my AGI script and then process them to save in database. Is it possible ? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Fri Jan 20 21:29:27 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Fri, 20 Jan 2012 13:29:27 -0800 Subject: [App_rpt-users] Slightly OT:U-Verse In-Reply-To: References: , Message-ID: I wish you all the luck in the world. I have heard MANY horror stories having to do with U-verse. JIM WB6NIL > From: george at dyb.com > To: app_rpt-users at ohnosec.org > Date: Fri, 20 Jan 2012 12:52:03 -0600 > Subject: [App_rpt-users] Slightly OT:U-Verse > > Hi everyone. > > I just decided teo re-arrange my TV/phone/Internet stuff, and ordered AT&T > Uverse, and was assured three times that I can keep my present block of > static IP addresses I have with my Business HSI Elite-S DSL plan. I have > read online many horror stories related to this service and I'm curious if > anyone out there in app_rpt land is using the multiple static IP U-Verse > service with APP_RPT or anything else. > > If it all works well the speed improvement will be pretty significant up to > 24MB down/3MB up. Present plan is 6MB down, 768KBPS up, and I run name mail > and web servers and a VPN to another house, plus node 2360. > > GeorgeC > W2DB > 2360 > > _______________________________________________ > 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 bbrown at byrg.net Fri Jan 20 21:45:41 2012 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Fri, 20 Jan 2012 15:45:41 -0600 Subject: [App_rpt-users] Slightly OT:U-Verse In-Reply-To: References: Message-ID: HI all Been using it for a couple of years now and have had no issues, I have a dynamic IP and it has never changed in 2 years.... -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://sm0kenet.net http://byrg.net http://kcdstar.byrg.net http://w0nqx.blogspot.com Quis custodiet ipsos custodes? Its not how many watts you have, its the SIZE of your watts that matter! -- Johnny Marshall, W0JM-SK -- On Fri, Jan 20, 2012 at 3:29 PM, Jim Duuuude wrote: > I wish you all the luck in the world. I have heard MANY horror stories > having to do with U-verse. > > JIM WB6NIL > > > From: george at dyb.com > > To: app_rpt-users at ohnosec.org > > Date: Fri, 20 Jan 2012 12:52:03 -0600 > > Subject: [App_rpt-users] Slightly OT:U-Verse > > > > > Hi everyone. > > > > I just decided teo re-arrange my TV/phone/Internet stuff, and ordered > AT&T > > Uverse, and was assured three times that I can keep my present block of > > static IP addresses I have with my Business HSI Elite-S DSL plan. I have > > read online many horror stories related to this service and I'm curious > if > > anyone out there in app_rpt land is using the multiple static IP U-Verse > > service with APP_RPT or anything else. > > > > If it all works well the speed improvement will be pretty significant up > to > > 24MB down/3MB up. Present plan is 6MB down, 768KBPS up, and I run name > mail > > and web servers and a VPN to another house, plus node 2360. > > > > GeorgeC > > W2DB > > 2360 > > > > _______________________________________________ > > 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 ismaelisuani at gmail.com Fri Jan 20 23:02:54 2012 From: ismaelisuani at gmail.com (Ismael Isuani) Date: Fri, 20 Jan 2012 20:02:54 -0300 Subject: [App_rpt-users] MDC1200 and recording files Message-ID: Hi all I have a node with usbradio and rpt working perfectly, multiple iaxrpt clients are connected to that node. I set archivedir for audio recording, but I need to identify each of the clients in the recording file name by MDC1200. example: /var/spool/asterisk/monitor/nodename /${MDC1200}_date.wav I configured rpt.conf as follows: [events] TEMPVAR=v|e|$ {RPT_TXKEYED} *971=f|t|TEMPVAR [functions] 97=autopatchup,noct=1,farenddisconnect=1,dialtime=20000 extensions.conf [radio] exten => 1,1, MixMonitor .. # MixMonitor MDCVAR ? [mdcmacro] I1234 = Should I set a MDCVAR for later use with MixMonitor? Any ideas? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From ismaelisuani at gmail.com Fri Jan 20 23:02:55 2012 From: ismaelisuani at gmail.com (Ismael Isuani) Date: Fri, 20 Jan 2012 20:02:55 -0300 Subject: [App_rpt-users] MDC1200 and recording files Message-ID: Hi all I have a node with usbradio and rpt working perfectly, multiple iaxrpt clients are connected to that node. I set archivedir for audio recording, but I need to identify each of the clients in the recording file name by MDC1200. example: /var/spool/asterisk/monitor/nodename /${MDC1200}_date.wav I configured rpt.conf as follows: [events] TEMPVAR=v|e|$ {RPT_TXKEYED} *971=f|t|TEMPVAR [functions] 97=autopatchup,noct=1,farenddisconnect=1,dialtime=20000 extensions.conf [radio] exten => 1,1, MixMonitor .. # MixMonitor MDCVAR ? [mdcmacro] I1234 = Should I set a MDCVAR for later use with MixMonitor? Any ideas? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From mcheavens at usa.net Fri Jan 20 23:14:43 2012 From: mcheavens at usa.net (Mark Cheavens) Date: Fri, 20 Jan 2012 17:14:43 -0600 Subject: [App_rpt-users] Slightly OT:U-Verse In-Reply-To: References: Message-ID: <7.0.1.0.2.20120120171045.04776ff0@usa.net> George, I have U-Verse with static IP's at one of my locations. The "static" ip's are programmed and assigned by the "residential gateway". The service has been very stable and works great. Programming the gateway is a pain in the @$$. You don't assign the devices a static, they MUST dhcp the static from the gateway. I was an early adopter of their static IP service and it was not fun to get the information from U-Verse when I did it. (they were clueless how to program it). Mark KC5EVE (BTW - Jim Reese had it at his old house, I don't know what he is using now.) At 12:52 PM 1/20/2012, George Csahanin wrote: >Hi everyone. > >I just decided teo re-arrange my TV/phone/Internet stuff, and >ordered AT&T Uverse, and was assured three times that I can keep my >present block of static IP addresses I have with my Business HSI >Elite-S DSL plan. I have read online many horror stories related to >this service and I'm curious if anyone out there in app_rpt land is >using the multiple static IP U-Verse service with APP_RPT or anything else. > >If it all works well the speed improvement will be pretty >significant up to 24MB down/3MB up. Present plan is 6MB down, >768KBPS up, and I run name mail and web servers and a VPN to another >house, plus node 2360. > >GeorgeC >W2DB >2360 >_______________________________________________ >App_rpt-users mailing list >App_rpt-users at ohnosec.org >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From kc9gqr at gmail.com Sat Jan 21 00:41:36 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Fri, 20 Jan 2012 18:41:36 -0600 Subject: [App_rpt-users] How to view everything in the .CONF's Message-ID: I am looking for the telementry and dtmf stuff in the .conf's and can't seem to find them.. Any thoughts -------------- next part -------------- An HTML attachment was scrubbed... URL: From ke2n at cs.com Sat Jan 21 00:55:10 2012 From: ke2n at cs.com (Ken) Date: Fri, 20 Jan 2012 19:55:10 -0500 Subject: [App_rpt-users] How to view everything in the .CONF's In-Reply-To: References: Message-ID: <003801ccd7d7$53741a00$fa5c4e00$@com> If you saw my posting this morning, you found the config file here /etc/asterisk/rpt.conf See http://ohnosec.org/drupal/node/78 For the contents of the various config files The DTMF functions are in the stanza normally called [functions] You can add or change functions as described here http://ohnosec.org/drupal/node/144 The telemetry stuff (like courtesy tones) are in the stanza usually called [telemetry] A sample telemetry stanza is shown here http://ohnosec.org/drupal/node/96 73 Ken Spend a little time looking in the Knowledge Base. http://ohnosec.org/drupal/node/4 From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney Sent: Friday, January 20, 2012 7:42 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] How to view everything in the .CONF's I am looking for the telementry and dtmf stuff in the .conf's and can't seem to find them.. Any thoughts -------------- next part -------------- An HTML attachment was scrubbed... URL: From dobbins125 at yahoo.com Sat Jan 21 18:06:01 2012 From: dobbins125 at yahoo.com (Keith Dobbins) Date: Sat, 21 Jan 2012 10:06:01 -0800 (PST) Subject: [App_rpt-users] MSI CX700D and Limey Linux Message-ID: <1327169161.87468.YahooMailNeo@web112109.mail.gq1.yahoo.com> Will Limey Linux run on this motherboard? I got offered a couple of em just wanted to check first before I look into using them. Keith Dobbins A.S. Flight Paramedic 3402 Linden Street Parkersburg, WV 26104-1608 Amateur Radio Call Sign: KC8RFW -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Sat Jan 21 18:09:42 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Sat, 21 Jan 2012 10:09:42 -0800 Subject: [App_rpt-users] MSI CX700D and Limey Linux In-Reply-To: <1327169161.87468.YahooMailNeo@web112109.mail.gq1.yahoo.com> References: <1327169161.87468.YahooMailNeo@web112109.mail.gq1.yahoo.com> Message-ID: no Date: Sat, 21 Jan 2012 10:06:01 -0800 From: dobbins125 at yahoo.com To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] MSI CX700D and Limey Linux Will Limey Linux run on this motherboard? I got offered a couple of em just wanted to check first before I look into using them. Keith Dobbins A.S. Flight Paramedic 3402 Linden Street Parkersburg, WV 26104-1608 Amateur Radio Call Sign: KC8RFW _______________________________________________ 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 Sat Jan 21 13:18:42 2012 From: vencl at att.net (Lu Vencl) Date: Sat, 21 Jan 2012 07:18:42 -0600 Subject: [App_rpt-users] Slightly OT:U-Verse In-Reply-To: References: Message-ID: I have a static block of 6 and have had no issues at all. In fact that is what runs the FLA HUB. It has been rock solid. I also work for AT&T so if anyone has issues and have exhausted the normal course of filing trouble tickets etc get with me. KA4EPS Sent from my iPhone, Lu Vencl On Jan 20, 2012, at 3:45 PM, Bob Brown - W?NQX wrote: > HI all > > Been using it for a couple of years now and have had no issues, I have a dynamic IP and it has never changed in 2 years.... > > > > > -- > Thanks in Advance > > Bob Brown, W?NQX > > Kansas City Metro Area > > http://sm0kenet.net > > http://byrg.net > > http://kcdstar.byrg.net > > http://w0nqx.blogspot.com > > Quis custodiet ipsos custodes? > > Its not how many watts you have, > its the SIZE of your watts that matter! -- Johnny Marshall, W0JM-SK > -- > > > > > On Fri, Jan 20, 2012 at 3:29 PM, Jim Duuuude wrote: > I wish you all the luck in the world. I have heard MANY horror stories having to do with U-verse. > > JIM WB6NIL > > > From: george at dyb.com > > To: app_rpt-users at ohnosec.org > > Date: Fri, 20 Jan 2012 12:52:03 -0600 > > Subject: [App_rpt-users] Slightly OT:U-Verse > > > > > Hi everyone. > > > > I just decided teo re-arrange my TV/phone/Internet stuff, and ordered AT&T > > Uverse, and was assured three times that I can keep my present block of > > static IP addresses I have with my Business HSI Elite-S DSL plan. I have > > read online many horror stories related to this service and I'm curious if > > anyone out there in app_rpt land is using the multiple static IP U-Verse > > service with APP_RPT or anything else. > > > > If it all works well the speed improvement will be pretty significant up to > > 24MB down/3MB up. Present plan is 6MB down, 768KBPS up, and I run name mail > > and web servers and a VPN to another house, plus node 2360. > > > > GeorgeC > > W2DB > > 2360 > > > > _______________________________________________ > > 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 george at dyb.com Sat Jan 21 18:25:28 2012 From: george at dyb.com (George Csahanin) Date: Sat, 21 Jan 2012 12:25:28 -0600 Subject: [App_rpt-users] [SPAM] Re: Slightly OT:U-Verse References: Message-ID: <09DD17FD8463482E9F07F4CD622FE815@lintv.com> Thanks Lu Mark 5EVE talked me off the ledge earlier, though I figure I'll not be able t host my web server, name server, etc for a few days. Most people say it takes three or four visits to get someone out who knows what's going on. I may offload my web...or more specifically my mail server/DNS to a cheap month by mo0nth hosting service till I get it all working. I had been assured that I get to keep my existing block of addresses with my AT&T DSL, but that's not looking like its a true statement. But thanks for the help. The "it's gonna be ok" ones are outnumbering the "nightmare from hell" comments at this point. TNX GeorgeC W2DB ----- Original Message ----- From: Lu Vencl To: Bob Brown - W?NQX Cc: Jim Duuuude ; app_rpt mailing list ; george at dyb.com Sent: Saturday, January 21, 2012 7:18 AM Subject: [SPAM] Re: [App_rpt-users] Slightly OT:U-Verse I have a static block of 6 and have had no issues at all. In fact that is what runs the FLA HUB. It has been rock solid. I also work for AT&T so if anyone has issues and have exhausted the normal course of filing trouble tickets etc get with me. KA4EPS Sent from my iPhone, Lu Vencl On Jan 20, 2012, at 3:45 PM, Bob Brown - W?NQX wrote: HI all Been using it for a couple of years now and have had no issues, I have a dynamic IP and it has never changed in 2 years.... -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://sm0kenet.net http://byrg.net http://kcdstar.byrg.net http://w0nqx.blogspot.com Quis custodiet ipsos custodes? Its not how many watts you have, its the SIZE of your watts that matter! -- Johnny Marshall, W0JM-SK -- On Fri, Jan 20, 2012 at 3:29 PM, Jim Duuuude wrote: I wish you all the luck in the world. I have heard MANY horror stories having to do with U-verse. JIM WB6NIL > From: george at dyb.com > To: app_rpt-users at ohnosec.org > Date: Fri, 20 Jan 2012 12:52:03 -0600 > Subject: [App_rpt-users] Slightly OT:U-Verse > > Hi everyone. > > I just decided teo re-arrange my TV/phone/Internet stuff, and ordered AT&T > Uverse, and was assured three times that I can keep my present block of > static IP addresses I have with my Business HSI Elite-S DSL plan. I have > read online many horror stories related to this service and I'm curious if > anyone out there in app_rpt land is using the multiple static IP U-Verse > service with APP_RPT or anything else. > > If it all works well the speed improvement will be pretty significant up to > 24MB down/3MB up. Present plan is 6MB down, 768KBPS up, and I run name mail > and web servers and a VPN to another house, plus node 2360. > > GeorgeC > W2DB > 2360 > > _______________________________________________ > 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 kc9gqr at gmail.com Sun Jan 22 03:29:31 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Sat, 21 Jan 2012 21:29:31 -0600 Subject: [App_rpt-users] APRSTT Message-ID: Is this feature working i see it command *63? -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc9gqr at gmail.com Sun Jan 22 03:44:02 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Sat, 21 Jan 2012 21:44:02 -0600 Subject: [App_rpt-users] APRSTT In-Reply-To: <001801ccd8b7$b534c150$1f9e43f0$@com> References: <001801ccd8b7$b534c150$1f9e43f0$@com> Message-ID: 63 - Send pre-configred APRSTT notification (cop,63,CALL[,OVERLAYCHR]) is it active? do i DTMF in my Call sign ? On Sat, Jan 21, 2012 at 9:41 PM, Ken wrote: > Bradley**** > > ** ** > > *63 is not a command**** > > ** ** > > It?s a function**** > > ** ** > > Whatever command you have configured for 63 is the command that Asterisk > will execute when it hears *63**** > > ** ** > > Ken**** > > ** ** > > ** ** > > *From:* app_rpt-users-bounces at ohnosec.org [mailto: > app_rpt-users-bounces at ohnosec.org] *On Behalf Of *Bradley Haney > *Sent:* Saturday, January 21, 2012 10:30 PM > *To:* app_rpt-users at ohnosec.org > *Subject:* [App_rpt-users] APRSTT**** > > ** ** > > Is this feature working i see it command *63? **** > -------------- next part -------------- An HTML attachment was scrubbed... URL: From w7ry at centurytel.net Sun Jan 22 07:08:27 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Sat, 21 Jan 2012 23:08:27 -0800 Subject: [App_rpt-users] Connect/Disconnect Announcements Message-ID: <29BDEB6A8E204D04856EFE5241F8E316@Laptop> Can anyone tell me how to disable the connect/disconnect messages from my node? I want to hear when MY node connects, but don't what to here them when someone else connects. Thanks 73 Jim W7RY -------------- next part -------------- An HTML attachment was scrubbed... URL: From n5zua at earthlink.net Sun Jan 22 07:20:29 2012 From: n5zua at earthlink.net (Steve Agee) Date: Sun, 22 Jan 2012 01:20:29 -0600 Subject: [App_rpt-users] Connect/Disconnect Announcements References: <29BDEB6A8E204D04856EFE5241F8E316@Laptop> Message-ID: Probably the best compromise is to put this line in your node stanza ... [2589] telemdefault = 2 ; telemetry local output setting N5ZUA ----- Original Message ----- From: Jim W7RY To: app_rpt-users at ohnosec.org Sent: Sunday, January 22, 2012 1:08 AM Subject: [App_rpt-users] Connect/Disconnect Announcements Can anyone tell me how to disable the connect/disconnect messages from my node? I want to hear when MY node connects, but don't what to here them when someone else connects. Thanks 73 Jim W7RY From ke2n at cs.com Sun Jan 22 12:28:08 2012 From: ke2n at cs.com (Ken) Date: Sun, 22 Jan 2012 07:28:08 -0500 Subject: [App_rpt-users] APRSTT In-Reply-To: References: <001801ccd8b7$b534c150$1f9e43f0$@com> Message-ID: <001501ccd901$4cdf7790$e69e66b0$@com> This method is a very recent addition. You put it into a function and execute it. There is a lot of set up required first. See the posting last month http://ohnosec.org/pipermail/app_rpt-users/2011-December/003566.html Ken From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney Sent: Saturday, January 21, 2012 10:44 PM To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] APRSTT 63 - Send pre-configred APRSTT notification (cop,63,CALL[,OVERLAYCHR]) is it active? do i DTMF in my Call sign ? On Sat, Jan 21, 2012 at 9:41 PM, Ken wrote: Bradley *63 is not a command It's a function Whatever command you have configured for 63 is the command that Asterisk will execute when it hears *63 Ken From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney Sent: Saturday, January 21, 2012 10:30 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] APRSTT Is this feature working i see it command *63? -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc9gqr at gmail.com Mon Jan 23 02:13:09 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Sun, 22 Jan 2012 20:13:09 -0600 Subject: [App_rpt-users] voice announcements getting clipped at the start. Message-ID: does anyone know how to put i guess like a audio delay for announcements? when i dtmf the system to play the time it cuts the first part of the time off . I guess i want the transmitter to key up for 1 sec then start playing the file.. Bradley -------------- next part -------------- An HTML attachment was scrubbed... URL: From ke2n at cs.com Mon Jan 23 02:33:21 2012 From: ke2n at cs.com (Ken) Date: Sun, 22 Jan 2012 21:33:21 -0500 Subject: [App_rpt-users] voice announcements getting clipped at the start. In-Reply-To: References: Message-ID: <001701ccd977$5f7e4c70$1e7ae550$@com> Sounds like you are missing the wait timers At the start of the node info you put the name of your wait time stanza - like this . wait_times=wait-times ; Wait times . The down below you put the various timers. Here are the two you likely need: [wait-times] telemwait=1500 ; Time to wait before sending most telemetry idwait=500 ; Time to wait before starting ID From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bradley Haney Sent: Sunday, January 22, 2012 9:13 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] voice announcements getting clipped at the start. does anyone know how to put i guess like a audio delay for announcements? when i dtmf the system to play the time it cuts the first part of the time off . I guess i want the transmitter to key up for 1 sec then start playing the file.. Bradley -------------- next part -------------- An HTML attachment was scrubbed... URL: From wb5nfc at yahoo.com Mon Jan 23 04:43:58 2012 From: wb5nfc at yahoo.com (John (WB5NFC)) Date: Sun, 22 Jan 2012 20:43:58 -0800 (PST) Subject: [App_rpt-users] LOX/Pickle Help Message-ID: <1327293838.68890.YahooMailNeo@web113503.mail.gq1.yahoo.com> I'm finally getting around to working on my Pickle/LOX/BeagleBoard setup once again after an extended absence. Finding bits and pieces of information at various locations, but nothing much in one spot. Has anyone aggregated info on a site I've not found yet? What sort of enclosures are others using successfully for the BeagleBoard/Lox board combo? I don't have a radio connected yet to either LOX port. When I log on? to my Pickel node with the iaxRpt client, I hear the transmitter cycling every second or so. Guessing I may need to change some configs until I get RF connected, but not sure where to begin. Thanks for any suggestions. Lovin' this little beauty. Kudos for all who made it happen. John / WB5NFC -------------- next part -------------- An HTML attachment was scrubbed... URL: From w7ry at centurytel.net Mon Jan 23 05:03:40 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Sun, 22 Jan 2012 21:03:40 -0800 Subject: [App_rpt-users] Connect/Disconnect Announcements In-Reply-To: References: <29BDEB6A8E204D04856EFE5241F8E316@Laptop> Message-ID: <3A110BD594B540BA80789979BB65B7B3@Laptop> Which is located where? Which file? Thanks 73 Jim W7Ry -------------------------------------------------- From: "Steve Agee" Sent: Saturday, January 21, 2012 11:20 PM To: "Jim W7RY" ; Subject: Re: [App_rpt-users] Connect/Disconnect Announcements > Probably the best compromise is to put this line in your node stanza ... > > [2589] > telemdefault = 2 ; telemetry local output setting > > N5ZUA > > ----- Original Message ----- > From: Jim W7RY > To: app_rpt-users at ohnosec.org > Sent: Sunday, January 22, 2012 1:08 AM > Subject: [App_rpt-users] Connect/Disconnect Announcements > > > Can anyone tell me how to disable the connect/disconnect messages from my > node? I want to hear when MY node connects, but don't what to here them > when someone else connects. > > Thanks > 73 > Jim W7RY > > > > > > > > ----- > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4757 - Release Date: 01/21/12 > From w7ry at centurytel.net Mon Jan 23 05:05:59 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Sun, 22 Jan 2012 21:05:59 -0800 Subject: [App_rpt-users] Connect/Disconnect Announcements In-Reply-To: References: <29BDEB6A8E204D04856EFE5241F8E316@Laptop> Message-ID: <8D097ACCE25C441F9561E2CC08AE7BE9@Laptop> etc/asterisk/rpt.conf ?? Jim W7RY -------------------------------------------------- From: "Steve Agee" Sent: Saturday, January 21, 2012 11:20 PM To: "Jim W7RY" ; Subject: Re: [App_rpt-users] Connect/Disconnect Announcements > Probably the best compromise is to put this line in your node stanza ... > > [2589] > telemdefault = 2 ; telemetry local output setting > > N5ZUA > > ----- Original Message ----- > From: Jim W7RY > To: app_rpt-users at ohnosec.org > Sent: Sunday, January 22, 2012 1:08 AM > Subject: [App_rpt-users] Connect/Disconnect Announcements > > > Can anyone tell me how to disable the connect/disconnect messages from my > node? I want to hear when MY node connects, but don't what to here them > when someone else connects. > > Thanks > 73 > Jim W7RY > > > > > > > > ----- > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4757 - Release Date: 01/21/12 > From kc9gqr at gmail.com Mon Jan 23 14:25:40 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Mon, 23 Jan 2012 08:25:40 -0600 Subject: [App_rpt-users] THIN CLIENTS Message-ID: Looking for a few THin Clients to put ALLSTAR in.. IS this model compatible? *HP Thin Client T5730* or which ones will work? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Ramesh at va3uv.com Mon Jan 23 14:37:33 2012 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Mon, 23 Jan 2012 09:37:33 -0500 Subject: [App_rpt-users] THIN CLIENTS In-Reply-To: References: Message-ID: <4F1D70AD.5040407@va3uv.com> Hey Brad; I have several HP T5710's running my FREE STAR* suite. I also have one running app_rpt and my home PBX! The 5710 does not have enough steam to run a full duplex system with dsp etc., however, it will run a simplex node using the chan_simpeusb driver quite easily. I am not familiar with the 5730; I suspect that you'll see similar results. Hey if it doesn't work, you can always use it as a FREE STAR* system! Cheers, Ramesh. www.freestar.us On 23/01/2012 9:25 AM, Bradley Haney wrote: > Looking for a few THin Clients to put ALLSTAR in.. IS this model > compatible? > *HP Thin Client T5730* > or which ones will work? > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From n5zua at earthlink.net Mon Jan 23 19:15:43 2012 From: n5zua at earthlink.net (Steve Agee) Date: Mon, 23 Jan 2012 13:15:43 -0600 Subject: [App_rpt-users] DTMF voice falsing References: <4EEE398A.4040209@arrl.net> <001801ccbdba$8b199ca0$a14cd5e0$@com> Message-ID: I just tried this and it works GREAT! I used to see DTMF falsing on almost every transmission ... maybe 50 milliseconds or so when watching from the CLI at radio debug level 1. After the change, I see nothing, even when I lean on the mic and intentionally over deviate. I'm not noticing any delayed decoding of DTMF either. Thanks! N5ZUA ----- Original Message ----- From: "Ken" > My experience always has been that the standard install is WAY too > sensitive > to DTMF false decodes. > There may be an easier way to do this (I hope to find), but, one way is to > remove the RADIO_RELAX compiler flag > in > /usr/src/astsrc/asterisk/menuselect.makeopts > it should read only: > MENUSELECT_CFLAGS=LOADABLE_MODULES > > Then cd astsrc > And > ./configure > Make > Make install > > There is a menu for changing compiler flags in recent releases - you have > to > make the menuselect program when you do the install (I think) > > 73 > > Ken > >> -----Original Message----- >> From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users- >> bounces at ohnosec.org] On Behalf Of Chris(KB2FAF) >> Sent: Sunday, December 18, 2011 2:06 PM >> To: App_rpt-users at ohnosec.org >> Subject: [App_rpt-users] DTMF voice falsing >> >> Hi, >> >> I have been noticing an interesting problem. Audio drops on my >> repeater and link sporadically for maybe 500ms now and then as a >> conversation is taking place. If I watch debugging data from CLI it >> usually coincides with DTMF being sensed in certain voices. Is there a >> way to increase the time it takes for the system to recognize DTMF? Or >> is there something else going on. >> >> Thanks for any pointers... >> >> Chris >> >> KB2FAF From Sysman at Xceptions.COM Mon Jan 23 19:30:26 2012 From: Sysman at Xceptions.COM (Paul J. Agamata) Date: Mon, 23 Jan 2012 09:30:26 -1000 Subject: [App_rpt-users] DTMF voice falsing In-Reply-To: Message-ID: Yup, this has worked very well. On 1/23/12 9:15 AM, "Steve Agee" wrote: >I just tried this and it works GREAT! > >I used to see DTMF falsing on almost every transmission ... maybe 50 >milliseconds or so when watching from the CLI at radio debug level 1. >After >the change, I see nothing, even when I lean on the mic and intentionally >over deviate. I'm not noticing any delayed decoding of DTMF either. > >Thanks! > >N5ZUA > >----- Original Message ----- >From: "Ken" > > >> My experience always has been that the standard install is WAY too >> sensitive >> to DTMF false decodes. >> There may be an easier way to do this (I hope to find), but, one way is >>to >> remove the RADIO_RELAX compiler flag >> in >> /usr/src/astsrc/asterisk/menuselect.makeopts >> it should read only: >> MENUSELECT_CFLAGS=LOADABLE_MODULES >> >> Then cd astsrc >> And >> ./configure >> Make >> Make install >> >> There is a menu for changing compiler flags in recent releases - you >>have >> to >> make the menuselect program when you do the install (I think) >> >> 73 >> >> Ken >> >>> -----Original Message----- >>> From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users- >>> bounces at ohnosec.org] On Behalf Of Chris(KB2FAF) >>> Sent: Sunday, December 18, 2011 2:06 PM >>> To: App_rpt-users at ohnosec.org >>> Subject: [App_rpt-users] DTMF voice falsing >>> >>> Hi, >>> >>> I have been noticing an interesting problem. Audio drops on my >>> repeater and link sporadically for maybe 500ms now and then as a >>> conversation is taking place. If I watch debugging data from CLI it >>> usually coincides with DTMF being sensed in certain voices. Is there a >>> way to increase the time it takes for the system to recognize DTMF? Or >>> is there something else going on. >>> >>> Thanks for any pointers... >>> >>> Chris >>> >>> KB2FAF > >_______________________________________________ >App_rpt-users mailing list >App_rpt-users at ohnosec.org >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From k8khw at att.net Mon Jan 23 21:19:08 2012 From: k8khw at att.net (k8khw) Date: Mon, 23 Jan 2012 16:19:08 -0500 Subject: [App_rpt-users] URI and Cat Controller Message-ID: <8661D663B9424F82B0E2FC39A716CF18@Office> Does anyone have a pinout of a URI to a Cat250 Controller handy. Randy -------------- next part -------------- An HTML attachment was scrubbed... URL: From wb6egr at gmail.com Mon Jan 23 22:06:45 2012 From: wb6egr at gmail.com (Kirk) Date: Mon, 23 Jan 2012 14:06:45 -0800 Subject: [App_rpt-users] URI and Cat Controller In-Reply-To: <8661D663B9424F82B0E2FC39A716CF18@Office> References: <8661D663B9424F82B0E2FC39A716CF18@Office> Message-ID: <75089225-56F4-4E7A-9811-54665C102840@gmail.com> You WONT be happy! I made the mistake of buying a Catcrap 250 and required more torment so I bought a Catcrap 700. Cat puts a lot of commands up front that make using Allstar impossible to use or close to it. The commands(like the one to announce what version firmware you are running) CAN NOT be disabled! Im ready to snap both of mine in half..... Sent from my iPhone 4, I am out and about..... On Jan 23, 2012, at 1:19 PM, "k8khw" wrote: > Does anyone have a pinout of a URI to a Cat250 Controller > handy. > > Randy > _______________________________________________ > 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 telesistant at hotmail.com Mon Jan 23 22:09:35 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Mon, 23 Jan 2012 14:09:35 -0800 Subject: [App_rpt-users] URI and Cat Controller In-Reply-To: <75089225-56F4-4E7A-9811-54665C102840@gmail.com> References: <8661D663B9424F82B0E2FC39A716CF18@Office>, <75089225-56F4-4E7A-9811-54665C102840@gmail.com> Message-ID: before you apply any "snappage", check out the "inxlat" and "outxlat" configuration options in rpt.conf. They might make you happier. If not, a band saw is a nice tool. It really allows full expression of your frustration.... :-) JIM From: wb6egr at gmail.com Date: Mon, 23 Jan 2012 14:06:45 -0800 To: k8khw at att.net CC: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] URI and Cat Controller You WONT be happy! I made the mistake of buying a Catcrap 250 and required more torment so I bought a Catcrap 700. Cat puts a lot of commands up front that make using Allstar impossible to use or close to it. The commands(like the one to announce what version firmware you are running) CAN NOT be disabled! Im ready to snap both of mine in half..... Sent from my iPhone 4, I am out and about..... On Jan 23, 2012, at 1:19 PM, "k8khw" wrote: Does anyone have a pinout of a URI to a Cat250 Controller handy. Randy _______________________________________________ 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 telesistant at hotmail.com Mon Jan 23 22:25:13 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Mon, 23 Jan 2012 14:25:13 -0800 Subject: [App_rpt-users] new "transparent bridging" application (for those who might be interested) Message-ID: For those who might be interested: I just added a new application to our distribution that allows for devices, such as a Voter/RTCM board (and other hardware) to provide "transparent" transport of audio/keying. Please the the comment section (from the source file): /* This application is intended to provide a generic "bridging" functionality for radio-oriented Asterisk channels. The idea here is that certain radio applications lend themselves to needing a "generic" (passes audio and tx/rx keying completely transparently) to and from two or more endpoints. An example of such an appication might be replacing (or providing equivlent new functionaliy of) one or more full-duplex UHF control links with an IP-based one(s). app_radbridge allows multiple instances of radio-oriented channels transparently "bridged" together. The config file (radbridge.conf) allows specification of each "bridging" instance and what radio-oriented Asterisk channels are to be associated with it. There is no need for any other specificaiton of configuration. The file format for radbridge.conf departs somewhat from the standard usage (at least for radio stuff) of the Asterisk config file architecture. In most other radio-oriented cases, an instance of whatever it is gets defined as a "Stanza" in the config file. In this case, because of limitations in the way that Asterisk parses config files, that was not possible. Instead, all config information goes into the [general] stanza, and each line of config info defines a different instance of radio bridging. For example: [general] instance1 = Voter/1234,Radio/5678 instance2 = Voter/1235,Radio/5679 This example would define two radio bridging instances "instance1" and "instance2", each with 2 channels associated with them. The supported channel types are "Voter" (chan_voter), "Radio" (chan_usbradio), "SimpleUsb" (chan_simpleusb), and "Zap" ("Dahdi") (chan_dahdi, for the couple of devices that use this channel driver, such as the PCIRadio card, and separate analog channels using an ARIB board or such). Rather then "adding" (which would actually be a lot of *removing* optionally) this functionality in app_rpt, it made more sense to create a separate application specifically for this purpose. In addition, this allows for a system that is merely provided for doing this bridging application and nothing else radio-oriented, to not have to run app_rpt at all. */ Jmi , WB6NIL -------------- next part -------------- An HTML attachment was scrubbed... URL: From w7ry at centurytel.net Mon Jan 23 22:42:02 2012 From: w7ry at centurytel.net (Jim W7RY) Date: Mon, 23 Jan 2012 14:42:02 -0800 Subject: [App_rpt-users] Connect/Disconnect Announcements In-Reply-To: References: <29BDEB6A8E204D04856EFE5241F8E316@Laptop> Message-ID: <708FADE42BD1442584C5626A2E25CE05@Laptop> Thanks all! This worked perfectly. 73 Jim W7RY -------------------------------------------------- From: "Steve Agee" Sent: Saturday, January 21, 2012 11:20 PM To: "Jim W7RY" ; Subject: Re: [App_rpt-users] Connect/Disconnect Announcements > Probably the best compromise is to put this line in your node stanza ... > > [2589] > telemdefault = 2 ; telemetry local output setting > > N5ZUA > > ----- Original Message ----- > From: Jim W7RY > To: app_rpt-users at ohnosec.org > Sent: Sunday, January 22, 2012 1:08 AM > Subject: [App_rpt-users] Connect/Disconnect Announcements > > > Can anyone tell me how to disable the connect/disconnect messages from my > node? I want to hear when MY node connects, but don't what to here them > when someone else connects. > > Thanks > 73 > Jim W7RY > > > > > > > > ----- > No virus found in this message. > Checked by AVG - www.avg.com > Version: 2012.0.1901 / Virus Database: 2109/4757 - Release Date: 01/21/12 > From telesistant at hotmail.com Mon Jan 23 22:45:40 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Mon, 23 Jan 2012 14:45:40 -0800 Subject: [App_rpt-users] Connect/Disconnect Announcements In-Reply-To: <708FADE42BD1442584C5626A2E25CE05@Laptop> References: <29BDEB6A8E204D04856EFE5241F8E316@Laptop>, , <708FADE42BD1442584C5626A2E25CE05@Laptop> Message-ID: (Not specifically aimed at anyone in particular) I *Really* want to say how much I appreciate the time and effort that you all put into helping each other on this list. There is no way I could possibly have the time to deal with all this and everything else I do. Your efforts really help make this technology (and associated system(s)) an awesome thing. JIM WB6NIL > From: w7ry at centurytel.net > To: n5zua at earthlink.net; app_rpt-users at ohnosec.org > Date: Mon, 23 Jan 2012 14:42:02 -0800 > Subject: Re: [App_rpt-users] Connect/Disconnect Announcements > > Thanks all! This worked perfectly. > > 73 > Jim W7RY > > > -------------------------------------------------- > From: "Steve Agee" > Sent: Saturday, January 21, 2012 11:20 PM > To: "Jim W7RY" ; > Subject: Re: [App_rpt-users] Connect/Disconnect Announcements > > > Probably the best compromise is to put this line in your node stanza ... > > > > [2589] > > telemdefault = 2 ; telemetry local output setting > > > > N5ZUA > > > > ----- Original Message ----- > > From: Jim W7RY > > To: app_rpt-users at ohnosec.org > > Sent: Sunday, January 22, 2012 1:08 AM > > Subject: [App_rpt-users] Connect/Disconnect Announcements > > > > > > Can anyone tell me how to disable the connect/disconnect messages from my > > node? I want to hear when MY node connects, but don't what to here them > > when someone else connects. > > > > Thanks > > 73 > > Jim W7RY > > > > > > > > > > > > > > > > ----- > > No virus found in this message. > > Checked by AVG - www.avg.com > > Version: 2012.0.1901 / Virus Database: 2109/4757 - Release Date: 01/21/12 > > > _______________________________________________ > 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 ke6pcv at cal-net.org Tue Jan 24 00:59:15 2012 From: ke6pcv at cal-net.org (Marshall Oldham) Date: Mon, 23 Jan 2012 16:59:15 -0800 Subject: [App_rpt-users] Using GPIO lines on a URI Message-ID: Greetings, Has anyone used the GPIO lines on a URI to active a 12 volt DC fan when the PTT is active? I have a friend that who wants to implement this on his All-star node to keep his transmitter cool. I guess that we would need to use a relay with the GPIO line to protect the URI? Any thoughts or suggestions? Marshall - ke6pcv From wb3awj at comcast.net Tue Jan 24 03:58:36 2012 From: wb3awj at comcast.net (Robert Poff) Date: Mon, 23 Jan 2012 22:58:36 -0500 Subject: [App_rpt-users] Using GPIO lines on a URI In-Reply-To: References: Message-ID: <1327377516.1807.3.camel@localhost> How about breaking out the PTT from the URI and fire a small double pole relay. One pole PTT to the radio, and the other to turn on the fan. -- Robert A. Poff Loganville, PA WB3AWJ - Allstar 27784 Powered by Linux On Mon, 2012-01-23 at 16:59 -0800, Marshall Oldham wrote: > Greetings, > > Has anyone used the GPIO lines on a URI to active a 12 volt DC fan when the PTT is active? > > I have a friend that who wants to implement this on his All-star node to keep his transmitter cool. > > I guess that we would need to use a relay with the GPIO line to protect the URI? > > Any thoughts or suggestions? > > Marshall - ke6pcv > > _______________________________________________ > 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 will at cabinhome.net Tue Jan 24 14:36:31 2012 From: will at cabinhome.net (Will Mitchell) Date: Tue, 24 Jan 2012 09:36:31 -0500 Subject: [App_rpt-users] URIx setup Message-ID: <5E04B8DD54594B489D0A236DA43ACCAB@WWMPC> Hi guys, This is my first post and need some direction. I am trying to get a USB radio and device operational. I have the server loaded with XIPPR. When loading I answered all questions. It is running and useable with IAXrpt. The download config from Allstar took place. I am using a DMK URIx 9095 and it is plugged into the server and blinking green. My first question is even though the configuration was downloaded I am not finding a /etc/asterisk/usbradio.conf file? For instance I tried to give a command to it with no success. (radio key) Other info I am trying to setup a simplex to start. Thank You for any help, Will, K1ZGB ? node 28290 -------------- next part -------------- An HTML attachment was scrubbed... URL: From n3fe at repeater.net Tue Jan 24 15:10:14 2012 From: n3fe at repeater.net (Corey Dean) Date: Tue, 24 Jan 2012 10:10:14 -0500 Subject: [App_rpt-users] URIx setup In-Reply-To: <5E04B8DD54594B489D0A236DA43ACCAB@WWMPC> References: <5E04B8DD54594B489D0A236DA43ACCAB@WWMPC> Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E02A59E257B42@exchange.mail.repeater.net> In Ziapr it is urd.conf. The acid distro is different from the ziapr distro... Corey N3FE ________________________________ From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Will Mitchell [will at cabinhome.net] Sent: Tuesday, January 24, 2012 9:36 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] URIx setup Hi guys, This is my first post and need some direction. I am trying to get a USB radio and device operational. I have the server loaded with XIPPR. When loading I answered all questions. It is running and useable with IAXrpt. The download config from Allstar took place. I am using a DMK URIx 9095 and it is plugged into the server and blinking green. My first question is even though the configuration was downloaded I am not finding a /etc/asterisk/usbradio.conf file? For instance I tried to give a command to it with no success. (radio key) Other info I am trying to setup a simplex to start. Thank You for any help, Will, K1ZGB ? node 28290 -- This message was scanned and is believed to be clean. Click here to report this message as spam. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wa5jxy at gmail.com Tue Jan 24 18:12:16 2012 From: wa5jxy at gmail.com (Neil Addis (WA5JXY)) Date: Tue, 24 Jan 2012 10:12:16 -0800 Subject: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 43 In-Reply-To: References: Message-ID: > Has anyone used the GPIO lines on a URI to active a 12 volt DC fan when the PTT is active? > I have a friend that who wants to implement this on his All-star node to keep his transmitter cool. > I guess that we would need to use a relay with the GPIO line to protect the URI? > Any thoughts or suggestions? > Marshall - ke6pcv Marshall, I had the same idea and I contacted David Kramer at DMK Engineering (makers of the URI). He responded with this link on how to do exactly what you want; http://www.dmkeng.com/images/GPIO_Relay.pdf I tried it and it works great.... 73, Neil WA5JXY -------------- next part -------------- An HTML attachment was scrubbed... URL: From n6gkj.cm98 at yahoo.com Tue Jan 24 19:08:35 2012 From: n6gkj.cm98 at yahoo.com (Ron Simpson) Date: Tue, 24 Jan 2012 11:08:35 -0800 (PST) Subject: [App_rpt-users] Noisy Quad PCI audio Message-ID: <1327432115.55348.androidMobile@web125901.mail.ne1.yahoo.com> Hey guys, I am running an 800mhz VIA ITX Board and a quad pci card. The board is 2004 vintage. I have a distinct noise on TX audio both through my node and remote base. I have shielded cables to both remotes, I have replace the power supply and greatly reduced the high pitch noise. An interesting note: the tx audio port is quiet when first booting the node pc. Once asterisk is running the noise returns. Has anyone seen this before? Do I have a bad main board or did I miss something else.. Thanks for your help! 73, Ron - N6GKJ 73, Ron - N6GKJ Sent from Yahoo! Mail on Android -------------- next part -------------- An HTML attachment was scrubbed... URL: From n5zua at earthlink.net Tue Jan 24 19:17:06 2012 From: n5zua at earthlink.net (Steve Agee) Date: Tue, 24 Jan 2012 13:17:06 -0600 Subject: [App_rpt-users] Noisy Quad PCI audio References: <1327432115.55348.androidMobile@web125901.mail.ne1.yahoo.com> Message-ID: I went chasing something similar last month with a URI. I was experiencing a high pitched whine on TX audio. I had a spare URI so I swapped them and the problem cleared up. I sent the URI back to DMK who replaced it at no charge and they are investigating the source at this time. N5ZUA ----- Original Message ----- From: Ron Simpson To: APP_RPT Mail List Sent: Tuesday, January 24, 2012 1:08 PM Subject: [App_rpt-users] Noisy Quad PCI audio Hey guys, I am running an 800mhz VIA ITX Board and a quad pci card. The board is 2004 vintage. I have a distinct noise on TX audio both through my node and remote base. I have shielded cables to both remotes, I have replace the power supply and greatly reduced the high pitch noise. An interesting note: the tx audio port is quiet when first booting the node pc. Once asterisk is running the noise returns. Has anyone seen this before? Do I have a bad main board or did I miss something else.. Thanks for your help! 73, Ron - N6GKJ 73, Ron - N6GKJ Sent from Yahoo! Mail on Android ------------------------------------------------------------------------------ _______________________________________________ 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 kd0eav at gmail.com Tue Jan 24 19:44:52 2012 From: kd0eav at gmail.com (=?UTF-8?B?IkplcmVteSBSLiBHZWVvIFtLRMOYRUFWXSI=?=) Date: Tue, 24 Jan 2012 13:44:52 -0600 Subject: [App_rpt-users] Noisy Quad PCI audio In-Reply-To: <1327432115.55348.androidMobile@web125901.mail.ne1.yahoo.com> References: <1327432115.55348.androidMobile@web125901.mail.ne1.yahoo.com> Message-ID: <4F1F0A34.1030504@gmail.com> I've had issues like that before with those VIA boards - it wasn't running the PCI card (it was [past tense] actually an IRLP node)... I never did succeed at eliminating the noise - even swapping the power supply didn't change much. Just having the PC hooked up to the contoller was enough for the noise to appear - I didn't even need to bridge the audio over. 73 - Jeremy, KD0EAV On 01/24/12 13:08, Ron Simpson wrote: > > Hey guys, > > I am running an 800mhz VIA ITX Board and a quad pci card. The board is > 2004 vintage. I have a distinct noise on TX audio both through my node > and remote base. I have shielded cables to both remotes, I have > replace the power supply and greatly reduced the high pitch noise. > > An interesting note: the tx audio port is quiet when first booting the > node pc. Once asterisk is running the noise returns. > > Has anyone seen this before? Do I have a bad main board or did I miss > something else.. > > Thanks for your help! > > 73, > > Ron - N6GKJ > > > 73, > > Ron - N6GKJ > Sent from Yahoo! Mail on Android > > > > _______________________________________________ > 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 telesistant at hotmail.com Tue Jan 24 19:46:42 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Tue, 24 Jan 2012 11:46:42 -0800 Subject: [App_rpt-users] Noisy Quad PCI audio In-Reply-To: <4F1F0A34.1030504@gmail.com> References: <1327432115.55348.androidMobile@web125901.mail.ne1.yahoo.com>, <4F1F0A34.1030504@gmail.com> Message-ID: I guess you could always apply a 1:1 600 Ohm isolation transformer. You can even get one of those at Radio Shack (still). JIM Date: Tue, 24 Jan 2012 13:44:52 -0600 From: kd0eav at gmail.com To: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Noisy Quad PCI audio I've had issues like that before with those VIA boards - it wasn't running the PCI card (it was [past tense] actually an IRLP node)... I never did succeed at eliminating the noise - even swapping the power supply didn't change much. Just having the PC hooked up to the contoller was enough for the noise to appear - I didn't even need to bridge the audio over. 73 - Jeremy, KD0EAV On 01/24/12 13:08, Ron Simpson wrote: Hey guys, I am running an 800mhz VIA ITX Board and a quad pci card. The board is 2004 vintage. I have a distinct noise on TX audio both through my node and remote base. I have shielded cables to both remotes, I have replace the power supply and greatly reduced the high pitch noise. An interesting note: the tx audio port is quiet when first booting the node pc. Once asterisk is running the noise returns. Has anyone seen this before? Do I have a bad main board or did I miss something else.. Thanks for your help! 73, Ron - N6GKJ 73, Ron - N6GKJ Sent from Yahoo! Mail on Android _______________________________________________ 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 bbrown at byrg.net Tue Jan 24 20:03:41 2012 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Tue, 24 Jan 2012 14:03:41 -0600 Subject: [App_rpt-users] Noisy Quad PCI audio In-Reply-To: <1327432115.55348.androidMobile@web125901.mail.ne1.yahoo.com> References: <1327432115.55348.androidMobile@web125901.mail.ne1.yahoo.com> Message-ID: Also Check for Ground Loops between chassis connections. And look for DC riding on the audio leads as well. And like Jim said use a 1:1 transformer on the audio leads if you cannot isolate it. -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://sm0kenet.net http://byrg.net http://kcdstar.byrg.net http://w0nqx.blogspot.com Quis custodiet ipsos custodes? Its not how many watts you have, its the SIZE of your watts that matter! -- Johnny Marshall, W0JM-SK -- On Tue, Jan 24, 2012 at 1:08 PM, Ron Simpson wrote: > Hey guys, > > I am running an 800mhz VIA ITX Board and a quad pci card. The board is > 2004 vintage. I have a distinct noise on TX audio both through my node and > remote base. I have shielded cables to both remotes, I have replace the > power supply and greatly reduced the high pitch noise. > > An interesting note: the tx audio port is quiet when first booting the > node pc. Once asterisk is running the noise returns. > > Has anyone seen this before? Do I have a bad main board or did I miss > something else.. > > Thanks for your help! > > 73, > > Ron - N6GKJ > > > 73, > > Ron - N6GKJ > Sent from Yahoo! Mail on Android > > _______________________________________________ > 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 bdboyle at bdboyle.com Tue Jan 24 20:20:36 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Tue, 24 Jan 2012 15:20:36 -0500 Subject: [App_rpt-users] Noisy Quad PCI audio In-Reply-To: References: <1327432115.55348.androidMobile@web125901.mail.ne1.yahoo.com>, <4F1F0A34.1030504@gmail.com> Message-ID: <4F1F1294.40801@bdboyle.com> On 1/24/12 2:46 PM, Jim Duuuude wrote: > > I guess you could always apply a 1:1 600 Ohm isolation transformer. You can even > get one of those at Radio Shack (still). Keeping unbalanced audio or other signal paths clean is such a pain... Isolation xfmrs are a good thing. If cellphone shack doesn't have them...IIRC Mouser, Digikey, even Broadcast Supply Warehouse, and some ham bits-and-pieces places (there are still a few left...) will. They should NOT be expensive, nor massive (like the old Weco 666 repeater coils...). I bought a box of them a couple years ago when I was building my streaming radio station, and, even between balanced audio sources and my console, I dropped them in on the back of my patch panel...just in case (and the audio chain meets the old FM proof of performance specs, so...). Basically you are more prone to have noise issues if you have multiple pieces of equipment where the grounds are at different voltage potentials between different pieces of equipment (like being plugged into different wall outlets or power strips). Don't discount the noise that switching supplies or wall warts can spew onto lines, nor noisy muffin fans on amplifiers (have this problem on a Henry amp right now), florescent lights, HT chargers...the list is long where it could be coming from, not to mention a/d device issues. -- 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 n6gkj.cm98 at yahoo.com Tue Jan 24 20:39:03 2012 From: n6gkj.cm98 at yahoo.com (Ron Simpson) Date: Tue, 24 Jan 2012 12:39:03 -0800 (PST) Subject: [App_rpt-users] Noisy Quad PCI audio Message-ID: <1327437543.88651.androidMobile@web125903.mail.ne1.yahoo.com> Ok, I will give that a try. However... with no tx audio connection, that noise is encoded and sent to nodes I connect to. This noise is sent from node to node with no input. I will try a different PC. 73, Ron - N6GKJ Sent from Yahoo! Mail on Android -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc9gqr at gmail.com Wed Jan 25 01:33:43 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Tue, 24 Jan 2012 19:33:43 -0600 Subject: [App_rpt-users] echolink reporting my freq as 0.0000 Message-ID: does anyone else have this problem? I did a test on AVRS on aprs and echolink says my node freq is 0.000 Bradley -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc9gqr at gmail.com Wed Jan 25 01:39:47 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Tue, 24 Jan 2012 19:39:47 -0600 Subject: [App_rpt-users] nevermind found what i did wrong :) Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Wed Jan 25 01:48:01 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Tue, 24 Jan 2012 20:48:01 -0500 Subject: [App_rpt-users] echolink reporting my freq as 0.0000 In-Reply-To: References: Message-ID: <4F1F5F51.2050205@bdboyle.com> On 1/24/2012 8:33 PM, Bradley Haney wrote: > does anyone else have this problem? > > I did a test on AVRS on aprs and echolink says my node freq is 0.000 > Echolink frequency is set in /etc/asterisk/echolink.conf, aprs information i n /etc/asterisk/gps.conf The two are independent functions and configured separately (ie they don't populate each other's reporting fields). Different technology, different uses, different configuration values. From kc9gqr at gmail.com Wed Jan 25 03:22:38 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Tue, 24 Jan 2012 21:22:38 -0600 Subject: [App_rpt-users] Not showing up in WEB TRANS list? Message-ID: just had my node on the repeater and had 2 connections in by echolink but then went to the web trans portal and not seeing my node? does that mean a server is down? -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Wed Jan 25 13:20:47 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Wed, 25 Jan 2012 08:20:47 -0500 Subject: [App_rpt-users] Not showing up in WEB TRANS list? In-Reply-To: References: Message-ID: <4F2001AF.7000400@bdboyle.com> On 1/24/12 10:22 PM, Bradley Haney wrote: > just had my node on the repeater and had 2 connections in by echolink but > then went to the web trans portal and not seeing my node? does that mean > a server is down? > Don't expect things to happen instantaneously. There's an update cycle time whenever a change happens. Lots of these questions can be answered if one takes the time to read the documentation and observe the operation. -- 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 wolthui3 at msu.edu Wed Jan 25 22:33:52 2012 From: wolthui3 at msu.edu (Michael J. Wolthuis) Date: Wed, 25 Jan 2012 17:33:52 -0500 Subject: [App_rpt-users] WebTransceiver stopped working Message-ID: <4F208350.9080204@msu.edu> I have not made any changes to my node recently, but suddenly WebTransceiver has stopped connection. It was working fine, and the rest of the node seems ok. This is for node ast28241. The config files are downloaded from the portal and have Webtransceiver enabled. I confirmed UDP port 4569 open though my firewall to the system. Any other suggestions where to look? I can connect with iaxrpt fine via the gui user. Mike kb8zgl From telesistant at hotmail.com Wed Jan 25 23:55:56 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Wed, 25 Jan 2012 15:55:56 -0800 Subject: [App_rpt-users] WebTransceiver stopped working In-Reply-To: <4F208350.9080204@msu.edu> References: <4F208350.9080204@msu.edu> Message-ID: works fine for me > Date: Wed, 25 Jan 2012 17:33:52 -0500 > From: wolthui3 at msu.edu > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] WebTransceiver stopped working > > I have not made any changes to my node recently, but suddenly > WebTransceiver has stopped connection. It was working fine, and the > rest of the node seems ok. > > This is for node ast28241. The config files are downloaded from the > portal and have Webtransceiver enabled. I confirmed UDP port 4569 open > though my firewall to the system. > > Any other suggestions where to look? > > I can connect with iaxrpt fine via the gui user. > > Mike > kb8zgl > > _______________________________________________ > 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 wolthui3 at msu.edu Thu Jan 26 02:37:13 2012 From: wolthui3 at msu.edu (Michael J. Wolthuis) Date: Wed, 25 Jan 2012 21:37:13 -0500 Subject: [App_rpt-users] Figured it out with web transceiver Message-ID: <04da01ccdbd3$699ad940$3cd08bc0$@msu.edu> I think the problem is my local router. It doesn't appear to allow me to NAT out and back in. The node was on the same IP as I was on trying to use web transceiver. As soon as I changed my computer to NAT out a different IP address things worked fine. Thanks for all the ideas and assistance, Mike Kb8zgl -------------- next part -------------- An HTML attachment was scrubbed... URL: From yokshs at gmail.com Thu Jan 26 04:20:47 2012 From: yokshs at gmail.com (K&R Yoksh) Date: Wed, 25 Jan 2012 22:20:47 -0600 Subject: [App_rpt-users] GPIO fan control References: Message-ID: <8A51F56D0C83480B9E9928A058ACC051@main> Hello all, I considered doing this on my nodes, but didn't want to have a relay or fan wear out by cycling on each PTT. I tried using the connpgm and discpgm in rpt.conf to enable the fan during connections, and disable afterwards, but it was not very effective. I'd really like to find a fan control script like what I used on EchoIRLP... Something that activates by PTT, and keeps the fan going for X seconds afterwards.. I have multiple GPIO lines available on my parallel port, and still have the fan control hardware that I built for my EchoIRLP station here. At this point, the fan is just running 24 x 7. Maybe someone can come up with such a script? My bash is pretty crude. 73 Kyle K0KN --- Original Message --- >> Has anyone used the GPIO lines on a URI to active a 12 volt DC fan when > the PTT is active? >> I have a friend that who wants to implement this on his All-star node to > keep his transmitter cool. >> I guess that we would need to use a relay with the GPIO line to protect > the URI? >> Any thoughts or suggestions? >> Marshall - ke6pcv > > Marshall, > > I had the same idea and I contacted David Kramer at DMK Engineering > (makers > of the URI). > He responded with this link on how to do exactly what you want; > > http://www.dmkeng.com/images/GPIO_Relay.pdf > > I tried it and it works great.... > > 73, > Neil > WA5JXY From tim.sawyer at me.com Thu Jan 26 05:19:40 2012 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 25 Jan 2012 21:19:40 -0800 Subject: [App_rpt-users] GPIO fan control In-Reply-To: <8A51F56D0C83480B9E9928A058ACC051@main> References: <8A51F56D0C83480B9E9928A058ACC051@main> Message-ID: It should be possible to set a bit on the parallel port which follows PTT with the events management system. see http://ohnosec.org/drupal/node/176 I've not tried this but something like this might work: In rpt.conf events=events [events] cop 62, PP03 = c|e|${RPT_TXKEYED} A USB node would be needed with a PP03 = out0 in the chan config: In simpleusb.conf or usbradio.conf PP03 = out0 -- Tim :wq On Jan 25, 2012, at 8:20 PM, K&R Yoksh wrote: > > Hello all, > > I considered doing this on my nodes, but didn't want to have a relay or fan wear out by cycling on each PTT. I tried using the > connpgm and discpgm in rpt.conf to enable the fan during connections, and disable afterwards, but it was not very effective. > > I'd really like to find a fan control script like what I used on EchoIRLP... Something that activates by PTT, and keeps the fan going for X seconds afterwards.. > > I have multiple GPIO lines available on my parallel port, and still have the fan control hardware that I built for my EchoIRLP station here. At this point, > the fan is just running 24 x 7. > > Maybe someone can come up with such a script? My bash is pretty crude. > > 73 > > Kyle > K0KN > > > --- Original Message --- > >>> Has anyone used the GPIO lines on a URI to active a 12 volt DC fan when >> the PTT is active? >>> I have a friend that who wants to implement this on his All-star node to >> keep his transmitter cool. >>> I guess that we would need to use a relay with the GPIO line to protect >> the URI? >>> Any thoughts or suggestions? >>> Marshall - ke6pcv >> >> Marshall, >> >> I had the same idea and I contacted David Kramer at DMK Engineering (makers >> of the URI). >> He responded with this link on how to do exactly what you want; >> >> http://www.dmkeng.com/images/GPIO_Relay.pdf >> >> I tried it and it works great.... >> >> 73, >> Neil >> WA5JXY > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From kb2ear at kb2ear.net Thu Jan 26 17:22:54 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Thu, 26 Jan 2012 12:22:54 -0500 Subject: [App_rpt-users] GPIO fan control In-Reply-To: References: <8A51F56D0C83480B9E9928A058ACC051@main> Message-ID: <000f01ccdc4f$2411dfa0$6c359ee0$@kb2ear.net> Seems like an awful lot of work when you can just use a thermal relay bolted or thermal epoxied to the heat sink of whatever you are trying to cool. When it gets warm it turns on and when it cools down it turns back off. I use Digitkey part # 317-1094-ND on all of my repeaters. -----Original Message----- From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Tim Sawyer Sent: Thursday, January 26, 2012 12:20 AM To: K&R Yoksh Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] GPIO fan control It should be possible to set a bit on the parallel port which follows PTT with the events management system. see http://ohnosec.org/drupal/node/176 I've not tried this but something like this might work: In rpt.conf events=events [events] cop 62, PP03 = c|e|${RPT_TXKEYED} A USB node would be needed with a PP03 = out0 in the chan config: In simpleusb.conf or usbradio.conf PP03 = out0 -- Tim :wq On Jan 25, 2012, at 8:20 PM, K&R Yoksh wrote: > > Hello all, > > I considered doing this on my nodes, but didn't want to have a relay or fan wear out by cycling on each PTT. I tried using the > connpgm and discpgm in rpt.conf to enable the fan during connections, and disable afterwards, but it was not very effective. > > I'd really like to find a fan control script like what I used on EchoIRLP... Something that activates by PTT, and keeps the fan going for X seconds afterwards.. > > I have multiple GPIO lines available on my parallel port, and still have the fan control hardware that I built for my EchoIRLP station here. At this point, > the fan is just running 24 x 7. > > Maybe someone can come up with such a script? My bash is pretty crude. > > 73 > > Kyle > K0KN > > > --- Original Message --- > >>> Has anyone used the GPIO lines on a URI to active a 12 volt DC fan when >> the PTT is active? >>> I have a friend that who wants to implement this on his All-star node to >> keep his transmitter cool. >>> I guess that we would need to use a relay with the GPIO line to protect >> the URI? >>> Any thoughts or suggestions? >>> Marshall - ke6pcv >> >> Marshall, >> >> I had the same idea and I contacted David Kramer at DMK Engineering (makers >> of the URI). >> He responded with this link on how to do exactly what you want; >> >> http://www.dmkeng.com/images/GPIO_Relay.pdf >> >> I tried it and it works great.... >> >> 73, >> Neil >> WA5JXY > > _______________________________________________ > 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 wa5jxy at gmail.com Thu Jan 26 20:59:58 2012 From: wa5jxy at gmail.com (Neil Addis (WA5JXY)) Date: Thu, 26 Jan 2012 12:59:58 -0800 Subject: [App_rpt-users] App_rpt-users Digest, Vol 35, Issue 46 In-Reply-To: References: Message-ID: If you are really concerned that a relay will "wear out" in your lifetime, then just buy an adjustable fan switch (close on rise) from Grainger. They have different models with different temperature ranges, but I suggest an adjustable one. They are $8.00 You can control a 12v or 110v fan with these. Stick it to the heatsink of the PA and it will come on when it gets hot, and shut off when it has cooled down. If you insist on trying to control a fan via GPIO (on with PTT and off when no PTT) then your heatsink will never cool down if your repeater is popular. If you build the recommended circuit from DMK, you can add a 555 timer to it to give it some shut off delay if you want. But then, it's gonna cost you more than the cheap fan switch from Grainger. But wait, there are no hobbyists anymore that build anything from their parts bins. Sorry I suggested that! Go get one from Grainger..... You only have to splice it into one wire...how hard can that be? On Thu, Jan 26, 2012 at 9:00 AM, 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. WebTransceiver stopped working (Michael J. Wolthuis) > 2. Re: WebTransceiver stopped working (Jim Duuuude) > 3. Figured it out with web transceiver (Michael J. Wolthuis) > 4. Re: GPIO fan control (K&R Yoksh) > 5. Re: GPIO fan control (Tim Sawyer) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 25 Jan 2012 17:33:52 -0500 > From: "Michael J. Wolthuis" > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] WebTransceiver stopped working > Message-ID: <4F208350.9080204 at msu.edu> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > I have not made any changes to my node recently, but suddenly > WebTransceiver has stopped connection. It was working fine, and the > rest of the node seems ok. > > This is for node ast28241. The config files are downloaded from the > portal and have Webtransceiver enabled. I confirmed UDP port 4569 open > though my firewall to the system. > > Any other suggestions where to look? > > I can connect with iaxrpt fine via the gui user. > > Mike > kb8zgl > > > > ------------------------------ > > Message: 2 > Date: Wed, 25 Jan 2012 15:55:56 -0800 > From: Jim Duuuude > To: , app_rpt mailing list > > Subject: Re: [App_rpt-users] WebTransceiver stopped working > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > > works fine for me > > > Date: Wed, 25 Jan 2012 17:33:52 -0500 > > From: wolthui3 at msu.edu > > To: app_rpt-users at ohnosec.org > > Subject: [App_rpt-users] WebTransceiver stopped working > > > > I have not made any changes to my node recently, but suddenly > > WebTransceiver has stopped connection. It was working fine, and the > > rest of the node seems ok. > > > > This is for node ast28241. The config files are downloaded from the > > portal and have Webtransceiver enabled. I confirmed UDP port 4569 open > > though my firewall to the system. > > > > Any other suggestions where to look? > > > > I can connect with iaxrpt fine via the gui user. > > > > Mike > > kb8zgl > > > > _______________________________________________ > > 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/20120125/c339e4bd/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Wed, 25 Jan 2012 21:37:13 -0500 > From: "Michael J. Wolthuis" > To: > Subject: [App_rpt-users] Figured it out with web transceiver > Message-ID: <04da01ccdbd3$699ad940$3cd08bc0$@msu.edu> > Content-Type: text/plain; charset="us-ascii" > > I think the problem is my local router. It doesn't appear to allow me to > NAT out and back in. The node was on the same IP as I was on trying to use > web transceiver. As soon as I changed my computer to NAT out a different > IP > address things worked fine. > > > > Thanks for all the ideas and assistance, > > Mike > > Kb8zgl > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://ohnosec.org/pipermail/app_rpt-users/attachments/20120125/6f9e2869/attachment-0001.html > > > > ------------------------------ > > Message: 4 > Date: Wed, 25 Jan 2012 22:20:47 -0600 > From: "K&R Yoksh" > To: > Subject: Re: [App_rpt-users] GPIO fan control > Message-ID: <8A51F56D0C83480B9E9928A058ACC051 at main> > Content-Type: text/plain; format=flowed; charset="iso-8859-1"; > reply-type=original > > > Hello all, > > I considered doing this on my nodes, but didn't want to have a relay or fan > wear out by cycling on each PTT. I tried using the > connpgm and discpgm in rpt.conf to enable the fan during connections, and > disable afterwards, but it was not very effective. > > I'd really like to find a fan control script like what I used on > EchoIRLP... > Something that activates by PTT, and keeps the fan going for X seconds > afterwards.. > > I have multiple GPIO lines available on my parallel port, and still have > the > fan control hardware that I built for my EchoIRLP station here. At this > point, > the fan is just running 24 x 7. > > Maybe someone can come up with such a script? My bash is pretty crude. > > 73 > > Kyle > K0KN > > > --- Original Message --- > > >> Has anyone used the GPIO lines on a URI to active a 12 volt DC fan when > > the PTT is active? > >> I have a friend that who wants to implement this on his All-star node to > > keep his transmitter cool. > >> I guess that we would need to use a relay with the GPIO line to protect > > the URI? > >> Any thoughts or suggestions? > >> Marshall - ke6pcv > > > > Marshall, > > > > I had the same idea and I contacted David Kramer at DMK Engineering > > (makers > > of the URI). > > He responded with this link on how to do exactly what you want; > > > > http://www.dmkeng.com/images/GPIO_Relay.pdf > > > > I tried it and it works great.... > > > > 73, > > Neil > > WA5JXY > > > > ------------------------------ > > Message: 5 > Date: Wed, 25 Jan 2012 21:19:40 -0800 > From: Tim Sawyer > To: K&R Yoksh > Cc: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] GPIO fan control > Message-ID: > Content-Type: text/plain; CHARSET=US-ASCII > > It should be possible to set a bit on the parallel port which follows PTT > with the events management system. > > see http://ohnosec.org/drupal/node/176 > > I've not tried this but something like this might work: > > In rpt.conf > events=events > [events] > cop 62, PP03 = c|e|${RPT_TXKEYED} > > A USB node would be needed with a PP03 = out0 in the chan config: > In simpleusb.conf or usbradio.conf > PP03 = out0 > > -- > Tim > :wq > > On Jan 25, 2012, at 8:20 PM, K&R Yoksh wrote: > > > > > Hello all, > > > > I considered doing this on my nodes, but didn't want to have a relay or > fan wear out by cycling on each PTT. I tried using the > > connpgm and discpgm in rpt.conf to enable the fan during connections, > and disable afterwards, but it was not very effective. > > > > I'd really like to find a fan control script like what I used on > EchoIRLP... Something that activates by PTT, and keeps the fan going for X > seconds afterwards.. > > > > I have multiple GPIO lines available on my parallel port, and still have > the fan control hardware that I built for my EchoIRLP station here. At this > point, > > the fan is just running 24 x 7. > > > > Maybe someone can come up with such a script? My bash is pretty crude. > > > > 73 > > > > Kyle > > K0KN > > > > > > --- Original Message --- > > > >>> Has anyone used the GPIO lines on a URI to active a 12 volt DC fan when > >> the PTT is active? > >>> I have a friend that who wants to implement this on his All-star node > to > >> keep his transmitter cool. > >>> I guess that we would need to use a relay with the GPIO line to protect > >> the URI? > >>> Any thoughts or suggestions? > >>> Marshall - ke6pcv > >> > >> Marshall, > >> > >> I had the same idea and I contacted David Kramer at DMK Engineering > (makers > >> of the URI). > >> He responded with this link on how to do exactly what you want; > >> > >> http://www.dmkeng.com/images/GPIO_Relay.pdf > >> > >> I tried it and it works great.... > >> > >> 73, > >> Neil > >> WA5JXY > > > > _______________________________________________ > > 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 > > > End of App_rpt-users Digest, Vol 35, Issue 46 > ********************************************* > -------------- next part -------------- An HTML attachment was scrubbed... URL: From n6gkj.cm98 at yahoo.com Fri Jan 27 03:40:25 2012 From: n6gkj.cm98 at yahoo.com (Ron Simpson) Date: Thu, 26 Jan 2012 19:40:25 -0800 (PST) Subject: [App_rpt-users] Does ACID/Allstar run on an AMD processor? Message-ID: <1327635625.25879.YahooMailClassic@web125906.mail.ne1.yahoo.com> I have access to HP Workstations that are AMD based real cheap. They have 512MB Ram and no HD. I have drives and the specs tell me the USB port is USB 2.0 compliant. Ron Simpson, N6GKJ Amateur Radio ................... Have you ever noticed that when you are looking for something, it is always found in the last place you look? -------------- next part -------------- An HTML attachment was scrubbed... URL: From yokshs at gmail.com Fri Jan 27 03:43:05 2012 From: yokshs at gmail.com (K&R Yoksh) Date: Thu, 26 Jan 2012 21:43:05 -0600 Subject: [App_rpt-users] GPIO fan control References: Message-ID: I forgot to mention that I've also had good luck assigning multiple Parallel port pins to PTT in usbradio.conf or simpleusb.conf, such as: pp3 = ptt pp4 = ptt Again, I'd rather not cycle a relay with every PTT. I'd much prefer the fan run for 2 minutes or so after the last PTT, then shut off. That would save a lot of wear and tear on the fan and relay. My setup is probably a bit unusual, as I have several transceivers cooled by one large fan. It's occurred to me that I could always build a 555 timer circuit to use along with my fan control, but a software solution should be just as simple. I guess I'll have to try to hack the TXFAN script I used on IRLP? 73. Kyle K0KN From a.errington at lancaster.ac.uk Fri Jan 27 06:41:32 2012 From: a.errington at lancaster.ac.uk (Andrew Errington) Date: Fri, 27 Jan 2012 15:41:32 +0900 (KST) Subject: [App_rpt-users] GPIO fan control In-Reply-To: References: Message-ID: <2173.115.134.1.219.1327646492.squirrel@webmail02.lancs.ac.uk> On Fri, January 27, 2012 12:43, K&R Yoksh wrote: > I forgot to mention that I've also had good luck assigning multiple > Parallel > port pins to PTT in usbradio.conf or simpleusb.conf, such as: > > pp3 = ptt pp4 = ptt > > Again, I'd rather not cycle a relay with every PTT. I'd much prefer the > fan run for 2 minutes or so after the last PTT, then shut off. That would > save a lot of wear and tear on the fan and relay. How about a 555 timer IC hooked up to PTT in one-shot mode with a 2 minute timer? Very old skool, but might do the job. 73, Andrew ZL3AME From telesistant at hotmail.com Fri Jan 27 06:43:38 2012 From: telesistant at hotmail.com (Jim Duuuude) Date: Thu, 26 Jan 2012 22:43:38 -0800 Subject: [App_rpt-users] GPIO fan control In-Reply-To: <2173.115.134.1.219.1327646492.squirrel@webmail02.lancs.ac.uk> References: , , <2173.115.134.1.219.1327646492.squirrel@webmail02.lancs.ac.uk> Message-ID: Well, if you *really* want old school, how about an Amperite time delay tube?? If it was good enough for Collins and the like, it should be good enough for ham radio :-). JIM WB6NIL > Date: Fri, 27 Jan 2012 15:41:32 +0900 > From: a.errington at lancaster.ac.uk > To: yokshs at gmail.com > CC: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] GPIO fan control > > On Fri, January 27, 2012 12:43, K&R Yoksh wrote: > > I forgot to mention that I've also had good luck assigning multiple > > Parallel > > port pins to PTT in usbradio.conf or simpleusb.conf, such as: > > > > pp3 = ptt pp4 = ptt > > > > Again, I'd rather not cycle a relay with every PTT. I'd much prefer the > > fan run for 2 minutes or so after the last PTT, then shut off. That would > > save a lot of wear and tear on the fan and relay. > > How about a 555 timer IC hooked up to PTT in one-shot mode with a 2 minute > timer? > > Very old skool, but might do the job. > > 73, > > Andrew > ZL3AME > > _______________________________________________ > 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 Sat Jan 28 03:49:42 2012 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Fri, 27 Jan 2012 21:49:42 -0600 Subject: [App_rpt-users] voter pal on Android? Message-ID: Does anyone know how to run voter pal on an Android? I put launch.jnlp and the recording on my Android but can't figure out a way to run it. A search of the Android market for Java didn't help. Has anyone been able to run voter pal or have any suggestion on how to go about getting the app that is needed so that it can run? Chuck -------------- next part -------------- An HTML attachment was scrubbed... URL: From yokshs at gmail.com Sun Jan 29 02:41:04 2012 From: yokshs at gmail.com (K&R Yoksh) Date: Sat, 28 Jan 2012 20:41:04 -0600 Subject: [App_rpt-users] GPIO fan control script now available Message-ID: Hello, I spent some time today modifying the fan control script TXFAN, and am happy to say that I've managed to get it working under app_rpt. I'm sure that there is a more elegant way to accomplish this in software, but as I mentioned before, I'm no programmer. For those that are interested, this script is used to control a cooling fan via GPIO. I am using the parallel port, but I'm sure USB GPIO would also work. No modifications to node radios is required, and because the fan is controlled via GPIO, the fan may be manually turned on or off via DTMF, macro, or script. I am currently using this script with 3 RF nodes and a single large fan. Add the following to the events stanza for any/all of your RF nodes: touch /etc/asterisk/~pttstate = s|t|RPT_TXKEYED rm -f /etc/asterisk/~pttstate = s|f|RPT_TXKEYED The script TXFAN runs in a background process, and will activate the fan after X seconds of transmitting. The fan will continue to run until X seconds after transmitting ceases. The modified TXFAN script can be found at: http://www.qsl.net/k0kn/txfan Sample GPIO control scripts are also available: http://www.qsl.net/k0kn/aux1on http://www.qsl.net/k0kn/aux1off 73, Kyle Yoksh K0KN Olathe, KS Allstar 2210-2219 From n6gkj.cm98 at yahoo.com Sun Jan 29 03:17:51 2012 From: n6gkj.cm98 at yahoo.com (Ron Simpson) Date: Sat, 28 Jan 2012 19:17:51 -0800 (PST) Subject: [App_rpt-users] YES!! AMD Processors run ACID Message-ID: <1327807071.11557.androidMobile@web125904.mail.ne1.yahoo.com> I picked up a cheap AMD box sporting a 2600+ processor, dumped in 2gb of RAM and installed ACID. I ran into a couple of glitches during install, but rebooting the box allowed it to take up where it left off. I transfered all my conf files and rebooted the box and everything came to life .... well sort of. Have to set levels next. Will finish tomorrow ... gotta spend time with the fiance before she gets her feelings hurt! She is turning into a ham shack widow! 73, Ron - N6GKJ Sent from Yahoo! Mail on Android -------------- next part -------------- An HTML attachment was scrubbed... URL: From baldwin88 at yahoo.com Sun Jan 29 22:54:49 2012 From: baldwin88 at yahoo.com (Fran) Date: Sun, 29 Jan 2012 14:54:49 -0800 (PST) Subject: [App_rpt-users] Random repeater hangiing Message-ID: <1327877689.66266.YahooMailClassic@web160304.mail.bf1.yahoo.com> Has anyone been very randon repeater hangings, it doesnt happen very often but in the last month I have been getting some random repeater lockups, I tried rebooting the repeater and Arcom controller but that doesnt do it, I then reboot the Asterisk server and that seems to unkey my system.? Is there a log I can track that might help me pinpoint the problem? Frank -------------- next part -------------- An HTML attachment was scrubbed... URL: From n3fe at repeater.net Mon Jan 30 01:03:51 2012 From: n3fe at repeater.net (Corey Dean) Date: Sun, 29 Jan 2012 20:03:51 -0500 Subject: [App_rpt-users] Random repeater hangiing In-Reply-To: <1327877689.66266.YahooMailClassic@web160304.mail.bf1.yahoo.com> References: <1327877689.66266.YahooMailClassic@web160304.mail.bf1.yahoo.com> Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E02A59E2638CF@exchange.mail.repeater.net> Are you connected to anything when it hangs? Do you use perm connections? Corey N3FE From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Fran Sent: Sunday, January 29, 2012 5:55 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] Random repeater hangiing Has anyone been very randon repeater hangings, it doesnt happen very often but in the last month I have been getting some random repeater lockups, I tried rebooting the repeater and Arcom controller but that doesnt do it, I then reboot the Asterisk server and that seems to unkey my system. Is there a log I can track that might help me pinpoint the problem? Frank -- This message was scanned and is believed to be clean. Click here to report this message as spam.<%0d%0ahttp:/simba.repeater.net:8080/cgi-bin/learn-msg.cgi?id=548032228.AD2A7%0d%0a> -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc9gqr at gmail.com Mon Jan 30 01:08:20 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Sun, 29 Jan 2012 19:08:20 -0600 Subject: [App_rpt-users] Reverse Auto patch.. Message-ID: When a reverse Autopatch comes in do you just do a *6 to receive the call? -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Mon Jan 30 01:09:16 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Sun, 29 Jan 2012 20:09:16 -0500 Subject: [App_rpt-users] txfan Message-ID: <4F25EDBC.5060406@bdboyle.com> On 1/28/2012 9:41 PM, K&R Yoksh wrote: > Hello, > > I spent some time today modifying the fan control script TXFAN, and am > happy to say that I've managed to > get it working under app_rpt. I'm sure that there is a more elegant way > to accomplish this in software, but > as I mentioned before, I'm no programmer. > No...but the results are the same...:) In the best traditions of code hacking, Kyle...;) Works nice, once I remembered that I had to set gpio1=out0 in the usbradio.conf file so I could actually control the pin...:) Key the radio up...pin goes high after 10 sec...120 seconds after unkey...pin goes low. Nice. Have my 260 on the plug right now...and it goes up and down as the pin goes high and low... Now, to build the simple interface circuit on some perf, hook it up...and start turning my fans on and off...without having to keep them running all the time. Thanks for the links and birddogging this. (we really need a repository somewhere with people's scripts, etc to share the collective knowledge...and it shouldn't fall on Duuuude or the other folks..) Nice job, Kyle. Scripts are running on the morrisville nodes...and as soon as I can get to rat shack to pick up the bits and such...have no doubt that it will work fine... BB From wb5nfc at yahoo.com Mon Jan 30 04:06:06 2012 From: wb5nfc at yahoo.com (wb5nfc at yahoo.com) Date: Sun, 29 Jan 2012 22:06:06 -0600 Subject: [App_rpt-users] BeagleBoard LOX RF Interface Problem Message-ID: <028354E0-F62E-41C6-92E5-C59C31E11400@yahoo.com> I'm having a great deal of difficulty getting a TM-D7a to work as a node radio on my Beagle/LOX combination. Both ports are configured and operational as Allstar nodes. I can communicate with other nodes using the iaxRpt client and Echolink, but I just can't get COS or PTT to the radio. I'm using one of Marshall's URI cables made for the LOX and TM-D7, so I'm sure it just something stupid I'm doing - or NOT doing in my configs. No COS or PTT shows up using the CLI. Any experienced Beagle-Boarder's willing to contribute to my education? MY fun meter is pegged out... John WB5NFC Sent from my iPad From bbrown at byrg.net Mon Jan 30 13:27:02 2012 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Mon, 30 Jan 2012 07:27:02 -0600 Subject: [App_rpt-users] Random repeater hangiing In-Reply-To: <1327877689.66266.YahooMailClassic@web160304.mail.bf1.yahoo.com> References: <1327877689.66266.YahooMailClassic@web160304.mail.bf1.yahoo.com> Message-ID: Our experiance with the Arcom controllers, is it is the Arcom that is the issue and not the app_rpt. We ended up eliminating the Arcom and probelm went away. -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://sm0kenet.net http://byrg.net http://kcdstar.byrg.net http://w0nqx.blogspot.com Quis custodiet ipsos custodes? Its not how many watts you have, its the SIZE of your watts that matter! -- Johnny Marshall, W0JM-SK -- On Sun, Jan 29, 2012 at 4:54 PM, Fran wrote: > Has anyone been very randon repeater hangings, it doesnt happen very > often but in the last month I have been getting some random repeater > lockups, I tried rebooting the repeater and Arcom controller but that > doesnt do it, I then reboot the Asterisk server and that seems to unkey my > system. Is there a log I can track that might help me pinpoint the problem? > Frank > > _______________________________________________ > 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 bdboyle at bdboyle.com Mon Jan 30 13:36:52 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Mon, 30 Jan 2012 08:36:52 -0500 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: References: <4F25E9EE.70600@bdboyle.com> Message-ID: <4F269CF4.4000206@bdboyle.com> On 1/29/12 11:34 PM, K&R Yoksh wrote: >> Thanks for the links and birddogging this. > > You're welcome, and thanks for the email.. The group didn't really seem > to think that my idea was worth pursuing, > but I did. It's always nice to hear when someone else benefits from it, > too.. My motto (stolen happily from Lotus Cars founder Colin Chapman): "Simplify and add lightness". We (using the pontifical "we") tend to complicate things (either through an inveterate drive to turn a simple problem into a complex engineering exercise or 'can't put it down...' nature)...another cliche is 'inside every complex engineering problem is a simple solution struggling to get out...'. Sometimes, it is not as complex, in the final analysis, as it seems. ;) (And, big props to Jim, Steve, and the rest of the contributors to the base code who have developed a SIMPLE way to interact with a complex system...that is the definition of elegant...) > >> (we really need a repository somewhere with people's scripts, etc to >> share the collective knowledge...and it shouldn't fall on Duuuude or the >> other folks..) > > I agree.. FWIW, I ended up putting a few more on my web page... > Basically just > my Random Allstar connect script and Random Echolink connect script. > They are > pretty crude, but they work.. I've been using them for a year or two.. > I think I've posted my weather and wx alert scripts somewhere...and a couple are actually using them...;) Yours is online out here on the east coast, I know KB2EAR has a repository for the nodename audio files...we have the start, anyway... -- 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 kc9gqr at gmail.com Mon Jan 30 15:14:02 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Mon, 30 Jan 2012 09:14:02 -0600 Subject: [App_rpt-users] Computers that work with this project Message-ID: Looking for some different type's of computers for our project in Central IL.. will this type of server work DL360-xeon30x2 I figure for 100 bucks for server hardware it might not be a bad choice.. I know my netbook didn't work with CENTOS as it couldn't work with the ethernet built it but will server hardware work or is it more trouble than it's worth. Part #: * DL360-XEON30X2-R* Part #: * DL360-XEON30X2-R* -------------- next part -------------- An HTML attachment was scrubbed... URL: From wb3awj at comcast.net Mon Jan 30 16:17:10 2012 From: wb3awj at comcast.net (Robert A. Poff WB3AWJ) Date: Mon, 30 Jan 2012 16:17:10 +0000 (UTC) Subject: [App_rpt-users] Computers that work with this project In-Reply-To: Message-ID: <974605482.256083.1327940230640.JavaMail.root@sz0117a.westchester.pa.mail.comcast.net> For cheap, where power consumption isn't an issue, I've used these : IBM Thinkcentre With 2GB of memory it runs XIPAR with no memory swapping. I'm building up another node running ACID, with no problems so far. In addition I have a flock of different scripts running at different times, again no swapping. And my experience with this particular EBAY seller has been great. No financial interest on my part, just a happy customer. Bob Poff WB3AWJ Allstar 27784, 27783, 27826, and coming soon 28260. -------------- next part -------------- An HTML attachment was scrubbed... URL: From cpe.jfreeman at gmail.com Mon Jan 30 16:21:38 2012 From: cpe.jfreeman at gmail.com (Josh Freeman) Date: Mon, 30 Jan 2012 10:21:38 -0600 Subject: [App_rpt-users] Reverse Auto patch.. In-Reply-To: References: Message-ID: <4F26C392.4060902@gmail.com> Depends on how you have it set up. After dialing *6, assuming that's your autopatch access command, dial the extension that the reverse-autopatch call is "parked" on. I had mine set up such that the repeater would announce "Incoming call for CALLSIGN on 701." A radio user could pick up the call by dialing *6701. On 01/29/2012 07:08 PM, Bradley Haney wrote: > When a reverse Autopatch comes in do you just do a *6 to receive the > call? > > > _______________________________________________ > 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 kh2d at bellsouth.net Mon Jan 30 16:47:09 2012 From: kh2d at bellsouth.net (Jim Kehler) Date: Mon, 30 Jan 2012 11:47:09 -0500 Subject: [App_rpt-users] Computers that work with this project In-Reply-To: References: Message-ID: <4F26C98D.6070205@bellsouth.net> I'm new to both Asterisk and Linux, but I've had the software running on a few different boat anchors including a 10 year old Compaq Presario, a 10 year old Dell Dimension and an IBM T40 notebook. I'm currently using the T40 notebook. Linux seems to be a lot more resource friendly than Windows is, so you don't need anything fancy to make it go; I think a basic install uses a couple gigabytes of disk space and right now my notebooks is using a whopping 62 MB of memory. Our group is using a few Dell Optiplex 755 systems in both the small form factor and ultra small form factor sizes and they work fine too. You can pick those up on Ebay for less than a hundred bucks. If it used to run Windows and it has an NIC card that works, it will probably work fine. Hope that helps. 73, Jim KH2D On 1/30/2012 10:14 AM, Bradley Haney wrote: > Looking for some different type's of computers for our project in > Central IL.. > will this type of server work DL360-xeon30x2 > I figure for 100 bucks for server hardware it might not be a bad > choice.. I know my netbook didn't work with CENTOS as it couldn't > work with the ethernet built it but will server hardware work or is > it more trouble than it's worth. > Part #: * DL360-XEON30X2-R* > > Part #: * DL360-XEON30X2-R* > > > > _______________________________________________ > 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 kh2d at bellsouth.net Mon Jan 30 16:50:34 2012 From: kh2d at bellsouth.net (Jim Kehler) Date: Mon, 30 Jan 2012 11:50:34 -0500 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <4F269CF4.4000206@bdboyle.com> References: <4F25E9EE.70600@bdboyle.com> <4F269CF4.4000206@bdboyle.com> Message-ID: <4F26CA5A.5040101@bellsouth.net> I'm new on the list as of last night. A couple of questions. Where do you hide the scripts? And is it OK to post links on the list? 73, Jim KH2D On 1/30/2012 8:36 AM, Bryan D. Boyle wrote: > > I think I've posted my weather and wx alert scripts somewhere...and a > couple are actually using them...;) Yours is online out here on the > east coast, I know KB2EAR has a repository for the nodename audio > files...we have the start, anyway... From bdboyle at bdboyle.com Mon Jan 30 17:08:55 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Mon, 30 Jan 2012 12:08:55 -0500 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <4F26CA5A.5040101@bellsouth.net> References: <4F25E9EE.70600@bdboyle.com> <4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net> Message-ID: <4F26CEA7.4070607@bdboyle.com> On 1/30/12 11:50 AM, Jim Kehler wrote: > I'm new on the list as of last night. A couple of questions. Where do you > hide the scripts? And is it OK to post links on the list? Welcome to the collective. We're a pentium borg. You will be approximated...;) Seriously, hop on and enjoy the ride. Hide as in where it is on your system, or where we're all hiding the juicy stuff we've developed? The NJPAASTERISK group, of which I'm one of the operators, have standardized on a scripts directory in the /etc/asterisk hierarchy (well, most of us have anyway..) to make it easier to backup the configuration and shorten deployment cycle time. Others put them in /etc or /usr/sbin or ??? Guess it goes where you feel it should be. Just be consistent. That means that, when you write something, you're pretty sure of where it should reside, and makes it easier to find 'stuff' that's directly applicable to your operation. It also means that, if you glom on to a script or app that someone else has written, you have to do some editing to make it work (pretty much standard when using others' works...) in your operation. As to the latter question...well, that topic came up yesterday, with no resolution. I have a repository for my weather scripts that I hacked/wrote/modified at http://www.wb0yle.com/weather.htm, Kyle has some stuff on his site...I'm sure others will chime in (hint, hint...) if they have anything they'd like to make public... And, I don't think there is any blanket prohibition against posting links. -- 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 ke6pcv at cal-net.org Mon Jan 30 17:59:18 2012 From: ke6pcv at cal-net.org (Marshall Oldham) Date: Mon, 30 Jan 2012 09:59:18 -0800 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <4F26CEA7.4070607@bdboyle.com> References: <4F25E9EE.70600@bdboyle.com><4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net> <4F26CEA7.4070607@bdboyle.com> Message-ID: <0DC82915B09548738B13099DE0243F50@marshall2> Maybe I don't understand how things work as I am not a Linux power user by any means. But can't documentation, information and scripts be posted on this website which was setup by the app_rpt creators? http://ohnosec.org/drupal/ After all, isn't this site kind of the unofficial "Official" site for support? It would sure be nice to keep all this great information in one place. Marshall - ke6pcv > -----Original Message----- > From: app_rpt-users-bounces at ohnosec.org > [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bryan D. Boyle > Sent: Monday, January 30, 2012 9:09 AM > To: app_rpt mailing list > Subject: Re: [App_rpt-users] GPIO fan control script now available > > On 1/30/12 11:50 AM, Jim Kehler wrote: > > I'm new on the list as of last night. A couple of > questions. Where do > > you hide the scripts? And is it OK to post links on the list? > > Welcome to the collective. We're a pentium borg. You will be > approximated...;) Seriously, hop on and enjoy the ride. > > Hide as in where it is on your system, or where we're all > hiding the juicy stuff we've developed? > > The NJPAASTERISK group, of which I'm one of the operators, > have standardized on a scripts directory in the /etc/asterisk > hierarchy (well, most of us have anyway..) to make it easier > to backup the configuration and shorten deployment cycle > time. Others put them in /etc or /usr/sbin or ??? Guess it > goes where you feel it should be. > Just be consistent. > > That means that, when you write something, you're pretty sure > of where it should reside, and makes it easier to find > 'stuff' that's directly applicable to your operation. It > also means that, if you glom on to a script or app that > someone else has written, you have to do some editing to make > it work (pretty much standard when using others' works...) in > your operation. > > As to the latter question...well, that topic came up > yesterday, with no resolution. I have a repository for my > weather scripts that I hacked/wrote/modified at > http://www.wb0yle.com/weather.htm, Kyle has some stuff on his > site...I'm sure others will chime in (hint, hint...) if they > have anything they'd like to make public... > > And, I don't think there is any blanket prohibition against > posting links. > > -- > 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 > From n3xcc at repeater-builder.com Mon Jan 30 18:00:58 2012 From: n3xcc at repeater-builder.com (Scott Zimmerman) Date: Mon, 30 Jan 2012 13:00:58 -0500 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <4F26CEA7.4070607@bdboyle.com> References: <4F25E9EE.70600@bdboyle.com> <4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net> <4F26CEA7.4070607@bdboyle.com> Message-ID: <4F26DADA.6050203@repeater-builder.com> > I'm sure others will chime in (hint, hint...) <-- Since allstarnode.com was designed to be a peer-to-peer BB system for ALL flavors of AllStar builds, I can make public FTP space available on there if it's needed/desired. Scott Scott Zimmerman Amateur Radio Call N3XCC 474 Barnett Road Boswell, PA 15531 On 1/30/2012 12:08 PM, Bryan D. Boyle wrote: > On 1/30/12 11:50 AM, Jim Kehler wrote: >> I'm new on the list as of last night. A couple of questions. Where do you >> hide the scripts? And is it OK to post links on the list? > > Welcome to the collective. We're a pentium borg. You will be approximated...;) Seriously, hop on and > enjoy the ride. > > Hide as in where it is on your system, or where we're all hiding the juicy stuff we've developed? > > The NJPAASTERISK group, of which I'm one of the operators, have standardized on a scripts directory > in the /etc/asterisk hierarchy (well, most of us have anyway..) to make it easier to backup the > configuration and shorten deployment cycle time. Others put them in /etc or /usr/sbin or ??? Guess > it goes where you feel it should be. Just be consistent. > > That means that, when you write something, you're pretty sure of where it should reside, and makes > it easier to find 'stuff' that's directly applicable to your operation. It also means that, if you > glom on to a script or app that someone else has written, you have to do some editing to make it > work (pretty much standard when using others' works...) in your operation. > > As to the latter question...well, that topic came up yesterday, with no resolution. I have a > repository for my weather scripts that I hacked/wrote/modified at http://www.wb0yle.com/weather.htm, > Kyle has some stuff on his site...I'm sure others will chime in (hint, hint...) if they have > anything they'd like to make public... > > And, I don't think there is any blanket prohibition against posting links. > From bdboyle at bdboyle.com Mon Jan 30 18:36:55 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Mon, 30 Jan 2012 13:36:55 -0500 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <4F26E1E6.70700@bellsouth.net> References: <4F25E9EE.70600@bdboyle.com> <4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net> <4F26CEA7.4070607@bdboyle.com> <4F26E1E6.70700@bellsouth.net> Message-ID: <4F26E347.6080709@bdboyle.com> On 1/30/12 1:31 PM, Jim Kehler wrote: > Thanks Bryan. I'm new to Linux so I'm looking for examples. Got the basic > node up and going no problems, but it needs tuning. Things aren't fun > unless you can tune them.... su - radio-tune-menu is a great thing to play with...;) The rest? Well...dive in. > > Your Read Me First files seems to be MIA, I got a 404 when I tried to > read it. thanks for reminding me...was in a rush to get the other stuff up before the cold winds started blowing back in Nov., and never got a Round Tuit. -- 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 steve10000 at comcast.net Mon Jan 30 18:41:13 2012 From: steve10000 at comcast.net (Stephen Liggett) Date: Mon, 30 Jan 2012 13:41:13 -0500 Subject: [App_rpt-users] getting started trouble Message-ID: I am transitioning our repeater from IRLP to ALLSTAR and I am having some trouble. I installed ACID, and it went without any trouble. With the URI connected, the green light blinks. I can ping yahoo.com, and I have ports 4569 and 222 forwarded. As it stands, the node (28325, W3YT) shows up on the web transceiver in green, but nobody seems to be able to connect to it. nscheck.sh gives an output of Node 1, Node 2 are up, node 3, node 4 are down (whatever that means). I do not have the repeater connected, but I assume that one should be able to connect to the node, regardless of whether there is anything connected to the URI. It seems to me that I am missing something here. Can someone get me past this? steve W3RX trustee for W3YT repeater IRLP 8676 Allstar 28325 PS Minor question, on my node info, I somehow never saw the chance to put in the freq, tone, and description of the repeater. Can that be done now? From wb3awj at comcast.net Mon Jan 30 19:04:42 2012 From: wb3awj at comcast.net (Robert A. Poff WB3AWJ) Date: Mon, 30 Jan 2012 19:04:42 +0000 (UTC) Subject: [App_rpt-users] getting started trouble In-Reply-To: Message-ID: <47330681.268304.1327950282503.JavaMail.root@sz0117a.westchester.pa.mail.comcast.net> Using the CLI, I can connect from both 27783 and 27784. But within seconds it disconnects with this message: [Jan 30 14:00:05] NOTICE[2580]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response So you're mostly there. Maybe a network performance issue? What happens if you use the CLI to connect to another node? Feel free to use 27826 (Loganville, PA HUB) to test. Robert A. Poff Loganville, PA. "Lieutenant, target the offending power boat and launch photon torpedoes" ----- Original Message ----- From: "Stephen Liggett" To: "app rpt-users" Sent: Monday, January 30, 2012 1:41:13 PM Subject: [App_rpt-users] getting started trouble I am transitioning our repeater from IRLP to ALLSTAR and I am having some trouble. I installed ACID, and it went without any trouble. With the URI connected, the green light blinks. I can ping yahoo.com, and I have ports 4569 and 222 forwarded. As it stands, the node (28325, W3YT) shows up on the web transceiver in green, but nobody seems to be able to connect to it. nscheck.sh gives an output of Node 1, Node 2 are up, node 3, node 4 are down (whatever that means). I do not have the repeater connected, but I assume that one should be able to connect to the node, regardless of whether there is anything connected to the URI. It seems to me that I am missing something here. Can someone get me past this? steve W3RX trustee for W3YT repeater IRLP 8676 Allstar 28325 PS Minor question, on my node info, I somehow never saw the chance to put in the freq, tone, and description of the repeater. Can that be done now? _______________________________________________ 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 bdboyle at bdboyle.com Mon Jan 30 19:07:13 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Mon, 30 Jan 2012 14:07:13 -0500 Subject: [App_rpt-users] getting started trouble In-Reply-To: References: Message-ID: <4F26EA61.9060101@bdboyle.com> On 1/30/12 1:41 PM, Stephen Liggett wrote: > I am transitioning our repeater from IRLP to ALLSTAR and I am having some trouble. > > I installed ACID, and it went without any trouble. Good. > > With the URI connected, the green light blinks. That's what it does. Means asterisk is talking to the hardware. > > I can ping yahoo.com, and I have ports 4569 and 222 forwarded. Yup. > > As it stands, the node (28325, W3YT) shows up on the web transceiver in green, but nobody seems to be able to connect to it. Trying now...you are right, though the online nodes show you as active, and, at this stage, up for 30 minutes. Don't have time to work thru it, maybe someone else can check... Just as a quick one...if you go into (on the allstarlink.org site), node, node configuration, your call sign, your node number, then select access settings from the submenu on the page...you'll see a pull down box for User Access via Web Transceiver...that should be enabled so you can get in via the web transceiver. > > nscheck.sh gives an output of Node 1, Node 2 are up, node 3, node 4 are down (whatever that means). The allstar servers are up. > > I do not have the repeater connected, but I assume that one should be able to connect to the node, regardless of whether there is anything connected to the URI. > Should be ok to do so. > It seems to me that I am missing something here. Can someone get me past this? Doesn't seem like it. -- 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 app_rpt at alertradio.net Mon Jan 30 19:06:16 2012 From: app_rpt at alertradio.net (ALERTradio ERC | App_Rpt) Date: Mon, 30 Jan 2012 13:06:16 -0600 Subject: [App_rpt-users] Asterisk Radio Network | Commons Script House In-Reply-To: <4F26DADA.6050203@repeater-builder.com> References: <4F25E9EE.70600@bdboyle.com> <4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net> <4F26CEA7.4070607@bdboyle.com> <4F26DADA.6050203@repeater-builder.com> Message-ID: <4F26EA28.2000302@alertradio.net> Introducing the Commons Script House which will be located at: http://scripts.asteriskradio.net Script builders can show case their scripts and users can comment about the scripts presented. Mars - N0PCO ALERTradio ERC www.alertradio.net | www.asteriskradio.net | www.darnsimple.net Technology resources for public safety. It's all about being ready. From mhebert1975 at gmail.com Mon Jan 30 19:09:35 2012 From: mhebert1975 at gmail.com (Michael Hebert) Date: Mon, 30 Jan 2012 19:09:35 +0000 Subject: [App_rpt-users] getting started trouble In-Reply-To: <47330681.268304.1327950282503.JavaMail.root@sz0117a.westchester.pa.mail.comcast.net> References: <47330681.268304.1327950282503.JavaMail.root@sz0117a.westchester.pa.mail.comcast.net> Message-ID: <765932960-1327950576-cardhu_decombobulator_blackberry.rim.net-76233871-@b26.c8.bise6.blackberry> Are you using dhcp or static ip address? I had trouble using a static ip address. make sure you have a default route for the acid box. -----Original Message----- From: "Robert A. Poff WB3AWJ" Sender: app_rpt-users-bounces at ohnosec.org Date: Mon, 30 Jan 2012 19:04:42 To: Stephen Liggett Cc: app rpt-users Subject: Re: [App_rpt-users] getting started trouble _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From ke6pcv at cal-net.org Mon Jan 30 19:18:29 2012 From: ke6pcv at cal-net.org (Marshall Oldham) Date: Mon, 30 Jan 2012 11:18:29 -0800 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <4F26DADA.6050203@repeater-builder.com> References: <4F25E9EE.70600@bdboyle.com><4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net><4F26CEA7.4070607@bdboyle.com> <4F26DADA.6050203@repeater-builder.com> Message-ID: <596274BA5F9C41208EFB6670D103A65C@marshall2> Scott, That is a very generous offer on your part, but wouldn't it be better to keep everything all in one place for folks to go use as a reference? Especially new allstar node owners? So, I will state this question again. Am I missing something? Why doesn't anyone want to use the official help site? If you go to the allstar.org webpage and click on the link that says "help" it will take you to the another page. If you click on "Links To Helpful Things Pertaining to this Technology" The first thing that comes up is "Asterisk/app_rpt project -- Lots of good documentation on the Asterisk app_rpt application" You click on that link and it takes you to http://ohnosec.org/drupal/ So why can't documentation, information and scripts be posted on this website which was setup by the app_rpt creators? After all, isn't this site kind of the "Official" site for support? I don't think it's a good idea to have several fragmented websites with information when we already have the official one that is pretty good. Having multiple websites will confuse new users on where to get information. 73 Marshall - ke6pcv > -----Original Message----- > From: app_rpt-users-bounces at ohnosec.org > [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Scott > Zimmerman > Sent: Monday, January 30, 2012 10:01 AM > To: app_rpt mailing list > Subject: Re: [App_rpt-users] GPIO fan control script now available > > > I'm sure others will chime in (hint, hint...) > <-- Since allstarnode.com was designed to be a peer-to-peer > BB system for ALL flavors of AllStar builds, I can make > public FTP space available on there if it's needed/desired. > > Scott > > Scott Zimmerman > Amateur Radio Call N3XCC > 474 Barnett Road > Boswell, PA 15531 > > On 1/30/2012 12:08 PM, Bryan D. Boyle wrote: > > On 1/30/12 11:50 AM, Jim Kehler wrote: > >> I'm new on the list as of last night. A couple of > questions. Where do > >> you hide the scripts? And is it OK to post links on the list? > > > > Welcome to the collective. We're a pentium borg. You will be > > approximated...;) Seriously, hop on and enjoy the ride. > > > > Hide as in where it is on your system, or where we're all > hiding the juicy stuff we've developed? > > > > The NJPAASTERISK group, of which I'm one of the operators, have > > standardized on a scripts directory in the /etc/asterisk hierarchy > > (well, most of us have anyway..) to make it easier to backup the > > configuration and shorten deployment cycle time. Others put > them in /etc or /usr/sbin or ??? Guess it goes where you feel > it should be. Just be consistent. > > > > That means that, when you write something, you're pretty > sure of where > > it should reside, and makes it easier to find 'stuff' > that's directly > > applicable to your operation. It also means that, if you > glom on to a > > script or app that someone else has written, you have to do > some editing to make it work (pretty much standard when using > others' works...) in your operation. > > > > As to the latter question...well, that topic came up > yesterday, with > > no resolution. I have a repository for my weather scripts that I > > hacked/wrote/modified at http://www.wb0yle.com/weather.htm, > > Kyle has some stuff on his site...I'm sure others will > chime in (hint, > > hint...) if they have anything they'd like to make public... > > > > And, I don't think there is any blanket prohibition against > posting links. > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > From n3xcc at repeater-builder.com Mon Jan 30 20:53:46 2012 From: n3xcc at repeater-builder.com (Scott Zimmerman) Date: Mon, 30 Jan 2012 15:53:46 -0500 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <596274BA5F9C41208EFB6670D103A65C@marshall2> References: <4F25E9EE.70600@bdboyle.com><4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net><4F26CEA7.4070607@bdboyle.com> <4F26DADA.6050203@repeater-builder.com> <596274BA5F9C41208EFB6670D103A65C@marshall2> Message-ID: <4F27035A.9040705@repeater-builder.com> > So, I will state this question again. Am I missing something? Why doesn't anyone want to use > the official help site? <-- Well..... Quite frankly Marshall, I don't give a damn where it's located. There was a need and I made an offer. Don't bite my head off about it! It seems like if the ohnosec.org/drupal/ site was the place to be putting stuff, others would have done it before now. > After all, isn't this site kind of the "Official" site for support? <-- Yep, it's SUPPOSED to be. When I was starting out that site left LOTS to be desired, hence why I created the allstarnode.com BB site. > Having multiple websites will confuse new users on where to get information. <-- Google will find GOOD information no matter WHERE it's located. Back to sleep, Scott Scott Zimmerman Amateur Radio Call N3XCC 474 Barnett Road Boswell, PA 15531 On 1/30/2012 2:18 PM, Marshall Oldham wrote: > Scott, > > That is a very generous offer on your part, but wouldn't it be better to keep everything all in one place for folks to > go use as a reference? Especially new allstar node owners? > > So, I will state this question again. Am I missing something? Why doesn't anyone want to use > the official help site? > > If you go to the allstar.org webpage and click on the link that says "help" it will take you to the another page. > > If you click on "Links To Helpful Things Pertaining to this Technology" > > The first thing that comes up is "Asterisk/app_rpt project -- Lots of good documentation on the Asterisk app_rpt application" > > You click on that link and it takes you to http://ohnosec.org/drupal/ > > So why can't documentation, information and scripts be posted on this website which was setup by the app_rpt creators? > > After all, isn't this site kind of the "Official" site for support? > > I don't think it's a good idea to have several fragmented websites with information when we already have the official one that is > pretty good. > Having multiple websites will confuse new users on where to get information. > > 73 > > Marshall - ke6pcv > >> -----Original Message----- >> From: app_rpt-users-bounces at ohnosec.org >> [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Scott >> Zimmerman >> Sent: Monday, January 30, 2012 10:01 AM >> To: app_rpt mailing list >> Subject: Re: [App_rpt-users] GPIO fan control script now available >> >> > I'm sure others will chime in (hint, hint...) >> <-- Since allstarnode.com was designed to be a peer-to-peer >> BB system for ALL flavors of AllStar builds, I can make >> public FTP space available on there if it's needed/desired. >> >> Scott >> >> Scott Zimmerman >> Amateur Radio Call N3XCC >> 474 Barnett Road >> Boswell, PA 15531 >> >> On 1/30/2012 12:08 PM, Bryan D. Boyle wrote: >>> On 1/30/12 11:50 AM, Jim Kehler wrote: >>>> I'm new on the list as of last night. A couple of >> questions. Where do >>>> you hide the scripts? And is it OK to post links on the list? >>> >>> Welcome to the collective. We're a pentium borg. You will be >>> approximated...;) Seriously, hop on and enjoy the ride. >>> >>> Hide as in where it is on your system, or where we're all >> hiding the juicy stuff we've developed? >>> >>> The NJPAASTERISK group, of which I'm one of the operators, have >>> standardized on a scripts directory in the /etc/asterisk hierarchy >>> (well, most of us have anyway..) to make it easier to backup the >>> configuration and shorten deployment cycle time. Others put >> them in /etc or /usr/sbin or ??? Guess it goes where you feel >> it should be. Just be consistent. >>> >>> That means that, when you write something, you're pretty >> sure of where >>> it should reside, and makes it easier to find 'stuff' >> that's directly >>> applicable to your operation. It also means that, if you >> glom on to a >>> script or app that someone else has written, you have to do >> some editing to make it work (pretty much standard when using >> others' works...) in your operation. >>> >>> As to the latter question...well, that topic came up >> yesterday, with >>> no resolution. I have a repository for my weather scripts that I >>> hacked/wrote/modified at http://www.wb0yle.com/weather.htm, >>> Kyle has some stuff on his site...I'm sure others will >> chime in (hint, >>> hint...) if they have anything they'd like to make public... >>> >>> And, I don't think there is any blanket prohibition against >> posting links. >>> >> _______________________________________________ >> 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 ke6pcv at cal-net.org Mon Jan 30 21:23:06 2012 From: ke6pcv at cal-net.org (Marshall Oldham) Date: Mon, 30 Jan 2012 13:23:06 -0800 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <4F27035A.9040705@repeater-builder.com> References: <4F25E9EE.70600@bdboyle.com><4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net><4F26CEA7.4070607@bdboyle.com> <4F26DADA.6050203@repeater-builder.com> <596274BA5F9C41208EFB6670D103A65C@marshall2> <4F27035A.9040705@repeater-builder.com> Message-ID: <67D1BB6E5E504E78913D8662E7740AA5@marshall2> > > > So, I will state this question again. Am I missing > something? Why doesn't anyone want to use > the official help site? > <-- Well..... Quite frankly Marshall, I don't give a damn > where it's located. There was a need and I made an offer. > Don't bite my head off about it! > Scott, Sorry, if you miss interpreted my question about using the official help site as biting your head off. If was not my intent when I asked the question, I just wanted to know why folks where against using the site. > It seems like if the ohnosec.org/drupal/ site was the place > to be putting stuff, others would have done it before now. > I gather that there is some type of technical issue that is preventing folks from posting information to this site???? Or is it, that they just do not like the way the information is presented? > > After all, isn't this site kind of the "Official" site for support? > <-- Yep, it's SUPPOSED to be. When I was starting out that > site left LOTS to be desired, hence why I created the > allstarnode.com BB site. > If everyone helped add info to the ohnosec.org/drupal/ site, it would soon be MORE desired site and in one place. > > Having multiple websites will confuse new users on where > to get information. > <-- Google will find GOOD information no matter WHERE it's located. > Yes, I understand that one can Google and find just about anything. But the point that I was trying to make is, that for a beginner to much information on several websites can be confusing. Again, I am not trying to get on anyone's case or bite anyone's head off. Just thought it would be easier for the new folks to have an official place to go to get answers to questions. 73 Marshall - ke6pcv > Back to sleep, > Scott > > Scott Zimmerman > Amateur Radio Call N3XCC > 474 Barnett Road > Boswell, PA 15531 > > On 1/30/2012 2:18 PM, Marshall Oldham wrote: > > Scott, > > > > That is a very generous offer on your part, but wouldn't it > be better > > to keep everything all in one place for folks to go use as > a reference? Especially new allstar node owners? > > > > So, I will state this question again. Am I missing something? Why > > doesn't anyone want to use the official help site? > > > > If you go to the allstar.org webpage and click on the link > that says "help" it will take you to the another page. > > > > If you click on "Links To Helpful Things Pertaining to this > Technology" > > > > The first thing that comes up is "Asterisk/app_rpt project > -- Lots of good documentation on the Asterisk app_rpt application" > > > > You click on that link and it takes you to > http://ohnosec.org/drupal/ > > > > So why can't documentation, information and scripts be > posted on this website which was setup by the app_rpt creators? > > > > After all, isn't this site kind of the "Official" site for support? > > > > I don't think it's a good idea to have several fragmented websites > > with information when we already have the official one that > is pretty good. > > Having multiple websites will confuse new users on where to > get information. > > > > 73 > > > > Marshall - ke6pcv > > > >> -----Original Message----- > >> From: app_rpt-users-bounces at ohnosec.org > >> [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Scott > >> Zimmerman > >> Sent: Monday, January 30, 2012 10:01 AM > >> To: app_rpt mailing list > >> Subject: Re: [App_rpt-users] GPIO fan control script now available > >> > >> > I'm sure others will chime in (hint, hint...) > >> <-- Since allstarnode.com was designed to be a > peer-to-peer BB system > >> for ALL flavors of AllStar builds, I can make public FTP space > >> available on there if it's needed/desired. > >> > >> Scott > >> > >> Scott Zimmerman > >> Amateur Radio Call N3XCC > >> 474 Barnett Road > >> Boswell, PA 15531 > >> > >> On 1/30/2012 12:08 PM, Bryan D. Boyle wrote: > >>> On 1/30/12 11:50 AM, Jim Kehler wrote: > >>>> I'm new on the list as of last night. A couple of > >> questions. Where do > >>>> you hide the scripts? And is it OK to post links on the list? > >>> > >>> Welcome to the collective. We're a pentium borg. You will be > >>> approximated...;) Seriously, hop on and enjoy the ride. > >>> > >>> Hide as in where it is on your system, or where we're all > >> hiding the juicy stuff we've developed? > >>> > >>> The NJPAASTERISK group, of which I'm one of the operators, have > >>> standardized on a scripts directory in the /etc/asterisk > hierarchy > >>> (well, most of us have anyway..) to make it easier to backup the > >>> configuration and shorten deployment cycle time. Others put > >> them in /etc or /usr/sbin or ??? Guess it goes where you feel it > >> should be. Just be consistent. > >>> > >>> That means that, when you write something, you're pretty > >> sure of where > >>> it should reside, and makes it easier to find 'stuff' > >> that's directly > >>> applicable to your operation. It also means that, if you > >> glom on to a > >>> script or app that someone else has written, you have to do > >> some editing to make it work (pretty much standard when > using others' > >> works...) in your operation. > >>> > >>> As to the latter question...well, that topic came up > >> yesterday, with > >>> no resolution. I have a repository for my weather scripts that I > >>> hacked/wrote/modified at http://www.wb0yle.com/weather.htm, > >>> Kyle has some stuff on his site...I'm sure others will > >> chime in (hint, > >>> hint...) if they have anything they'd like to make public... > >>> > >>> And, I don't think there is any blanket prohibition against > >> posting links. > >>> > >> _______________________________________________ > >> 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 kh2d at bellsouth.net Mon Jan 30 21:47:49 2012 From: kh2d at bellsouth.net (Jim Kehler) Date: Mon, 30 Jan 2012 16:47:49 -0500 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <596274BA5F9C41208EFB6670D103A65C@marshall2> References: <4F25E9EE.70600@bdboyle.com><4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net><4F26CEA7.4070607@bdboyle.com> <4F26DADA.6050203@repeater-builder.com> <596274BA5F9C41208EFB6670D103A65C@marshall2> Message-ID: <4F271005.3040001@bellsouth.net> Look at it this way, Marshal. Let's say you get up on Friday morning and your wife wants to go out to dinner that night. At 6 PM you find out that every restaurant within 500 miles of your house has closed up and gone out of business, with the exception of one; Freddy's Diner. So you have no choice. You have to take the wife to Freddy's. And the only thing you'll get to eat at Freddy's is whatever Freddy decides to feed you. If Freddy doesn't want you have Apple Pie, you aren't going to get any Apple Pie. No matter how much you beg Freddy..... I've only been playing with this stuff for about a month. I'd never seen Linux. Some documentation I found assumed that I was proficient with Linux, which I'm not. So banging around in Google finding bits and pieces was a learning experience; I don't like to just make something work, I want to know how it works so that if it breaks, I can fix it. Documentation at all levels is a good thing. The more the merrier. As long as Google is still in business, it's available to anybody that wants to go find it. All the scripts in one place sounds like a terrific idea to me. Hopefully the guys who wrote them won't assume I know how to use them when I find them. That being said, does anybody know where I can find the fan script? My radio is hot.... 73, Jim KH2D On 1/30/2012 2:18 PM, Marshall Oldham wrote: > Scott, > > That is a very generous offer on your part, but wouldn't it be better to keep everything all in one place for folks to > go use as a reference? Especially new allstar node owners? > > So, I will state this question again. Am I missing something? Why doesn't anyone want to use > the official help site? > > If you go to the allstar.org webpage and click on the link that says "help" it will take you to the another page. > > If you click on "Links To Helpful Things Pertaining to this Technology" > > The first thing that comes up is "Asterisk/app_rpt project -- Lots of good documentation on the Asterisk app_rpt application" > > You click on that link and it takes you to http://ohnosec.org/drupal/ > > So why can't documentation, information and scripts be posted on this website which was setup by the app_rpt creators? > > After all, isn't this site kind of the "Official" site for support? > > I don't think it's a good idea to have several fragmented websites with information when we already have the official one that is > pretty good. > Having multiple websites will confuse new users on where to get information. > > 73 > > Marshall - ke6pcv > >> -----Original Message----- >> From: app_rpt-users-bounces at ohnosec.org >> [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Scott >> Zimmerman >> Sent: Monday, January 30, 2012 10:01 AM >> To: app_rpt mailing list >> Subject: Re: [App_rpt-users] GPIO fan control script now available >> >> > I'm sure others will chime in (hint, hint...) >> <-- Since allstarnode.com was designed to be a peer-to-peer >> BB system for ALL flavors of AllStar builds, I can make >> public FTP space available on there if it's needed/desired. >> >> Scott >> >> Scott Zimmerman >> Amateur Radio Call N3XCC >> 474 Barnett Road >> Boswell, PA 15531 >> >> On 1/30/2012 12:08 PM, Bryan D. Boyle wrote: >>> On 1/30/12 11:50 AM, Jim Kehler wrote: >>>> I'm new on the list as of last night. A couple of >> questions. Where do >>>> you hide the scripts? And is it OK to post links on the list? >>> Welcome to the collective. We're a pentium borg. You will be >>> approximated...;) Seriously, hop on and enjoy the ride. >>> >>> Hide as in where it is on your system, or where we're all >> hiding the juicy stuff we've developed? >>> The NJPAASTERISK group, of which I'm one of the operators, have >>> standardized on a scripts directory in the /etc/asterisk hierarchy >>> (well, most of us have anyway..) to make it easier to backup the >>> configuration and shorten deployment cycle time. Others put >> them in /etc or /usr/sbin or ??? Guess it goes where you feel >> it should be. Just be consistent. >>> That means that, when you write something, you're pretty >> sure of where >>> it should reside, and makes it easier to find 'stuff' >> that's directly >>> applicable to your operation. It also means that, if you >> glom on to a >>> script or app that someone else has written, you have to do >> some editing to make it work (pretty much standard when using >> others' works...) in your operation. >>> As to the latter question...well, that topic came up >> yesterday, with >>> no resolution. I have a repository for my weather scripts that I >>> hacked/wrote/modified at http://www.wb0yle.com/weather.htm, >>> Kyle has some stuff on his site...I'm sure others will >> chime in (hint, >>> hint...) if they have anything they'd like to make public... >>> >>> And, I don't think there is any blanket prohibition against >> posting links. >> _______________________________________________ >> 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 bbrown at byrg.net Mon Jan 30 22:00:07 2012 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Mon, 30 Jan 2012 16:00:07 -0600 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <4F271005.3040001@bellsouth.net> References: <4F25E9EE.70600@bdboyle.com> <4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net> <4F26CEA7.4070607@bdboyle.com> <4F26DADA.6050203@repeater-builder.com> <596274BA5F9C41208EFB6670D103A65C@marshall2> <4F271005.3040001@bellsouth.net> Message-ID: How about reading the archive of this thread and you will find your fan script. The link was provided in a previous post...... I am done....... -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From ismaelisuani at gmail.com Mon Jan 30 22:06:11 2012 From: ismaelisuani at gmail.com (Ismael Isuani) Date: Mon, 30 Jan 2012 19:06:11 -0300 Subject: [App_rpt-users] Last svn version iaxRpt Message-ID: Hi Where I can find the source of the latest version of the client iaxrpt? I found the source here http://www.xelatec.com/svn/iaxrpt/ but apparently the latest version is in the branche 1.1.8 and not in the trunk? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Mon Jan 30 23:38:48 2012 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Mon, 30 Jan 2012 18:38:48 -0500 Subject: [App_rpt-users] GPIO fan control script now available In-Reply-To: <4F271005.3040001@bellsouth.net> References: <4F25E9EE.70600@bdboyle.com><4F269CF4.4000206@bdboyle.com> <4F26CA5A.5040101@bellsouth.net><4F26CEA7.4070607@bdboyle.com> <4F26DADA.6050203@repeater-builder.com> <596274BA5F9C41208EFB6670D103A65C@marshall2> <4F271005.3040001@bellsouth.net> Message-ID: <4F272A08.5040004@bdboyle.com> Since it's my suggestion that started this little lit match discussion...let me explain my reasoning. Feel free to send flames to /dev/null. We're all in this together, ok? 1. I'm not speaking for Jim; he and perhaps one or two other people maintain the allstarlink.org site. I'm assuming it is NOT their day job. And, when they do maintain it, it's FOR FREE. I dislike imposing on ANYONE, especially one who has done so much to help US that we should expect him (or them, for that matter) to add to their responsibilities and develop an interactive site for US, THE USERS to swap the fruits of our labor from THEIR efforts. Links are cheap. Maintaining a site isn't; it takes time, effort, disk space, bandwidth, dealing with the clueless, etc. Got to help out those who help us. 2. The analogy, stated by another is apt. If you're going to put all your eggs in one basket, make sure it's a damn strong basket. And the internet ain't, regardless of what we think. DNSs get scrogged, disks go tango uniform, firewalls get dain bramaged, people fatfinger URLs...you name it. Resilient, it ain't. So, like many sites, there are mirrors, off-site repositories, etc. It's not a big deal. Done all the time. And is no reflection on the 'mother ship'. 3. Scott's offer was made in a gentlemanly manner IMHO (and he has a day job too...) of assistance and in the spirit of open source cooperation. Thank you, Scott. 4. It does no good to jump to conclusions, etc. as to motives or agendas, or what have you. Different sites? That's what the bookmark/favorites/etc tab is for in the browser. Even better, do what lots of folks who've been on the web since the 90s do, and make a local web page with links to ALL of your interests (mine range from restoring british sports cars to medieval theology to broadcast engineering to amateur radio to the american civil war...) in it, store it on the local machine (well, I actually store it on my server and load from there...) with all the requisite links. You'd be amazed how easy it is, and, instead of being handed a fish, you build your own pole and go out and grab what you want. 5. We're hams. We build stuff, make it work, and keep tweaking till we're done. Well...there's a wealth of knowledge out there, neat things we've all done, insights into how the system operates, or how we can twist its dongles a little more to our liking. In that spirit...it makes sense to share what we've all accomplished. For the good of all of us. 5. Thank you, Jim, for letting us fill up your mailbox today with something that really didn't need to go to the level it did. Bryan WB0YLE 27294, 27295, 27673, 27720, 37774, 90102 From kc5daq at gmail.com Mon Jan 30 23:50:28 2012 From: kc5daq at gmail.com (Gary Herzog SS) Date: Mon, 30 Jan 2012 17:50:28 -0600 Subject: [App_rpt-users] stats.allstarlink.org/nodeinfo issue Message-ID: <001801ccdfa9$f3547f90$d9fd7eb0$@gmail.com> Ok quick question I think.. when I click on this link below I get "Node 28099 is no longer in the database" why?? http://stats.allstarlink.org/nodeinfo.cgi?node=28099 I have ; ** For ACID *** statpost_program=/usr/bin/wget,-q,--timeout=15,--tries=1,--output-document=/ dev/null statpost_url=http://stats.allstarlink.org/uhandler.php ; Status updates in my rpt.conf enabled. I can connect to it with my other servers and nodes I do the command below and it indicates I am registered.. kc5daq-voip-hub*CLI> iax2 show registry Host dnsmgr Username Perceived Refresh State 67.215.233.178:4569 N 28099 74.124.47.53:4569 60 Registered I must be missing something here thanks for any help.. Kc5daq Gary From wb3awj at comcast.net Tue Jan 31 00:51:10 2012 From: wb3awj at comcast.net (Robert Poff) Date: Mon, 30 Jan 2012 19:51:10 -0500 Subject: [App_rpt-users] getting started trouble In-Reply-To: References: Message-ID: <1327971070.31097.11.camel@localhost> I've had a few email exchanges with Steve this afternoon. I believe his trouble with the Web Transceiver is related to outside nodes not being able to connect inbound and stay connected. >From my nodes, when I try to connect to his, I get a connect and an almost immediate disconnect with this message from the CLI: [Jan 30 19:38:11] NOTICE[2583]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response However, he can connect to me and stayed connected for about twenty minutes, until he told it to disconnect. If I ping the address I get from /tmp/rpt_extnodes-temp for his node I get quick response. So he's registering. And receiving the rpt-extnodes-temp file. He sent me the results from rpt stats 28325 and incoming connections are allowed. He says the correct ports are forwarded in his router. Any suggestions? -- Robert A. Poff Loganville, PA WB3AWJ - Allstar 27784 Powered by Linux On Mon, 2012-01-30 at 13:41 -0500, Stephen Liggett wrote: > I am transitioning our repeater from IRLP to ALLSTAR and I am having some trouble. > > I installed ACID, and it went without any trouble. > > With the URI connected, the green light blinks. > > I can ping yahoo.com, and I have ports 4569 and 222 forwarded. > > As it stands, the node (28325, W3YT) shows up on the web transceiver in green, but nobody seems to be able to connect to it. > > nscheck.sh gives an output of Node 1, Node 2 are up, node 3, node 4 are down (whatever that means). > > I do not have the repeater connected, but I assume that one should be able to connect to the node, regardless of whether there is anything connected to the URI. > > It seems to me that I am missing something here. Can someone get me past this? > > > > steve W3RX trustee for W3YT repeater IRLP 8676 Allstar 28325 > > > > PS Minor question, on my node info, I somehow never saw the chance to put in the freq, tone, and description of the repeater. Can that be done now? > > > _______________________________________________ > 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 Tue Jan 31 02:07:40 2012 From: yokshs at gmail.com (K&R Yoksh) Date: Mon, 30 Jan 2012 20:07:40 -0600 Subject: [App_rpt-users] GPIO fan control script now available Message-ID: <2A4CCCD4AA444C06863237559B82AA6F@main> Hello Jim, My scripts are available at www.qsl.net/k0kn/scripts.html 73 Kyle K0KN From kc9gqr at gmail.com Tue Jan 31 03:23:46 2012 From: kc9gqr at gmail.com (Bradley Haney) Date: Mon, 30 Jan 2012 21:23:46 -0600 Subject: [App_rpt-users] Delay on playback. Message-ID: when i play the day and time it seems that the "GOODMORNING" or such gets cut off and the same when the autopatch is suppose to say "Call terminated" does anyone know where the setting is to key up the radio for X amount of milli seconds before playing the file? Also Has anyone had success on answering a reverse autopatch. i have tried every suggestion that i received by email and no joy. Bradley -------------- next part -------------- An HTML attachment was scrubbed... URL: From kh2d at bellsouth.net Tue Jan 31 03:58:32 2012 From: kh2d at bellsouth.net (Jim Kehler) Date: Mon, 30 Jan 2012 22:58:32 -0500 Subject: [App_rpt-users] Delay on playback. In-Reply-To: References: Message-ID: <4F2766E8.7060400@bellsouth.net> I think it may be these setting: *telemwait=1000 ; Time to wait before sending most telemetry* idwait=1000 ; Time to wait before starting ID unkeywait=500 ; Time to wait after unkey before sending CT's and link telemetry *calltermwait=2000 ; Time to wait before announcing "call terminated"* In the [wait-times] stanza in RPT.CONF 73, Jim KH2D On 1/30/2012 10:23 PM, Bradley Haney wrote: > when i play the day and time it seems that the "GOODMORNING" or such > gets cut off and the same when the autopatch is suppose to say "Call > terminated" does anyone know where the setting is to key up the > radio for X amount of milli seconds before playing the file? Also > Has anyone had success on answering a reverse autopatch. i have > tried every suggestion that i received by email and no joy. > > Bradley > > > _______________________________________________ > 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 kh2d at bellsouth.net Tue Jan 31 04:03:19 2012 From: kh2d at bellsouth.net (Jim Kehler) Date: Mon, 30 Jan 2012 23:03:19 -0500 Subject: [App_rpt-users] getting started trouble In-Reply-To: <1327971070.31097.11.camel@localhost> References: <1327971070.31097.11.camel@localhost> Message-ID: <4F276807.9030009@bellsouth.net> I saw an "Autocongesting" message when I had another node's IP address configured wrong in RPT.CONF. I couldn't connect to him but he could connect to me no problem. 73, Jim KH2D On 1/30/2012 7:51 PM, Robert Poff wrote: > I've had a few email exchanges with Steve this afternoon. > I believe his trouble with the Web Transceiver is related to outside > nodes not being able to connect inbound and stay connected. > > >From my nodes, when I try to connect to his, I get a connect and an > almost immediate disconnect with this message from the CLI: > /[Jan 30 19:38:11] NOTICE[2583]: chan_iax2.c:4071 __auto_congest: > Auto-congesting call due to slow response/ > > However, he can connect to me and stayed connected for about twenty > minutes, until he told it to disconnect. > > If I ping the address I get from /tmp/rpt_extnodes-temp for his node I > get quick response. > So he's registering. And receiving the rpt-extnodes-temp file. > > He sent me the results from rpt stats 28325 and incoming connections > are allowed. > > He says the correct ports are forwarded in his router. > > Any suggestions? > > -- > /Robert A. Poff/ > /Loganville, PA/ > > WB3AWJ/- Allstar 27784/ > /Powered by Linux/ > > On Mon, 2012-01-30 at 13:41 -0500, Stephen Liggett wrote: >> I am transitioning our repeater from IRLP to ALLSTAR and I am having some trouble. >> >> I installed ACID, and it went without any trouble. >> >> With the URI connected, the green light blinks. >> >> I can ping yahoo.com, and I have ports 4569 and 222 forwarded. >> >> As it stands, the node (28325, W3YT) shows up on the web transceiver in green, but nobody seems to be able to connect to it. >> >> nscheck.sh gives an output of Node 1, Node 2 are up, node 3, node 4 are down (whatever that means). >> >> I do not have the repeater connected, but I assume that one should be able to connect to the node, regardless of whether there is anything connected to the URI. >> >> It seems to me that I am missing something here. Can someone get me past this? >> >> >> >> steve W3RX trustee for W3YT repeater IRLP 8676 Allstar 28325 >> >> >> >> PS Minor question, on my node info, I somehow never saw the chance to put in the freq, tone, and description of the repeater. Can that be done now? >> >> >> _______________________________________________ >> 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 kc9gqr at gmail.com Tue Jan 31 18:46:38 2012 From: kc9gqr at gmail.com (BRADLEY HANEY) Date: Tue, 31 Jan 2012 12:46:38 -0600 Subject: [App_rpt-users] Reverse Autopatch. Message-ID: <4F28370E.6080208@GMAIL.COM> Has anyone figured out on how to answer an incoming call from a reverse auto patch. I have tried *6701 *60701 and just plain *6 but no go.. From mhebert1975 at gmail.com Tue Jan 31 20:54:59 2012 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 31 Jan 2012 14:54:59 -0600 Subject: [App_rpt-users] Digital-Coded squelch Message-ID: Is the ACID distro capable of encoding and decoding Digital-coded squelch? -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb2ear at kb2ear.net Tue Jan 31 22:30:01 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Tue, 31 Jan 2012 17:30:01 -0500 Subject: [App_rpt-users] getting started trouble In-Reply-To: <1327971070.31097.11.camel@localhost> References: <1327971070.31097.11.camel@localhost> Message-ID: <024001cce067$df381670$9da84350$@kb2ear.net> This is a port forwarding issue. If you can connect out but not get connects inbound you need to check your ports. From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Robert Poff Sent: Monday, January 30, 2012 7:51 PM To: Stephen Liggett Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] getting started trouble I've had a few email exchanges with Steve this afternoon. I believe his trouble with the Web Transceiver is related to outside nodes not being able to connect inbound and stay connected. >From my nodes, when I try to connect to his, I get a connect and an almost immediate disconnect with this message from the CLI: [Jan 30 19:38:11] NOTICE[2583]: chan_iax2.c:4071 __auto_congest: Auto-congesting call due to slow response However, he can connect to me and stayed connected for about twenty minutes, until he told it to disconnect. If I ping the address I get from /tmp/rpt_extnodes-temp for his node I get quick response. So he's registering. And receiving the rpt-extnodes-temp file. He sent me the results from rpt stats 28325 and incoming connections are allowed. He says the correct ports are forwarded in his router. Any suggestions? -- Robert A. Poff Loganville, PA WB3AWJ - Allstar 27784 Powered by Linux On Mon, 2012-01-30 at 13:41 -0500, Stephen Liggett wrote: I am transitioning our repeater from IRLP to ALLSTAR and I am having some trouble. I installed ACID, and it went without any trouble. With the URI connected, the green light blinks. I can ping yahoo.com, and I have ports 4569 and 222 forwarded. As it stands, the node (28325, W3YT) shows up on the web transceiver in green, but nobody seems to be able to connect to it. nscheck.sh gives an output of Node 1, Node 2 are up, node 3, node 4 are down (whatever that means). I do not have the repeater connected, but I assume that one should be able to connect to the node, regardless of whether there is anything connected to the URI. It seems to me that I am missing something here. Can someone get me past this? steve W3RX trustee for W3YT repeater IRLP 8676 Allstar 28325 PS Minor question, on my node info, I somehow never saw the chance to put in the freq, tone, and description of the repeater. Can that be done now? _______________________________________________ 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 njgarbenis at gmail.com Tue Jan 31 22:30:09 2012 From: njgarbenis at gmail.com (Neal Garbenis) Date: Tue, 31 Jan 2012 14:30:09 -0800 Subject: [App_rpt-users] tailmessage Message-ID: <000001cce067$e6c6e6f0$b454b4d0$@com> I am trying to get a tailmessage to work. I have this in rpt.conf ;; The tailmessagetime,tailsquashedtime, and tailmessages need to be set ;; to support tail messages. They can be omitted otherwise. tailmessagetime=300000 ; Play a tail message every 5 mins tailsquashedtime=30000 ; If squashed by another user, ;; try again after 30 seconds tailmessages=NG8Y ;list of messages to be played for tail message I have the audio file saved in .pcm format and saved in var/lib/asterisk/rpt with proper permissions. I cant get it to play. I have also tried to specify tailmessage location still a no go Anybody have any ideas Thanks Neal NG8Y -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb2ear at kb2ear.net Tue Jan 31 22:33:01 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Tue, 31 Jan 2012 17:33:01 -0500 Subject: [App_rpt-users] tailmessage In-Reply-To: <000001cce067$e6c6e6f0$b454b4d0$@com> References: <000001cce067$e6c6e6f0$b454b4d0$@com> Message-ID: <02aa01cce068$4a53ac80$defb0580$@kb2ear.net> Try tailmessages=rpt/NG8Y From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Neal Garbenis Sent: Tuesday, January 31, 2012 5:30 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] tailmessage I am trying to get a tailmessage to work. I have this in rpt.conf ;; The tailmessagetime,tailsquashedtime, and tailmessages need to be set ;; to support tail messages. They can be omitted otherwise. tailmessagetime=300000 ; Play a tail message every 5 mins tailsquashedtime=30000 ; If squashed by another user, ;; try again after 30 seconds tailmessages=NG8Y ;list of messages to be played for tail message I have the audio file saved in .pcm format and saved in var/lib/asterisk/rpt with proper permissions. I cant get it to play. I have also tried to specify tailmessage location still a no go Anybody have any ideas Thanks Neal NG8Y -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb2ear at kb2ear.net Tue Jan 31 22:37:05 2012 From: kb2ear at kb2ear.net (Scott Weis) Date: Tue, 31 Jan 2012 17:37:05 -0500 Subject: [App_rpt-users] tailmessage In-Reply-To: <02aa01cce068$4a53ac80$defb0580$@kb2ear.net> References: <000001cce067$e6c6e6f0$b454b4d0$@com> <02aa01cce068$4a53ac80$defb0580$@kb2ear.net> Message-ID: <02ba01cce068$dc04bb60$940e3220$@kb2ear.net> Oh, On top of that move the NG8Y.gsm to /var/lib/asterisk/sounds/rpt/ From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Scott Weis Sent: Tuesday, January 31, 2012 5:33 PM To: 'Neal Garbenis'; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] tailmessage Try tailmessages=rpt/NG8Y From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Neal Garbenis Sent: Tuesday, January 31, 2012 5:30 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] tailmessage I am trying to get a tailmessage to work. I have this in rpt.conf ;; The tailmessagetime,tailsquashedtime, and tailmessages need to be set ;; to support tail messages. They can be omitted otherwise. tailmessagetime=300000 ; Play a tail message every 5 mins tailsquashedtime=30000 ; If squashed by another user, ;; try again after 30 seconds tailmessages=NG8Y ;list of messages to be played for tail message I have the audio file saved in .pcm format and saved in var/lib/asterisk/rpt with proper permissions. I cant get it to play. I have also tried to specify tailmessage location still a no go Anybody have any ideas Thanks Neal NG8Y -------------- next part -------------- An HTML attachment was scrubbed... URL: From n9gmr at me.com Tue Jan 31 23:26:29 2012 From: n9gmr at me.com (Matt Roberts) Date: Tue, 31 Jan 2012 18:26:29 -0500 Subject: [App_rpt-users] tailmessage In-Reply-To: <000001cce067$e6c6e6f0$b454b4d0$@com> References: <000001cce067$e6c6e6f0$b454b4d0$@com> Message-ID: On Jan 31, 2012, at 5:30 PM, Neal Garbenis wrote: > I am trying to get a tailmessage to work. I have this in rpt.conf > > ;; The tailmessagetime,tailsquashedtime, and tailmessages need to be set > ;; to support tail messages. They can be omitted otherwise. > tailmessagetime=300000 ; Play a tail message every 5 mins > tailsquashedtime=30000 ; If squashed by another user, > ;; try again after 30 seconds > tailmessages=NG8Y ;list of messages to be played for tail message > > I have the audio file saved in .pcm format and saved in var/lib/asterisk/rpt with proper permissions. I cant get it to play. I have also tried to specify tailmessage location still a no go > Can you play the files from the cli? rpt localplay Don't include the extension. Matt Roberts n9gmr at me.com Call Sign N9GMR IRLP 4515 EchoLink 640860 Allstar 28142 From njgarbenis at gmail.com Tue Jan 31 23:48:57 2012 From: njgarbenis at gmail.com (Neal Garbenis) Date: Tue, 31 Jan 2012 18:48:57 -0500 Subject: [App_rpt-users] tailmessage In-Reply-To: <02ba01cce068$dc04bb60$940e3220$@kb2ear.net> References: <000001cce067$e6c6e6f0$b454b4d0$@com> <02aa01cce068$4a53ac80$defb0580$@kb2ear.net> <02ba01cce068$dc04bb60$940e3220$@kb2ear.net> Message-ID: <3C3281EF-62B1-42D9-9D21-3CDF5B6FEA1F@gmail.com> I changed to rpt/ng8y. And ave the file in the sounds/rpt folder. No audio is played The file does play with local play just fine Neal Garbenis Jr. NG8Y On Jan 31, 2012, at 5:37 PM, "Scott Weis" wrote: > Oh, On top of that move the NG8Y.gsm to /var/lib/asterisk/sounds/rpt/ > > From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Scott Weis > Sent: Tuesday, January 31, 2012 5:33 PM > To: 'Neal Garbenis'; app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] tailmessage > > Try tailmessages=rpt/NG8Y > > From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Neal Garbenis > Sent: Tuesday, January 31, 2012 5:30 PM > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] tailmessage > > I am trying to get a tailmessage to work. I have this in rpt.conf > > ;; The tailmessagetime,tailsquashedtime, and tailmessages need to be set > ;; to support tail messages. They can be omitted otherwise. > tailmessagetime=300000 ; Play a tail message every 5 mins > tailsquashedtime=30000 ; If squashed by another user, > ;; try again after 30 seconds > tailmessages=NG8Y ;list of messages to be played for tail message > > I have the audio file saved in .pcm format and saved in var/lib/asterisk/rpt with proper permissions. I cant get it to play. I have also tried to specify tailmessage location still a no go > > Anybody have any ideas > > Thanks > Neal > NG8Y > -------------- next part -------------- An HTML attachment was scrubbed... URL: