From robert at n5qm.com Thu Aug 1 01:37:19 2013 From: robert at n5qm.com (Robert Garcia) Date: Wed, 31 Jul 2013 20:37:19 -0500 Subject: [App_rpt-users] Access Command Mode With A Macro In-Reply-To: <007201ce8e43$1513b850$3f3b28f0$@cs.com> References: <1375295883.61497.YahooMailNeo@web163604.mail.gq1.yahoo.com> <51F96210.1050109@bdboyle.com> <007201ce8e43$1513b850$3f3b28f0$@cs.com> Message-ID: Guys, This is an excellent thread with great ideas. By chance does the cmd function pass the entered DTMF sequence to the shell script? Robert N5QM On Wed, Jul 31, 2013 at 6:10 PM, Ken wrote: > Very nice ? I do something quite similar. > > > > I note that you can define a function to tell Allison to ?be quiet? for > example > > > > 9940=cop,34 ; local telemtry off > > > > I execute *9940 at the start of my multi step script and it helps keep > things a bit more quiet. > > > > At the end, I turn it back on with cop,33. > > > > Of course, this only does the local node. I suppose you could execute such > a function on the remote node to turn off announcements (after the first > one). > > > > I have a DSTAR machine at the same site and it sends commands to the > asterisk machine, in some cases, using OS scripts like this. > > > > 73 > > Ken > > > > From: Michael Hebert [mailto:mhebert1975 at gmail.com] > Sent: Wednesday, July 31, 2013 3:21 PM > To: Bryan D. Boyle > Cc: app_rpt mailing list > Subject: Re: [App_rpt-users] Access Command Mode With A Macro > > > > Brilliantly written Bryan! Kudos > > > > Mike - KD5DFB > > > > On Wed, Jul 31, 2013 at 2:14 PM, Bryan D. Boyle wrote: > > On 7/31/13 2:38 PM, Johnny Keeker wrote: > > The question is, can a macro be created to connect to a node and then put it > in the command mode? I've tried creating the usual macro example. > [macro] > 1=*325555*425555# > *51 only calls the 25555 node yet it does not take into account the *425555 > > > Colin Chapman, founder of Lotus, had a favorite saying: "Simplify and add > lightness". > > When you get into complex command strings and trying to make the machines > jump through hoops, brew coffee, and change the baby at the same time, it's > easy to forget that there is more than one way to accomplish what you are > trying to do or gore an ox or stuff a ballot box (if you're in Chicago). > > Ever thought of writing an OS shell script? There you now have somewhat > more programmatic control over HOW and IN WHAT sequence commands are > executed, can pause in between commands to allow them to run to completion, > do variable substitution so that the same shell, with different values > passed to it, can be used for multiple functions. > > In short, to me, it makes more sense. > > Here, is an example of a useful Macro tied to a schedule: > > [macro27XXX] > 09=*81# > > [schedule27XXX] > 09 = 00 * * * * > > Which plays the time at the top of every hour. Clean. Neat. Simple. > Brilliant. No pillocks here.... > > But, what if you want to unlink two hub nodes, link another node through a > secondary hub (because your brother ops object to the other node because > it's a 2-meter link radio?) and tell everyone that it's done? Wow. Tell me > the command string for that. > > I do not see that as a macro job. > > How about a script to do it: > > Call this script linkconnect.sh. Put it in a scripts directory somewhere, > like /etc/asterisk/scripts, strangely enough... > > Call it from rpt.conf: > 9XX=cmd,/etc/asterisk/scripts/linkconnect.sh > > -- > # Call a shell, no error checking, WYSIWYG, down and dirty > #!/bin/bash > > #Send Asterisk a function message to unlink the two hubs > /usr/sbin/asterisk -rx "rpt fun 27123 *127234#" > > #wait for all the gyrations and Allison to shut up > sleep 5 > > #Now, send a message to the second hub in the network to link > #to the link radio node 27999 > /usr/sbin/asterisk -rx "rpt fun 27123 *428999*327999#" > > #Wait for it.... > sleep 2 > > #Now, play an announcement that the new configuration is up and going. > /etc/asterisk/scripts/w3skconnect > -- > > > (obviously not the real node numbers, apologies to the holders of those > numbers if they're in live use.) > > Now, you can define a 'macro' as, say, > 10=*9xx# ;call the function numbered 9XX > > This gives you added flexibility and the ability to either call, using the > internal schedule, on a fixed value, the shell you wrote, or using the OS > cron facility, from a cronjob, or, even just run from the shell. > > Don't fixate on one solution as being better...sometimes imagination is the > key to creativity and indecision is the key to flexibility. > > > -- > 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 > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > From bdboyle at bdboyle.com Thu Aug 1 01:41:06 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Wed, 31 Jul 2013 21:41:06 -0400 Subject: [App_rpt-users] Access Command Mode With A Macro In-Reply-To: References: <1375295883.61497.YahooMailNeo@web163604.mail.gq1.yahoo.com> <51F96210.1050109@bdboyle.com> <007201ce8e43$1513b850$3f3b28f0$@cs.com> Message-ID: <2C2746CC-97B7-4C91-A239-42C5FB43CEE3@bdboyle.com> simply, no -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Jul 31, 2013, at 21:37, Robert Garcia wrote: > Guys, > > This is an excellent thread with great ideas. By chance does the cmd > function pass the entered DTMF sequence to the shell script? > > Robert > N5QM > > On Wed, Jul 31, 2013 at 6:10 PM, Ken wrote: >> Very nice ? I do something quite similar. >> >> >> >> I note that you can define a function to tell Allison to ?be quiet? for >> example >> >> >> >> 9940=cop,34 ; local telemtry off >> >> >> >> I execute *9940 at the start of my multi step script and it helps keep >> things a bit more quiet. >> >> >> >> At the end, I turn it back on with cop,33. >> >> >> >> Of course, this only does the local node. I suppose you could execute such >> a function on the remote node to turn off announcements (after the first >> one). >> >> >> >> I have a DSTAR machine at the same site and it sends commands to the >> asterisk machine, in some cases, using OS scripts like this. >> >> >> >> 73 >> >> Ken >> >> >> >> From: Michael Hebert [mailto:mhebert1975 at gmail.com] >> Sent: Wednesday, July 31, 2013 3:21 PM >> To: Bryan D. Boyle >> Cc: app_rpt mailing list >> Subject: Re: [App_rpt-users] Access Command Mode With A Macro >> >> >> >> Brilliantly written Bryan! Kudos >> >> >> >> Mike - KD5DFB >> >> >> >> On Wed, Jul 31, 2013 at 2:14 PM, Bryan D. Boyle wrote: >> >> On 7/31/13 2:38 PM, Johnny Keeker wrote: >> >> The question is, can a macro be created to connect to a node and then put it >> in the command mode? I've tried creating the usual macro example. >> [macro] >> 1=*325555*425555# >> *51 only calls the 25555 node yet it does not take into account the *425555 >> >> >> Colin Chapman, founder of Lotus, had a favorite saying: "Simplify and add >> lightness". >> >> When you get into complex command strings and trying to make the machines >> jump through hoops, brew coffee, and change the baby at the same time, it's >> easy to forget that there is more than one way to accomplish what you are >> trying to do or gore an ox or stuff a ballot box (if you're in Chicago). >> >> Ever thought of writing an OS shell script? There you now have somewhat >> more programmatic control over HOW and IN WHAT sequence commands are >> executed, can pause in between commands to allow them to run to completion, >> do variable substitution so that the same shell, with different values >> passed to it, can be used for multiple functions. >> >> In short, to me, it makes more sense. >> >> Here, is an example of a useful Macro tied to a schedule: >> >> [macro27XXX] >> 09=*81# >> >> [schedule27XXX] >> 09 = 00 * * * * >> >> Which plays the time at the top of every hour. Clean. Neat. Simple. >> Brilliant. No pillocks here.... >> >> But, what if you want to unlink two hub nodes, link another node through a >> secondary hub (because your brother ops object to the other node because >> it's a 2-meter link radio?) and tell everyone that it's done? Wow. Tell me >> the command string for that. >> >> I do not see that as a macro job. >> >> How about a script to do it: >> >> Call this script linkconnect.sh. Put it in a scripts directory somewhere, >> like /etc/asterisk/scripts, strangely enough... >> >> Call it from rpt.conf: >> 9XX=cmd,/etc/asterisk/scripts/linkconnect.sh >> >> -- >> # Call a shell, no error checking, WYSIWYG, down and dirty >> #!/bin/bash >> >> #Send Asterisk a function message to unlink the two hubs >> /usr/sbin/asterisk -rx "rpt fun 27123 *127234#" >> >> #wait for all the gyrations and Allison to shut up >> sleep 5 >> >> #Now, send a message to the second hub in the network to link >> #to the link radio node 27999 >> /usr/sbin/asterisk -rx "rpt fun 27123 *428999*327999#" >> >> #Wait for it.... >> sleep 2 >> >> #Now, play an announcement that the new configuration is up and going. >> /etc/asterisk/scripts/w3skconnect >> -- >> >> >> (obviously not the real node numbers, apologies to the holders of those >> numbers if they're in live use.) >> >> Now, you can define a 'macro' as, say, >> 10=*9xx# ;call the function numbered 9XX >> >> This gives you added flexibility and the ability to either call, using the >> internal schedule, on a fixed value, the shell you wrote, or using the OS >> cron facility, from a cronjob, or, even just run from the shell. >> >> Don't fixate on one solution as being better...sometimes imagination is the >> key to creativity and indecision is the key to flexibility. >> >> >> -- >> 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 >> >> >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> From bdboyle at bdboyle.com Thu Aug 1 02:09:34 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Wed, 31 Jul 2013 22:09:34 -0400 Subject: [App_rpt-users] Access Command Mode With A Macro In-Reply-To: <2C2746CC-97B7-4C91-A239-42C5FB43CEE3@bdboyle.com> References: <1375295883.61497.YahooMailNeo@web163604.mail.gq1.yahoo.com> <51F96210.1050109@bdboyle.com> <007201ce8e43$1513b850$3f3b28f0$@cs.com> <2C2746CC-97B7-4C91-A239-42C5FB43CEE3@bdboyle.com> Message-ID: <51F9C35E.2010403@bdboyle.com> On 7/31/2013 9:41 PM, Bryan D. Boyle wrote: > simply, no That being said...there's lots of tricks you can do. For instance, if you have a web server open on the same lan segment or subnet accessible from the asterisk box, you can make sure the manager function is open...and, using a script (I have no idea where it came from, so, if anyone claims authorship...that's fine, I got it from Paul KC2VRJ) called newcontrol.php, and a web page that posts values to it, you can pretty much control your repeater from a web page (put some authentication around it, ok?) And, oh, you'll have to pick up the StarAstAPI.php script that's distributed under the GNU Lesser license. Note, this also happens over a clear channel by default, so, you probably don't want to do this across the net...better, perhaps to stand up a simple web server on the asterisk box itself and use the looparound address to talk to it... -- Login( 'admin', 'changeme', 'asteriskboxIPAddress', 5038 )) { $rp = $ami->GetResponse('1'); //echo $rp->ToString(); } else { exit(1); } # Send the following packet: # ACTION: Command # command: rpt fun $node# $command # $data = new AstPacketData; $data->AddKVPair( 'Action' , 'Command' ); $data->AddKVPair( 'command' , "rpt fun $node $cmd" ); $packet = new AstPacket; $packet->SetAstPacketType( 'Action' ); $packet->SetAstPacketData( $data ); $ami->SendPacket( $packet ); # # Log out -- not strictly necessary, but cleaner: # $ami->Logoff(); # # Unfortunately, StarAstAPI isn't totally discreet. # It does this: # echo "Logoff Called from somewhere ..."; # socket_close($this->mSocket); # echo "\n"; ?> -- Sample page that calls this script with pull-down values (not totally HTML compliant, I just did the bare minimum with the header values...): Test Control Form

Node Control

Node Number:
Command to run:
---- Note, these are just a proof of concept/hacked together page...the option values for the select name="cmd" in the web page are the DTMF commands that call the function stanza for the node in question. SO, while all my nodes may have a common *1XXXX disconnect sequence (bing connected to the same hub in question, they can either 1) send directly a DTMF sequence to a node, 2) call a cmd,script to run a shell script, or 3) call a cmd,shell/executable program to do something. Improvements are left as an exercise to the reader. Note, these ideas are so primitive, they really need to be tweaked. But some more grist for the mill. BB From tim.sawyer at me.com Thu Aug 1 03:43:03 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 31 Jul 2013 20:43:03 -0700 Subject: [App_rpt-users] Access Command Mode With A Macro In-Reply-To: <51F9C35E.2010403@bdboyle.com> References: <1375295883.61497.YahooMailNeo@web163604.mail.gq1.yahoo.com> <51F96210.1050109@bdboyle.com> <007201ce8e43$1513b850$3f3b28f0$@cs.com> <2C2746CC-97B7-4C91-A239-42C5FB43CEE3@bdboyle.com> <51F9C35E.2010403@bdboyle.com> Message-ID: <734F4919-FE69-40EB-8235-736B3A8DFFA5@me.com> For this sort of functionality (and more) check out https://github.com/tsawyer/allmon -- Tim :wq On Jul 31, 2013, at 7:09 PM, Bryan D. Boyle wrote: > On 7/31/2013 9:41 PM, Bryan D. Boyle wrote: >> simply, no > > That being said...there's lots of tricks you can do. For instance, if > you have a web server open on the same lan segment or subnet accessible > from the asterisk box, you can make sure the manager function is > open...and, using a script (I have no idea where it came from, so, if > anyone claims authorship...that's fine, I got it from Paul KC2VRJ) > called newcontrol.php, and a web page that posts values to it, you can > pretty much control your repeater from a web page (put some > authentication around it, ok?) > > And, oh, you'll have to pick up the StarAstAPI.php script that's > distributed under the GNU Lesser license. > Note, this also happens over a clear channel by default, so, you > probably don't want to do this across the net...better, perhaps to stand > up a simple web server on the asterisk box itself and use the looparound > address to talk to it... > > -- > > # Title: newcommand.php > # Author: Unknown, but provided to me by Paul Nannery KC2VRJ > # Full credit acknowledged if original author ID'd > # Mods by: Bryan Boyle WB0YLE > # Date: 8 December 2012 > # > # This bit of php script takes two values: > # the first being the node to talk to, > # and the second, the DTMF command that's being sent > # and echoing it out. > # > > if ($_POST) { > $node = $_POST['node']; > $cmd = $_POST['cmd']; > } > else { > $node = $argv[1]; > $cmd = $argv[2]; > echo "Command $cmd is being sent to $node\n\n"; > } > # Include StarAstAPI: > > require_once './StarAstAPI.php'; > > # Connect and log in: > # > > $ami = new AstClientConnection(); > > # > # Login is from the /etc/asterisk/manager.conf credentials as > # configured in your base directory on your system. > # user password ast system port > # vv vv vv vv > > if ($ami->Login( 'admin', 'changeme', 'asteriskboxIPAddress', 5038 )) { > $rp = $ami->GetResponse('1'); > //echo $rp->ToString(); > } else { > exit(1); > } > # Send the following packet: > # ACTION: Command > # command: rpt fun $node# $command > # > > $data = new AstPacketData; > $data->AddKVPair( 'Action' , 'Command' ); > $data->AddKVPair( 'command' , "rpt fun $node $cmd" ); > $packet = new AstPacket; > $packet->SetAstPacketType( 'Action' ); > $packet->SetAstPacketData( $data ); > $ami->SendPacket( $packet ); > > # > # Log out -- not strictly necessary, but cleaner: > # > > $ami->Logoff(); > > # > # Unfortunately, StarAstAPI isn't totally discreet. > # It does this: > # echo "Logoff Called from somewhere ..."; > # socket_close($this->mSocket); > # > > echo "\n"; > ?> > -- > > Sample page that calls this script with pull-down values (not totally > HTML compliant, I just did the bare minimum with the header values...): > > > > Test Control Form > > > >

Node Control

>
> > > > > > > > > > > > >
Node Number: > >
Command to run: > >
> >
>
>
> > > > ---- > > Note, these are just a proof of concept/hacked together page...the > option values for the select name="cmd" in the web page are the DTMF > commands that call the function stanza for the node in question. SO, > while all my nodes may have a common *1XXXX disconnect sequence (bing > connected to the same hub in question, they can either 1) send directly > a DTMF sequence to a node, 2) call a cmd,script to run a shell script, > or 3) call a cmd,shell/executable program to do something. > > Improvements are left as an exercise to the reader. Note, these ideas > are so primitive, they really need to be tweaked. But some more grist > for the mill. > > BB > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From ke2n at cs.com Thu Aug 1 09:10:21 2013 From: ke2n at cs.com (Ken) Date: Thu, 1 Aug 2013 05:10:21 -0400 Subject: [App_rpt-users] Access Command Mode With A Macro In-Reply-To: References: <1375295883.61497.YahooMailNeo@web163604.mail.gq1.yahoo.com> <51F96210.1050109@bdboyle.com> <007201ce8e43$1513b850$3f3b28f0$@cs.com> Message-ID: <008101ce8e96$f31129f0$d9337dd0$@cs.com> No but that is an interesting idea The DTMF decodes are in the log file. If your script is smart it might be able to find and parse them /var/log/asterisk/messages ... Sep 24 12:58:34] NOTICE[2672] chan_usbradio.c: Got DTMF char * duration 210 ms [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration 82 ms [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration 191 ms [Sep 24 12:58:36] NOTICE[2672] chan_usbradio.c: Got DTMF char 5 duration 150 ms [Sep 24 12:58:37] NOTICE[2672] chan_usbradio.c: Got DTMF char 2 duration 170 ms ... GL Ken > -----Original Message----- > From: Robert Garcia [mailto:robert at n5qm.com] > Sent: Wednesday, July 31, 2013 9:37 PM > To: Ken > Cc: app_rpt mailing list > Subject: Re: [App_rpt-users] Access Command Mode With A Macro > > Guys, > > This is an excellent thread with great ideas. By chance does the cmd function > pass the entered DTMF sequence to the shell script? > > Robert > N5QM > > On Wed, Jul 31, 2013 at 6:10 PM, Ken wrote: > > Very nice - I do something quite similar. > > > > > > > > I note that you can define a function to tell Allison to "be quiet" > > for example > > > > > > > > 9940=cop,34 ; local telemtry off > > > > > > > > I execute *9940 at the start of my multi step script and it helps keep > > things a bit more quiet. > > > > > > > > At the end, I turn it back on with cop,33. > > > > > > > > Of course, this only does the local node. I suppose you could execute > > such a function on the remote node to turn off announcements (after > > the first one). > > > > > > > > I have a DSTAR machine at the same site and it sends commands to the > > asterisk machine, in some cases, using OS scripts like this. > > > > > > > > 73 > > > > Ken > > > > > > > > From: Michael Hebert [mailto:mhebert1975 at gmail.com] > > Sent: Wednesday, July 31, 2013 3:21 PM > > To: Bryan D. Boyle > > Cc: app_rpt mailing list > > Subject: Re: [App_rpt-users] Access Command Mode With A Macro > > > > > > > > Brilliantly written Bryan! Kudos > > > > > > > > Mike - KD5DFB > > > > > > > > On Wed, Jul 31, 2013 at 2:14 PM, Bryan D. Boyle > wrote: > > > > On 7/31/13 2:38 PM, Johnny Keeker wrote: > > > > The question is, can a macro be created to connect to a node and then > > put it in the command mode? I've tried creating the usual macro example. > > [macro] > > 1=*325555*425555# > > *51 only calls the 25555 node yet it does not take into account the > > *425555 > > > > > > Colin Chapman, founder of Lotus, had a favorite saying: "Simplify and > > add lightness". > > > > When you get into complex command strings and trying to make the > > machines jump through hoops, brew coffee, and change the baby at the > > same time, it's easy to forget that there is more than one way to > > accomplish what you are trying to do or gore an ox or stuff a ballot box (if > you're in Chicago). > > > > Ever thought of writing an OS shell script? There you now have > > somewhat more programmatic control over HOW and IN WHAT sequence > > commands are executed, can pause in between commands to allow them > to > > run to completion, do variable substitution so that the same shell, > > with different values passed to it, can be used for multiple functions. > > > > In short, to me, it makes more sense. > > > > Here, is an example of a useful Macro tied to a schedule: > > > > [macro27XXX] > > 09=*81# > > > > [schedule27XXX] > > 09 = 00 * * * * > > > > Which plays the time at the top of every hour. Clean. Neat. Simple. > > Brilliant. No pillocks here.... > > > > But, what if you want to unlink two hub nodes, link another node > > through a secondary hub (because your brother ops object to the other > > node because it's a 2-meter link radio?) and tell everyone that it's > > done? Wow. Tell me the command string for that. > > > > I do not see that as a macro job. > > > > How about a script to do it: > > > > Call this script linkconnect.sh. Put it in a scripts directory > > somewhere, like /etc/asterisk/scripts, strangely enough... > > > > Call it from rpt.conf: > > 9XX=cmd,/etc/asterisk/scripts/linkconnect.sh > > > > -- > > # Call a shell, no error checking, WYSIWYG, down and dirty #!/bin/bash > > > > #Send Asterisk a function message to unlink the two hubs > > /usr/sbin/asterisk -rx "rpt fun 27123 *127234#" > > > > #wait for all the gyrations and Allison to shut up sleep 5 > > > > #Now, send a message to the second hub in the network to link #to the > > link radio node 27999 /usr/sbin/asterisk -rx "rpt fun 27123 > > *428999*327999#" > > > > #Wait for it.... > > sleep 2 > > > > #Now, play an announcement that the new configuration is up and going. > > /etc/asterisk/scripts/w3skconnect > > -- > > > > > > (obviously not the real node numbers, apologies to the holders of > > those numbers if they're in live use.) > > > > Now, you can define a 'macro' as, say, 10=*9xx# ;call the function > > numbered 9XX > > > > This gives you added flexibility and the ability to either call, using > > the internal schedule, on a fixed value, the shell you wrote, or using > > the OS cron facility, from a cronjob, or, even just run from the shell. > > > > Don't fixate on one solution as being better...sometimes imagination > > is the key to creativity and indecision is the key to flexibility. > > > > > > -- > > 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 > > > > > > > > > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > From robert at n5qm.com Thu Aug 1 13:23:07 2013 From: robert at n5qm.com (Robert Garcia) Date: Thu, 1 Aug 2013 08:23:07 -0500 Subject: [App_rpt-users] Access Command Mode With A Macro In-Reply-To: <008101ce8e96$f31129f0$d9337dd0$@cs.com> References: <1375295883.61497.YahooMailNeo@web163604.mail.gq1.yahoo.com> <51F96210.1050109@bdboyle.com> <007201ce8e43$1513b850$3f3b28f0$@cs.com> <008101ce8e96$f31129f0$d9337dd0$@cs.com> Message-ID: Ken, Your idea lead me to this.. The shell script could parse that out rather easily and act upon it. asterisk -rx "rpt stats 29820" | grep executed Last DTMF command executed.......................: 329829 Robert N5QM On Thu, Aug 1, 2013 at 4:10 AM, Ken wrote: > No but that is an interesting idea > > The DTMF decodes are in the log file. If your script is smart it might be > able to find and parse them > > /var/log/asterisk/messages > ... > Sep 24 12:58:34] NOTICE[2672] chan_usbradio.c: Got DTMF char * duration 210 > ms > [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration 82 > ms > [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration 191 > ms > [Sep 24 12:58:36] NOTICE[2672] chan_usbradio.c: Got DTMF char 5 duration 150 > ms > [Sep 24 12:58:37] NOTICE[2672] chan_usbradio.c: Got DTMF char 2 duration 170 > ms > ... > > GL > Ken > > > >> -----Original Message----- >> From: Robert Garcia [mailto:robert at n5qm.com] >> Sent: Wednesday, July 31, 2013 9:37 PM >> To: Ken >> Cc: app_rpt mailing list >> Subject: Re: [App_rpt-users] Access Command Mode With A Macro >> >> Guys, >> >> This is an excellent thread with great ideas. By chance does the cmd > function >> pass the entered DTMF sequence to the shell script? >> >> Robert >> N5QM >> >> On Wed, Jul 31, 2013 at 6:10 PM, Ken wrote: >> > Very nice - I do something quite similar. >> > >> > >> > >> > I note that you can define a function to tell Allison to "be quiet" >> > for example >> > >> > >> > >> > 9940=cop,34 ; local telemtry off >> > >> > >> > >> > I execute *9940 at the start of my multi step script and it helps keep >> > things a bit more quiet. >> > >> > >> > >> > At the end, I turn it back on with cop,33. >> > >> > >> > >> > Of course, this only does the local node. I suppose you could execute >> > such a function on the remote node to turn off announcements (after >> > the first one). >> > >> > >> > >> > I have a DSTAR machine at the same site and it sends commands to the >> > asterisk machine, in some cases, using OS scripts like this. >> > >> > >> > >> > 73 >> > >> > Ken >> > >> > >> > >> > From: Michael Hebert [mailto:mhebert1975 at gmail.com] >> > Sent: Wednesday, July 31, 2013 3:21 PM >> > To: Bryan D. Boyle >> > Cc: app_rpt mailing list >> > Subject: Re: [App_rpt-users] Access Command Mode With A Macro >> > >> > >> > >> > Brilliantly written Bryan! Kudos >> > >> > >> > >> > Mike - KD5DFB >> > >> > >> > >> > On Wed, Jul 31, 2013 at 2:14 PM, Bryan D. Boyle >> wrote: >> > >> > On 7/31/13 2:38 PM, Johnny Keeker wrote: >> > >> > The question is, can a macro be created to connect to a node and then >> > put it in the command mode? I've tried creating the usual macro > example. >> > [macro] >> > 1=*325555*425555# >> > *51 only calls the 25555 node yet it does not take into account the >> > *425555 >> > >> > >> > Colin Chapman, founder of Lotus, had a favorite saying: "Simplify and >> > add lightness". >> > >> > When you get into complex command strings and trying to make the >> > machines jump through hoops, brew coffee, and change the baby at the >> > same time, it's easy to forget that there is more than one way to >> > accomplish what you are trying to do or gore an ox or stuff a ballot box > (if >> you're in Chicago). >> > >> > Ever thought of writing an OS shell script? There you now have >> > somewhat more programmatic control over HOW and IN WHAT sequence >> > commands are executed, can pause in between commands to allow them >> to >> > run to completion, do variable substitution so that the same shell, >> > with different values passed to it, can be used for multiple functions. >> > >> > In short, to me, it makes more sense. >> > >> > Here, is an example of a useful Macro tied to a schedule: >> > >> > [macro27XXX] >> > 09=*81# >> > >> > [schedule27XXX] >> > 09 = 00 * * * * >> > >> > Which plays the time at the top of every hour. Clean. Neat. Simple. >> > Brilliant. No pillocks here.... >> > >> > But, what if you want to unlink two hub nodes, link another node >> > through a secondary hub (because your brother ops object to the other >> > node because it's a 2-meter link radio?) and tell everyone that it's >> > done? Wow. Tell me the command string for that. >> > >> > I do not see that as a macro job. >> > >> > How about a script to do it: >> > >> > Call this script linkconnect.sh. Put it in a scripts directory >> > somewhere, like /etc/asterisk/scripts, strangely enough... >> > >> > Call it from rpt.conf: >> > 9XX=cmd,/etc/asterisk/scripts/linkconnect.sh >> > >> > -- >> > # Call a shell, no error checking, WYSIWYG, down and dirty #!/bin/bash >> > >> > #Send Asterisk a function message to unlink the two hubs >> > /usr/sbin/asterisk -rx "rpt fun 27123 *127234#" >> > >> > #wait for all the gyrations and Allison to shut up sleep 5 >> > >> > #Now, send a message to the second hub in the network to link #to the >> > link radio node 27999 /usr/sbin/asterisk -rx "rpt fun 27123 >> > *428999*327999#" >> > >> > #Wait for it.... >> > sleep 2 >> > >> > #Now, play an announcement that the new configuration is up and going. >> > /etc/asterisk/scripts/w3skconnect >> > -- >> > >> > >> > (obviously not the real node numbers, apologies to the holders of >> > those numbers if they're in live use.) >> > >> > Now, you can define a 'macro' as, say, 10=*9xx# ;call the function >> > numbered 9XX >> > >> > This gives you added flexibility and the ability to either call, using >> > the internal schedule, on a fixed value, the shell you wrote, or using >> > the OS cron facility, from a cronjob, or, even just run from the shell. >> > >> > Don't fixate on one solution as being better...sometimes imagination >> > is the key to creativity and indecision is the key to flexibility. >> > >> > >> > -- >> > 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 >> > >> > >> > >> > >> > _______________________________________________ >> > App_rpt-users mailing list >> > App_rpt-users at ohnosec.org >> > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> > > > From robert at n5qm.com Thu Aug 1 13:29:16 2013 From: robert at n5qm.com (Robert Garcia) Date: Thu, 1 Aug 2013 08:29:16 -0500 Subject: [App_rpt-users] Access Command Mode With A Macro In-Reply-To: References: <1375295883.61497.YahooMailNeo@web163604.mail.gq1.yahoo.com> <51F96210.1050109@bdboyle.com> <007201ce8e43$1513b850$3f3b28f0$@cs.com> <008101ce8e96$f31129f0$d9337dd0$@cs.com> Message-ID: Or even better... asterisk -rx "rpt stats 29820" | grep executed Last DTMF command executed.......................: 329829 asterisk -rx "rpt stats 29820" | grep executed | cut -c52- 329829 Robert N5QM On Thu, Aug 1, 2013 at 8:23 AM, Robert Garcia wrote: > Ken, > > Your idea lead me to this.. The shell script could parse that out > rather easily and act upon it. > > asterisk -rx "rpt stats 29820" | grep executed > Last DTMF command executed.......................: 329829 > > Robert > N5QM > > On Thu, Aug 1, 2013 at 4:10 AM, Ken wrote: >> No but that is an interesting idea >> >> The DTMF decodes are in the log file. If your script is smart it might be >> able to find and parse them >> >> /var/log/asterisk/messages >> ... >> Sep 24 12:58:34] NOTICE[2672] chan_usbradio.c: Got DTMF char * duration 210 >> ms >> [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration 82 >> ms >> [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration 191 >> ms >> [Sep 24 12:58:36] NOTICE[2672] chan_usbradio.c: Got DTMF char 5 duration 150 >> ms >> [Sep 24 12:58:37] NOTICE[2672] chan_usbradio.c: Got DTMF char 2 duration 170 >> ms >> ... >> >> GL >> Ken >> >> >> >>> -----Original Message----- >>> From: Robert Garcia [mailto:robert at n5qm.com] >>> Sent: Wednesday, July 31, 2013 9:37 PM >>> To: Ken >>> Cc: app_rpt mailing list >>> Subject: Re: [App_rpt-users] Access Command Mode With A Macro >>> >>> Guys, >>> >>> This is an excellent thread with great ideas. By chance does the cmd >> function >>> pass the entered DTMF sequence to the shell script? >>> >>> Robert >>> N5QM >>> >>> On Wed, Jul 31, 2013 at 6:10 PM, Ken wrote: >>> > Very nice - I do something quite similar. >>> > >>> > >>> > >>> > I note that you can define a function to tell Allison to "be quiet" >>> > for example >>> > >>> > >>> > >>> > 9940=cop,34 ; local telemtry off >>> > >>> > >>> > >>> > I execute *9940 at the start of my multi step script and it helps keep >>> > things a bit more quiet. >>> > >>> > >>> > >>> > At the end, I turn it back on with cop,33. >>> > >>> > >>> > >>> > Of course, this only does the local node. I suppose you could execute >>> > such a function on the remote node to turn off announcements (after >>> > the first one). >>> > >>> > >>> > >>> > I have a DSTAR machine at the same site and it sends commands to the >>> > asterisk machine, in some cases, using OS scripts like this. >>> > >>> > >>> > >>> > 73 >>> > >>> > Ken >>> > >>> > >>> > >>> > From: Michael Hebert [mailto:mhebert1975 at gmail.com] >>> > Sent: Wednesday, July 31, 2013 3:21 PM >>> > To: Bryan D. Boyle >>> > Cc: app_rpt mailing list >>> > Subject: Re: [App_rpt-users] Access Command Mode With A Macro >>> > >>> > >>> > >>> > Brilliantly written Bryan! Kudos >>> > >>> > >>> > >>> > Mike - KD5DFB >>> > >>> > >>> > >>> > On Wed, Jul 31, 2013 at 2:14 PM, Bryan D. Boyle >>> wrote: >>> > >>> > On 7/31/13 2:38 PM, Johnny Keeker wrote: >>> > >>> > The question is, can a macro be created to connect to a node and then >>> > put it in the command mode? I've tried creating the usual macro >> example. >>> > [macro] >>> > 1=*325555*425555# >>> > *51 only calls the 25555 node yet it does not take into account the >>> > *425555 >>> > >>> > >>> > Colin Chapman, founder of Lotus, had a favorite saying: "Simplify and >>> > add lightness". >>> > >>> > When you get into complex command strings and trying to make the >>> > machines jump through hoops, brew coffee, and change the baby at the >>> > same time, it's easy to forget that there is more than one way to >>> > accomplish what you are trying to do or gore an ox or stuff a ballot box >> (if >>> you're in Chicago). >>> > >>> > Ever thought of writing an OS shell script? There you now have >>> > somewhat more programmatic control over HOW and IN WHAT sequence >>> > commands are executed, can pause in between commands to allow them >>> to >>> > run to completion, do variable substitution so that the same shell, >>> > with different values passed to it, can be used for multiple functions. >>> > >>> > In short, to me, it makes more sense. >>> > >>> > Here, is an example of a useful Macro tied to a schedule: >>> > >>> > [macro27XXX] >>> > 09=*81# >>> > >>> > [schedule27XXX] >>> > 09 = 00 * * * * >>> > >>> > Which plays the time at the top of every hour. Clean. Neat. Simple. >>> > Brilliant. No pillocks here.... >>> > >>> > But, what if you want to unlink two hub nodes, link another node >>> > through a secondary hub (because your brother ops object to the other >>> > node because it's a 2-meter link radio?) and tell everyone that it's >>> > done? Wow. Tell me the command string for that. >>> > >>> > I do not see that as a macro job. >>> > >>> > How about a script to do it: >>> > >>> > Call this script linkconnect.sh. Put it in a scripts directory >>> > somewhere, like /etc/asterisk/scripts, strangely enough... >>> > >>> > Call it from rpt.conf: >>> > 9XX=cmd,/etc/asterisk/scripts/linkconnect.sh >>> > >>> > -- >>> > # Call a shell, no error checking, WYSIWYG, down and dirty #!/bin/bash >>> > >>> > #Send Asterisk a function message to unlink the two hubs >>> > /usr/sbin/asterisk -rx "rpt fun 27123 *127234#" >>> > >>> > #wait for all the gyrations and Allison to shut up sleep 5 >>> > >>> > #Now, send a message to the second hub in the network to link #to the >>> > link radio node 27999 /usr/sbin/asterisk -rx "rpt fun 27123 >>> > *428999*327999#" >>> > >>> > #Wait for it.... >>> > sleep 2 >>> > >>> > #Now, play an announcement that the new configuration is up and going. >>> > /etc/asterisk/scripts/w3skconnect >>> > -- >>> > >>> > >>> > (obviously not the real node numbers, apologies to the holders of >>> > those numbers if they're in live use.) >>> > >>> > Now, you can define a 'macro' as, say, 10=*9xx# ;call the function >>> > numbered 9XX >>> > >>> > This gives you added flexibility and the ability to either call, using >>> > the internal schedule, on a fixed value, the shell you wrote, or using >>> > the OS cron facility, from a cronjob, or, even just run from the shell. >>> > >>> > Don't fixate on one solution as being better...sometimes imagination >>> > is the key to creativity and indecision is the key to flexibility. >>> > >>> > >>> > -- >>> > 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 >>> > >>> > >>> > >>> > >>> > _______________________________________________ >>> > App_rpt-users mailing list >>> > App_rpt-users at ohnosec.org >>> > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>> > >> >> From ke2n at cs.com Thu Aug 1 15:09:11 2013 From: ke2n at cs.com (Ken) Date: Thu, 1 Aug 2013 11:09:11 -0400 (EDT) Subject: [App_rpt-users] Access Command Mode With A Macro In-Reply-To: References: <1375295883.61497.YahooMailNeo@web163604.mail.gq1.yahoo.com> <51F96210.1050109@bdboyle.com> <007201ce8e43$1513b850$3f3b28f0$@cs.com> <008101ce8e96$f31129f0$d9337dd0$@cs.com> Message-ID: <8D05CE0369F1319-2068-16049@webmail-d127.sysops.aol.com> of course ... that will return the DTMF code that executed the OS script. I think what is wanted are the digits that come afterwards (so that you can punch in any number not just a fixed menu of numbers). Oh well, I am sure a smart person can figure this out ;-P Ken -----Original Message----- From: Robert Garcia To: Ken Cc: app_rpt mailing list Sent: Thu, Aug 1, 2013 9:29 am Subject: Re: [App_rpt-users] Access Command Mode With A Macro Or even better... asterisk -rx "rpt stats 29820" | grep executed ast DTMF command executed.......................: 329829 asterisk -rx "rpt stats 29820" | grep executed | cut -c52- 29829 Robert 5QM On Thu, Aug 1, 2013 at 8:23 AM, Robert Garcia wrote: Ken, Your idea lead me to this.. The shell script could parse that out rather easily and act upon it. asterisk -rx "rpt stats 29820" | grep executed Last DTMF command executed.......................: 329829 Robert N5QM On Thu, Aug 1, 2013 at 4:10 AM, Ken wrote: > No but that is an interesting idea > > The DTMF decodes are in the log file. If your script is smart it might be > able to find and parse them > > /var/log/asterisk/messages > ... > Sep 24 12:58:34] NOTICE[2672] chan_usbradio.c: Got DTMF char * duration 210 > ms > [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration 82 > ms > [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration 191 > ms > [Sep 24 12:58:36] NOTICE[2672] chan_usbradio.c: Got DTMF char 5 duration 150 > ms > [Sep 24 12:58:37] NOTICE[2672] chan_usbradio.c: Got DTMF char 2 duration 170 > ms > ... > > GL > Ken > > > >> -----Original Message----- >> From: Robert Garcia [mailto:robert at n5qm.com] >> Sent: Wednesday, July 31, 2013 9:37 PM >> To: Ken >> Cc: app_rpt mailing list >> Subject: Re: [App_rpt-users] Access Command Mode With A Macro >> >> Guys, >> >> This is an excellent thread with great ideas. By chance does the cmd > function >> pass the entered DTMF sequence to the shell script? >> >> Robert >> N5QM >> >> On Wed, Jul 31, 2013 at 6:10 PM, Ken wrote: >> > Very nice - I do something quite similar. >> > >> > >> > >> > I note that you can define a function to tell Allison to "be quiet" >> > for example >> > >> > >> > >> > 9940=cop,34 ; local telemtry off >> > >> > >> > >> > I execute *9940 at the start of my multi step script and it helps keep >> > things a bit more quiet. >> > >> > >> > >> > At the end, I turn it back on with cop,33. >> > >> > >> > >> > Of course, this only does the local node. I suppose you could execute >> > such a function on the remote node to turn off announcements (after >> > the first one). >> > >> > >> > >> > I have a DSTAR machine at the same site and it sends commands to the >> > asterisk machine, in some cases, using OS scripts like this. >> > >> > >> > >> > 73 >> > >> > Ken >> > >> > >> > >> > From: Michael Hebert [mailto:mhebert1975 at gmail.com] >> > Sent: Wednesday, July 31, 2013 3:21 PM >> > To: Bryan D. Boyle >> > Cc: app_rpt mailing list >> > Subject: Re: [App_rpt-users] Access Command Mode With A Macro >> > >> > >> > >> > Brilliantly written Bryan! Kudos >> > >> > >> > >> > Mike - KD5DFB >> > >> > >> > >> > On Wed, Jul 31, 2013 at 2:14 PM, Bryan D. Boyle >> wrote: >> > >> > On 7/31/13 2:38 PM, Johnny Keeker wrote: >> > >> > The question is, can a macro be created to connect to a node and then >> > put it in the command mode? I've tried creating the usual macro > example. >> > [macro] >> > 1=*325555*425555# >> > *51 only calls the 25555 node yet it does not take into account the >> > *425555 >> > >> > >> > Colin Chapman, founder of Lotus, had a favorite saying: "Simplify and >> > add lightness". >> > >> > When you get into complex command strings and trying to make the >> > machines jump through hoops, brew coffee, and change the baby at the >> > same time, it's easy to forget that there is more than one way to >> > accomplish what you are trying to do or gore an ox or stuff a ballot box > (if >> you're in Chicago). >> > >> > Ever thought of writing an OS shell script? There you now have >> > somewhat more programmatic control over HOW and IN WHAT sequence >> > commands are executed, can pause in between commands to allow them >> to >> > run to completion, do variable substitution so that the same shell, >> > with different values passed to it, can be used for multiple functions. >> > >> > In short, to me, it makes more sense. >> > >> > Here, is an example of a useful Macro tied to a schedule: >> > >> > [macro27XXX] >> > 09=*81# >> > >> > [schedule27XXX] >> > 09 = 00 * * * * >> > >> > Which plays the time at the top of every hour. Clean. Neat. Simple. >> > Brilliant. No pillocks here.... >> > >> > But, what if you want to unlink two hub nodes, link another node >> > through a secondary hub (because your brother ops object to the other >> > node because it's a 2-meter link radio?) and tell everyone that it's >> > done? Wow. Tell me the command string for that. >> > >> > I do not see that as a macro job. >> > >> > How about a script to do it: >> > >> > Call this script linkconnect.sh. Put it in a scripts directory >> > somewhere, like /etc/asterisk/scripts, strangely enough... >> > >> > Call it from rpt.conf: >> > 9XX=cmd,/etc/asterisk/scripts/linkconnect.sh >> > >> > -- >> > # Call a shell, no error checking, WYSIWYG, down and dirty #!/bin/bash >> > >> > #Send Asterisk a function message to unlink the two hubs >> > /usr/sbin/asterisk -rx "rpt fun 27123 *127234#" >> > >> > #wait for all the gyrations and Allison to shut up sleep 5 >> > >> > #Now, send a message to the second hub in the network to link #to the >> > link radio node 27999 /usr/sbin/asterisk -rx "rpt fun 27123 >> > *428999*327999#" >> > >> > #Wait for it.... >> > sleep 2 >> > >> > #Now, play an announcement that the new configuration is up and going. >> > /etc/asterisk/scripts/w3skconnect >> > -- >> > >> > >> > (obviously not the real node numbers, apologies to the holders of >> > those numbers if they're in live use.) >> > >> > Now, you can define a 'macro' as, say, 10=*9xx# ;call the function >> > numbered 9XX >> > >> > This gives you added flexibility and the ability to either call, using >> > the internal schedule, on a fixed value, the shell you wrote, or using >> > the OS cron facility, from a cronjob, or, even just run from the shell. >> > >> > Don't fixate on one solution as being better...sometimes imagination >> > is the key to creativity and indecision is the key to flexibility. >> > >> > >> > -- >> > 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 >> > >> > >> > >> > >> > _______________________________________________ >> > 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 robert at n5qm.com Thu Aug 1 15:40:14 2013 From: robert at n5qm.com (Robert Garcia) Date: Thu, 1 Aug 2013 10:40:14 -0500 Subject: [App_rpt-users] Access Command Mode With A Macro In-Reply-To: <8D05CE0369F1319-2068-16049@webmail-d127.sysops.aol.com> References: <1375295883.61497.YahooMailNeo@web163604.mail.gq1.yahoo.com> <51F96210.1050109@bdboyle.com> <007201ce8e43$1513b850$3f3b28f0$@cs.com> <008101ce8e96$f31129f0$d9337dd0$@cs.com> <8D05CE0369F1319-2068-16049@webmail-d127.sysops.aol.com> Message-ID: Ken, Agreed. Using the commands I posted would only get you the digits that caused the script to run, but nothing after it unfortunately. Robert N5QM On Thu, Aug 1, 2013 at 10:09 AM, Ken wrote: > of course ... that will return the DTMF code that executed the OS script. I > think what is wanted are the digits that come afterwards (so that you can > punch in any number not just a fixed menu of numbers). > > Oh well, I am sure a smart person can figure this out ;-P > > Ken > > > -----Original Message----- > From: Robert Garcia > To: Ken > Cc: app_rpt mailing list > Sent: Thu, Aug 1, 2013 9:29 am > Subject: Re: [App_rpt-users] Access Command Mode With A Macro > > Or even better... > > asterisk -rx "rpt stats 29820" | grep executed > Last DTMF command executed.......................: 329829 > > asterisk -rx "rpt stats 29820" | grep executed | cut -c52- > 329829 > > Robert > N5QM > > On Thu, Aug 1, 2013 at 8:23 AM, Robert Garcia wrote: >> Ken, >> >> Your idea lead me to this.. The shell script could parse that out >> rather easily and act upon it. >> >> asterisk -rx "rpt stats 29820" | grep executed >> Last DTMF command executed.......................: 329829 >> >> Robert >> N5QM >> >> On Thu, Aug 1, 2013 at 4:10 AM, Ken wrote: >>> No but that is an interesting idea >>> >>> The DTMF decodes are in the log file. If your script is smart it might be >>> able to find and parse them >>> >>> /var/log/asterisk/messages >>> ... >>> Sep 24 12:58:34] NOTICE[2672] chan_usbradio.c: Got DTMF char * duration >>> 210 >>> ms >>> [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration >>> 82 >>> ms >>> [Sep 24 12:58:35] NOTICE[2672] chan_usbradio.c: Got DTMF char 9 duration >>> 191 >>> ms >>> [Sep 24 12:58:36] NOTICE[2672] chan_usbradio.c: Got DTMF char 5 duration >>> 150 >>> ms >>> [Sep 24 12:58:37] NOTICE[2672] chan_usbradio.c: Got DTMF char 2 duration >>> 170 >>> ms >>> ... >>> >>> GL >>> Ken >>> >>> >>> >>>> -----Original Message----- >>>> From: Robert Garcia [mailto:robert at n5qm.com] >>>> Sent: Wednesday, July 31, 2013 9:37 PM >>>> To: Ken >>>> Cc: app_rpt mailing list >>>> Subject: Re: [App_rpt-users] Access Command Mode With A Macro >>>> >>>> Guys, >>>> >>>> This is an excellent thread with great ideas. By chance does the cmd >>> function >>>> pass the entered DTMF sequence to the shell script? >>>> >>>> Robert >>>> N5QM >>>> >>>> On Wed, Jul 31, 2013 at 6:10 PM, Ken wrote: >>>> > Very nice - I do something quite similar. >>>> > >>>> > >>>> > >>>> > I note that you can define a function to tell Allison to "be quiet" >>>> > for example >>>> > >>>> > >>>> > >>>> > 9940=cop,34 ; local telemtry off >>>> > >>>> > >>>> > >>>> > I execute *9940 at the start of my multi step script and it helps keep >>>> > things a bit more quiet. >>>> > >>>> > >>>> > >>>> > At the end, I turn it back on with cop,33. >>>> > >>>> > >>>> > >>>> > Of course, this only does the local node. I suppose you could execute >>>> > such a function on the remote node to turn off announcements (after >>>> > the first one). >>>> > >>>> > >>>> > >>>> > I have a DSTAR machine at the same site and it sends commands to the >>>> > asterisk machine, in some cases, using OS scripts like this. >>>> > >>>> > >>>> > >>>> > 73 >>>> > >>>> > Ken >>>> > >>>> > >>>> > >>>> > From: Michael Hebert [mailto:mhebert1975 at gmail.com] >>>> > Sent: Wednesday, July 31, 2013 3:21 PM >>>> > To: Bryan D. Boyle >>>> > Cc: app_rpt mailing list >>>> > Subject: Re: [App_rpt-users] Access Command Mode With A Macro >>>> > >>>> > >>>> > >>>> > Brilliantly written Bryan! Kudos >>>> > >>>> > >>>> > >>>> > Mike - KD5DFB >>>> > >>>> > >>>> > >>>> > On Wed, Jul 31, 2013 at 2:14 PM, Bryan D. Boyle >>>> wrote: >>>> > >>>> > On 7/31/13 2:38 PM, Johnny Keeker wrote: >>>> > >>>> > The question is, can a macro be created to connect to a node and then >>>> > put it in the command mode? I've tried creating the usual macro >>> example. >>>> > [macro] >>>> > 1=*325555*425555# >>>> > *51 only calls the 25555 node yet it does not take into account the >>>> > *425555 >>>> > >>>> > >>>> > Colin Chapman, founder of Lotus, had a favorite saying: "Simplify and >>>> > add lightness". >>>> > >>>> > When you get into complex command strings and trying to make the >>>> > machines jump through hoops, brew coffee, and change the baby at the >>>> > same time, it's easy to forget that there is more than one way to >>>> > accomplish what you are trying to do or gore an ox or stuff a ballot >>>> > box >>> (if >>>> you're in Chicago). >>>> > >>>> > Ever thought of writing an OS shell script? There you now have >>>> > somewhat more programmatic control over HOW and IN WHAT sequence >>>> > commands are executed, can pause in between commands to allow them >>>> to >>>> > run to completion, do variable substitution so that the same shell, >>>> > with different values passed to it, can be used for multiple >>>> > functions. >>>> > >>>> > In short, to me, it makes more sense. >>>> > >>>> > Here, is an example of a useful Macro tied to a schedule: >>>> > >>>> > [macro27XXX] >>>> > 09=*81# >>>> > >>>> > [schedule27XXX] >>>> > 09 = 00 * * * * >>>> > >>>> > Which plays the time at the top of every hour. Clean. Neat. Simple. >>>> > Brilliant. No pillocks here.... >>>> > >>>> > But, what if you want to unlink two hub nodes, link another node >>>> > through a secondary hub (because your brother ops object to the other >>>> > node because it's a 2-meter link radio?) and tell everyone that it's >>>> > done? Wow. Tell me the command string for that. >>>> > >>>> > I do not see that as a macro job. >>>> > >>>> > How about a script to do it: >>>> > >>>> > Call this script linkconnect.sh. Put it in a scripts directory >>>> > somewhere, like /etc/asterisk/scripts, strangely enough... >>>> > >>>> > Call it from rpt.conf: >>>> > 9XX=cmd,/etc/asterisk/scripts/linkconnect.sh >>>> > >>>> > -- >>>> > # Call a shell, no error checking, WYSIWYG, down and dirty #!/bin/bash >>>> > >>>> > #Send Asterisk a function message to unlink the two hubs >>>> > /usr/sbin/asterisk -rx "rpt fun 27123 *127234#" >>>> > >>>> > #wait for all the gyrations and Allison to shut up sleep 5 >>>> > >>>> > #Now, send a message to the second hub in the network to link #to the >>>> > link radio node 27999 /usr/sbin/asterisk -rx "rpt fun 27123 >>>> > *428999*327999#" >>>> > >>>> > #Wait for it.... >>>> > sleep 2 >>>> > >>>> > #Now, play an announcement that the new configuration is up and going. >>>> > /etc/asterisk/scripts/w3skconnect >>>> > -- >>>> > >>>> > >>>> > (obviously not the real node numbers, apologies to the holders of >>>> > those numbers if they're in live use.) >>>> > >>>> > Now, you can define a 'macro' as, say, 10=*9xx# ;call the function >>>> > numbered 9XX >>>> > >>>> > This gives you added flexibility and the ability to either call, using >>>> > the internal schedule, on a fixed value, the shell you wrote, or using >>>> > the OS cron facility, from a cronjob, or, even just run from the >>>> > shell. >>>> > >>>> > Don't fixate on one solution as being better...sometimes imagination >>>> > is the key to creativity and indecision is the key to flexibility. >>>> > >>>> > >>>> > -- >>>> > 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 >>>> > >>>> > >>>> > >>>> > >>>> > _______________________________________________ >>>> > App_rpt-users mailing list >>>> > App_rpt-users at ohnosec.org >>>> > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>>> > >>> >>> From n3vsi1 at verizon.net Thu Aug 1 17:24:50 2013 From: n3vsi1 at verizon.net (larry) Date: Thu, 01 Aug 2013 13:24:50 -0400 Subject: [App_rpt-users] Time Message-ID: <52FC0CC0D17542D6A7EE545177498302@LarryPC> Hello everyone, How do I setup my node to say time every hour. I'm using Acid on a neoware ca22. And where should I put it? N5zua sit this up for me a few years ago. So, seems to me, I need to to know the system and play with it. Thanks, Larry, n3vsi -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Thu Aug 1 17:38:59 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Thu, 1 Aug 2013 13:38:59 -0400 Subject: [App_rpt-users] Time In-Reply-To: <52FC0CC0D17542D6A7EE545177498302@LarryPC> References: <52FC0CC0D17542D6A7EE545177498302@LarryPC> Message-ID: <3AF67A06-6F5E-4DD5-8388-FD1F79EE29C2@bdboyle.com> read a msg i sent last night...it's in there as one of my examples... -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Aug 1, 2013, at 13:24, "larry" wrote: > Hello everyone, > How do I setup my node to say time every hour. I'm using Acid on a neoware ca22. And where should I put it? N5zua sit this up for me a few years ago. So, seems to me, I need to to know the system and play with it. > > Thanks, > Larry, > n3vsi > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From cypresstower at yahoo.com Thu Aug 1 20:00:54 2013 From: cypresstower at yahoo.com (Johnny Keeker) Date: Thu, 1 Aug 2013 13:00:54 -0700 (PDT) Subject: [App_rpt-users] Echo-stink Message-ID: <1375387254.98519.YahooMailNeo@web163606.mail.gq1.yahoo.com> I've found the 'permit=w1aw,w5yi,etc' ?line in the?echolink.conf only allows for 29 allowed?calls.? Any more than 30?entries?in the list prevents incoming requests on or not?on the list access to the node.??Short of checking for?typo's, using a backslash\ to continue to the next line, or adding another 'permit= line' hasn't proved any results. ??? -------------- next part -------------- An HTML attachment was scrubbed... URL: From wb3awj at comcast.net Thu Aug 1 22:19:25 2013 From: wb3awj at comcast.net (Robert A. Poff WB3AWJ) Date: Thu, 1 Aug 2013 22:19:25 +0000 (UTC) Subject: [App_rpt-users] Frequency Agile Remote - XCAT FUBAR In-Reply-To: <1375387254.98519.YahooMailNeo@web163606.mail.gq1.yahoo.com> Message-ID: <1593527669.2003901.1375395565588.JavaMail.root@sz0117a.westchester.pa.mail.comcast.net> Still digging on my Agile Remote. Acid with a Syntor X and XCAT. When I try to set a frequency, it's sending the CIV string to retrieve a memory from the radio. Not the string needed to set it from one of the memory entries in rpt.conf. Running Asterisk in the foreground with all the debug turned up here's what I see on the console executing a *017 command : @@@@ action: remote, param = 1 @@@@ table index i = 5 [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17558 function_remote: 28260 param=1 digitbuf=17 source=2 [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17483 get_mem_set: digitbuf=17 [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:4225 retrieve_memory: memory=17 block=memory [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10476 rpt_telemetry: Tracepoint rpt_telemetry() entered mode=38 [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10760 rpt_telemetry: Tracepoint rpt_telemetry() exit [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17486 get_mem_set: freq=146.520 res=0 [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:12849 collect_function_digits: rv=3 [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10476 rpt_telemetry: Tracepoint rpt_telemetry() entered mode=3 [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10760 rpt_telemetry: Tracepoint rpt_telemetry() exit Mode [Aug 1 15:06:09] NOTICE[2731]: app_rpt.c:13870 serial_remote_io: ioport=/dev/ttyS0 baud=14 iofd=0x19 String output was ?? ?'Ms: FE FE 20 E0 08 01 FD [Aug 1 15:06:09] NOTICE[2732]: app_rpt.c:8420 wait_interval: Delay interval = 2000 [Aug 1 15:06:10] WARNING[2731]: app_rpt.c:13910 serial_remote_io: -99999 Serial device not responding on node 28260 Offset Initial/Simplex Frequency Offset CTCSS Frequency [Aug 1 15:06:10] NOTICE[2731]: app_rpt.c:8420 wait_interval: Delay interval = 2000 [Aug 1 15:06:11] NOTICE[2732]: app_rpt.c:8424 wait_interval: Delay complete -- Hungup 'Zap/pseudo-1521668112' [Aug 1 15:06:12] NOTICE[2731]: app_rpt.c:8424 wait_interval: Delay complete -- Playing 'rpt/invalid-freq' (language 'en') At one point I added a statement to printf myrpt->remoterig variable in the check_freq function. It returned "myrpt->remoterig=Mode" ????? Shouldn't that be "xcat", or "remote_rig_xcat" ? Any suggestions where I should be looking? Robert A. Poff Loganville, PA. "Lieutenant, target the offending power boat and launch photon torpedoes" -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Thu Aug 1 22:46:15 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Thu, 01 Aug 2013 15:46:15 -0700 Subject: [App_rpt-users] Frequency Agile Remote - XCAT FUBAR In-Reply-To: <1593527669.2003901.1375395565588.JavaMail.root@sz0117a.westchester.pa.mail.comcast.net> References: <1593527669.2003901.1375395565588.JavaMail.root@sz0117a.westchester.pa.mail.comcast.net> Message-ID: <5E2068AD-4AA4-4816-BED6-838EA00B22A5@me.com> Maybe you have something wrong with your remote [functions] stanza. Let's see that that looks like on your system. -- Tim :wq On Aug 1, 2013, at 3:19 PM, Robert A. Poff WB3AWJ wrote: > Still digging on my Agile Remote. > > Acid with a Syntor X and XCAT. > When I try to set a frequency, it's sending the CIV string to retrieve a memory from the radio. > Not the string needed to set it from one of the memory entries in rpt.conf. > > Running Asterisk in the foreground with all the debug turned up here's what I see on the console executing a *017 command : > > @@@@ action: remote, param = 1 > @@@@ table index i = 5 > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17558 function_remote: 28260 param=1 digitbuf=17 source=2 > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17483 get_mem_set: digitbuf=17 > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:4225 retrieve_memory: memory=17 block=memory > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10476 rpt_telemetry: Tracepoint rpt_telemetry() entered mode=38 > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10760 rpt_telemetry: Tracepoint rpt_telemetry() exit > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17486 get_mem_set: freq=146.520 res=0 > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:12849 collect_function_digits: rv=3 > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10476 rpt_telemetry: Tracepoint rpt_telemetry() entered mode=3 > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10760 rpt_telemetry: Tracepoint rpt_telemetry() exit > Mode > [Aug 1 15:06:09] NOTICE[2731]: app_rpt.c:13870 serial_remote_io: ioport=/dev/ttyS0 baud=14 iofd=0x19 > String output was ?? ?'Ms: > FE FE 20 E0 08 01 FD > [Aug 1 15:06:09] NOTICE[2732]: app_rpt.c:8420 wait_interval: Delay interval = 2000 > [Aug 1 15:06:10] WARNING[2731]: app_rpt.c:13910 serial_remote_io: -99999 Serial device not responding on node 28260 > Offset Initial/Simplex > Frequency > Offset > CTCSS > Frequency > [Aug 1 15:06:10] NOTICE[2731]: app_rpt.c:8420 wait_interval: Delay interval = 2000 > [Aug 1 15:06:11] NOTICE[2732]: app_rpt.c:8424 wait_interval: Delay complete > -- Hungup 'Zap/pseudo-1521668112' > [Aug 1 15:06:12] NOTICE[2731]: app_rpt.c:8424 wait_interval: Delay complete > -- Playing 'rpt/invalid-freq' (language 'en') > > At one point I added a statement to printf myrpt->remoterig variable in the check_freq function. > It returned "myrpt->remoterig=Mode" ????? > Shouldn't that be "xcat", or "remote_rig_xcat" ? > > Any suggestions where I should be looking? > > > > Robert A. Poff > Loganville, PA. > > > "Lieutenant, target the offending power boat and launch photon torpedoes" > > _______________________________________________ > 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 Thu Aug 1 23:17:20 2013 From: wb3awj at comcast.net (Robert A. Poff) Date: Thu, 01 Aug 2013 19:17:20 -0400 Subject: [App_rpt-users] Frequency Agile Remote - XCAT FUBAR In-Reply-To: <5E2068AD-4AA4-4816-BED6-838EA00B22A5@me.com> References: <1593527669.2003901.1375395565588.JavaMail.root@sz0117a.westchester.pa.mail.comcast.net> <5E2068AD-4AA4-4816-BED6-838EA00B22A5@me.com> Message-ID: <801ad2ed-a01b-4f22-abe9-96c2f2f1f36d@email.android.com> The same rpt.conf file worked perfectly before I updated to current svn version. I'll post it later this evening when we get home. Tim Sawyer wrote: >Maybe you have something wrong with your remote [functions] stanza. >Let's see that that looks like on your system. >-- >Tim >:wq > >On Aug 1, 2013, at 3:19 PM, Robert A. Poff WB3AWJ >wrote: > >> Still digging on my Agile Remote. >> >> Acid with a Syntor X and XCAT. >> When I try to set a frequency, it's sending the CIV string to >retrieve a memory from the radio. >> Not the string needed to set it from one of the memory entries in >rpt.conf. >> >> Running Asterisk in the foreground with all the debug turned up >here's what I see on the console executing a *017 command : >> >> @@@@ action: remote, param = 1 >> @@@@ table index i = 5 >> [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17558 function_remote: >28260 param=1 digitbuf=17 source=2 >> [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17483 get_mem_set: >digitbuf=17 >> [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:4225 retrieve_memory: >memory=17 block=memory >> [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10476 rpt_telemetry: >Tracepoint rpt_telemetry() entered mode=38 >> [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10760 rpt_telemetry: >Tracepoint rpt_telemetry() exit >> [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17486 get_mem_set: >freq=146.520 res=0 >> [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:12849 >collect_function_digits: rv=3 >> [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10476 rpt_telemetry: >Tracepoint rpt_telemetry() entered mode=3 >> [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10760 rpt_telemetry: >Tracepoint rpt_telemetry() exit >> Mode >> [Aug 1 15:06:09] NOTICE[2731]: app_rpt.c:13870 serial_remote_io: >ioport=/dev/ttyS0 baud=14 iofd=0x19 >> String output was ?? ?'Ms: >> FE FE 20 E0 08 01 FD >> [Aug 1 15:06:09] NOTICE[2732]: app_rpt.c:8420 wait_interval: Delay >interval = 2000 >> [Aug 1 15:06:10] WARNING[2731]: app_rpt.c:13910 serial_remote_io: >-99999 Serial device not responding on node 28260 >> Offset Initial/Simplex >> Frequency >> Offset >> CTCSS >> Frequency >> [Aug 1 15:06:10] NOTICE[2731]: app_rpt.c:8420 wait_interval: Delay >interval = 2000 >> [Aug 1 15:06:11] NOTICE[2732]: app_rpt.c:8424 wait_interval: Delay >complete >> -- Hungup 'Zap/pseudo-1521668112' >> [Aug 1 15:06:12] NOTICE[2731]: app_rpt.c:8424 wait_interval: Delay >complete >> -- Playing 'rpt/invalid-freq' (language >'en') >> >> At one point I added a statement to printf myrpt->remoterig variable >in the check_freq function. >> It returned "myrpt->remoterig=Mode" ????? >> Shouldn't that be "xcat", or "remote_rig_xcat" ? >> >> Any suggestions where I should be looking? >> >> >> >> Robert A. Poff >> Loganville, PA. >> >> >> "Lieutenant, target the offending power boat and launch photon >torpedoes" >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- Sent from my Android phone with K-9 Mail. Please excuse my brevity. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wb3awj at comcast.net Fri Aug 2 03:38:40 2013 From: wb3awj at comcast.net (Robert Poff) Date: Thu, 01 Aug 2013 23:38:40 -0400 Subject: [App_rpt-users] Frequency Agile Remote - XCAT FUBAR In-Reply-To: <5E2068AD-4AA4-4816-BED6-838EA00B22A5@me.com> References: <1593527669.2003901.1375395565588.JavaMail.root@sz0117a.westchester.pa.mail.comcast.net> <5E2068AD-4AA4-4816-BED6-838EA00B22A5@me.com> Message-ID: <1375414720.589.18.camel@localhost> Tim, Below are the pertinent lines from the rpt.conf. As to the CIV..... As we sit now, if I send a *017 command (supposed to load 146.520 simplex), the debug output says this: String output was ?? ?'Ms: FE FE 20 E0 08 01 FD Which from what I find online says that function 08 is set memory mode. I think, the string should be : FE FE 20 E0 05 00 00 52 06 14 FD . Function 05 being set frequency with acknowledgment. Or possibly FE FE 20 E0 00 00 0 052 06 14 FD . Function 00 be set frequency without acknowledgment. To prove this out, I'll make a file with only those values in it with a hex editor, and blow it out ttyS0 to the xcat and see what happens. I'll anxiously await to see if anything is wrong. functions = functions-remote phone_functions = functions-remote lconn = PP3=1 ; Turn ON Fan ldisc = PP3=0 ; Turn OFF Fan memory = memory ; Section to hold memory entries (optional) remote = xcat ; Radio Command format ; remote=ft897 for Yaesu FT-897 or ; remote=rbi for Doug Hall RBI1 ; remote=kenwood for Kenwood mobiles such as the TMG707A ; remote=ic706 for the Icom IC-706 ; remote=xcat for Syntor X with XCAT board civaddr = 32 ; CI-V address in DECIMAL ioport = /dev/ttyS0 ; Specify port for serial port (optional) iospeed = 19200 ; COMM port speed dusbabek = yes ; either you need it or you don't authlevel = 0 ; Remote base authentication level ; authlevel = 0 : Anyone can use it ; authlevel = 1 : Requires log in, Waits for Tx key to ask for it ; authlevel = 2 : Requires log in, asks for it automously ;mars = 1 ; set=1 for IC-706 w/MARS mods (optional) ; remote_inact_timeout=0 ; Inactivity timer for remote base nodes only (set to 0 to disable). remote_timeout=5400 ; Session time out for remote base. (set to 0 to disable) split2m = 600 ; Set the default tx split to 600 KC [functions-remote] 0=remote,1 ; Retrieve Memory 1=remote,2 ; Set freq. example : *1146*520*1 for 146.520 (-) Split ; *1146*970*2 for 146.970 ( ) Simplex ; *1147*330*3 for 147.330 (+) Split 2=remote,3 ; Set tx PL tone 3=remote,4 ; Set rx PL tone 5=macro,1 ; Call MACROS 40=remote,100 ; Rx PL off 41=remote,101 ; Rx PL on 42=remote,102 ; Tx PL off 43=remote,103 ; Tx PL on 44=remote,104 ; Low Power 45=remote,105 ; Medium Power 46=remote,106 ; High Power 711=remote,107 ; Bump -20 714=remote,108 ; Bump -100 717=remote,109 ; Bump -500 713=remote,110 ; Bump +20 716=remote,111 ; Bump +100 719=remote,112 ; Bump +500 721=remote,113 ; Scan - slow 724=remote,114 ; Scan - quick 727=remote,115 ; Scan - fast 723=remote,116 ; Scan + slow 726=remote,117 ; Scan + quick 729=remote,118 ; Scan + fast 79=remote,119 ; Tune (brief AM transmission for automatic antenna tuner) 61=remote,5 ; Long status query 62=remote,140 ; Short status query 67=remote,210 ; Send a * 69=remote,211 ; Send a # 91=remote,99,CALLSIGN,LICENSETAG ; Remote base login. [memory] ; Memories for remote bases ;Syntax : CC=RRR.RRR,PPP.P,AAAAA ; C=Channel Number ; R=RX Frequency ; P=PL Frequency ; A=Attributes ; ;Attributes : a=AM b=LSB f=FM u=USB ; l=Low Power m=Medium Power h=High Power ; -=Minus TX Offset s=Simplex +=Plus TX Offset ; t=TX PL on r=RX PL on ; init=145.670,123.0,shrt ;Set to this on startup 00=145.510,123.0,sht ;Simplex, High Power, PL Encode 01=145.530,123.0,sht ;Simplex, High Power, PL Encode 02=145.550,123.0,sht ;Simplex, High Power, PL Encode 03=145.570,123.0,sht ;Simplex, High Power, PL Encode 17=146.520,123.0,sht ;National Simplex/Calling -- Robert A. Poff Loganville, PA S/V Loon 1983 Hunter 34 Havre de Grace, MD. WB3AWJ - Allstar 27784 Powered by Linux On Thu, 2013-08-01 at 15:46 -0700, Tim Sawyer wrote: > Maybe you have something wrong with your remote [functions] stanza. > Let's see that that looks like on your system. > > -- > Tim > :wq > > > > On Aug 1, 2013, at 3:19 PM, Robert A. Poff WB3AWJ > wrote: > > > > > Still digging on my Agile Remote. > > > > Acid with a Syntor X and XCAT. > > When I try to set a frequency, it's sending the CIV string to > > retrieve a memory from the radio. > > Not the string needed to set it from one of the memory entries in > > rpt.conf. > > > > Running Asterisk in the foreground with all the debug turned up > > here's what I see on the console executing a *017 command : > > > > @@@@ action: remote, param = 1 > > @@@@ table index i = 5 > > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17558 function_remote: > > 28260 param=1 digitbuf=17 source=2 > > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17483 get_mem_set: > > digitbuf=17 > > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:4225 retrieve_memory: > > memory=17 block=memory > > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10476 rpt_telemetry: > > Tracepoint rpt_telemetry() entered mode=38 > > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10760 rpt_telemetry: > > Tracepoint rpt_telemetry() exit > > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:17486 get_mem_set: > > freq=146.520 res=0 > > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:12849 > > collect_function_digits: rv=3 > > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10476 rpt_telemetry: > > Tracepoint rpt_telemetry() entered mode=3 > > [Aug 1 15:06:09] NOTICE[2718]: app_rpt.c:10760 rpt_telemetry: > > Tracepoint rpt_telemetry() exit > > Mode > > [Aug 1 15:06:09] NOTICE[2731]: app_rpt.c:13870 serial_remote_io: > > ioport=/dev/ttyS0 baud=14 iofd=0x19 > > String output was ?? ?'Ms: > > FE FE 20 E0 08 01 FD > > [Aug 1 15:06:09] NOTICE[2732]: app_rpt.c:8420 wait_interval: Delay > > interval = 2000 > > [Aug 1 15:06:10] WARNING[2731]: app_rpt.c:13910 serial_remote_io: > > -99999 Serial device not responding on node 28260 > > Offset Initial/Simplex > > Frequency > > Offset > > CTCSS > > Frequency > > [Aug 1 15:06:10] NOTICE[2731]: app_rpt.c:8420 wait_interval: Delay > > interval = 2000 > > [Aug 1 15:06:11] NOTICE[2732]: app_rpt.c:8424 wait_interval: Delay > > complete > > -- Hungup 'Zap/pseudo-1521668112' > > [Aug 1 15:06:12] NOTICE[2731]: app_rpt.c:8424 wait_interval: Delay > > complete > > -- Playing 'rpt/invalid-freq' (language > > 'en') > > > > At one point I added a statement to printf myrpt->remoterig variable > > in the check_freq function. > > It returned "myrpt->remoterig=Mode" ????? > > Shouldn't that be "xcat", or "remote_rig_xcat" ? > > > > Any suggestions where I should be looking? > > > > > > > > > > Robert A. Poff > > Loganville, PA. > > > > > > "Lieutenant, target the offending power boat and launch photon > > torpedoes" > > > > > > > > > > _______________________________________________ > > 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 mhebert1975 at gmail.com Fri Aug 2 05:52:13 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Fri, 2 Aug 2013 00:52:13 -0500 Subject: [App_rpt-users] NMEA sentence for RTCM Message-ID: Does anyone know what NMEA sentence the RTCM needs? Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From w6sel1 at gmail.com Fri Aug 2 11:16:58 2013 From: w6sel1 at gmail.com (SaLustiano Wong, Jr.) Date: Fri, 2 Aug 2013 04:16:58 -0700 Subject: [App_rpt-users] Echolink conference Message-ID: I was wondering if anybody know how to run an echolink conference thru that shows list of connected call signs instead of just the node numbers. I constantly hear connected immediately followed by disconnected announcement (I think because they cannot see who's logged in). I wasn't sure if I could run "the bridge" or how 2 configure it. Please advise.. thanks & 73.. SaL- W6SEL -------------- next part -------------- An HTML attachment was scrubbed... URL: From phoggberg at gmail.com Fri Aug 2 15:41:03 2013 From: phoggberg at gmail.com (Barry Berg) Date: Fri, 2 Aug 2013 10:41:03 -0500 Subject: [App_rpt-users] Noob Question Message-ID: <1AB22D81-5092-4271-9AB2-74A2DD1CC9C7@gmail.com> I am having problems getting ACID up and running correctly.... (As if from a noob that is a surprise for the group) Let me take a minute and describe what I am trying to do before I actually get to the problem. I am working with a team involved with search and rescue efforts in respect to flood response. Typically we are working in North Dakota, which compared to other states has a much lower population concentration. That reflects in the Ham population as well. With fewer HAMs there are fewer Amateur facilities, and due to the flatness (honestly, most buildings in my experience are no more than 3 or 4 stories) range on them is relatively localized. However, the flooding can cover a great distance. We have remote teams working 30 or more miles from our base in a major population center. In order to stay in contact with them we are looking to use app_rpt to establish portable remote bases that can connect to the internet from either a governmental internet access (CAT 5 Ethernet) or a portable cell phone type hotspot. We will not be using HAM frequencies, but rather commercially assigned frequencies that we are authorized to use. Each unit will be a remote Base. The idea is to tie these remote units into a single combined network using multiple computers using URIx interfaces / Lox Boards. These I would like to bridge into a single Asterisk Server conference bridge so that any transmission goes out on all remote bases simultaneously, similar to a reflector in the D-Star world. The users all understand circuit discipline very well, and I am not concerned with doubling. In fact I actually want a shared "network" between operational units for situational awareness purposes. However I would like to block access to anyone not specifically authorized from at least the internet side. Multiple "base stations" (at least 3 or 4) would also be used for monitoring and command and control purposes. I was thinking of using the windows application (iaxrpt) available with the XPAR project and usb headphone/mic for the base station. Being able to generate "picture phone" setups of live motion video between base stations on the asterisk network rather than skype etc would also be a plus. Literally the network would cover operational distances in the 30 - 100 mile range and command and control in the thousand mile range. Now my questions. I generated the ACID system on a netbook connected to a URI usb interface. I have ssh working fine, but not yet RDP access to the server. When I bring up the iaxrpt it tries to connect but the connection fails very quickly less than 10 sec. I suspect that its a login/password problem. Any hints on getting that to work. All this is happening within my LAN accessing the server with direct ip addressing. There is another problem like how to access the server from outside the firewall, I set up a dyndns.org connection, but haven't got that working at all. How do I set and change the id (node number -- I used 1210 as my node number, the password is 123456, and the ip is 192.168.15.50) I have tried several times to gog in, changing the information in /etc/asterisk/rpt.conf but with no luck. How does one change the password when after to maintain security in the wild? Any help would be greatly appreciated. I am sure this is a classic case of tightening up the nut behind the keyboard, but after two days of messing with it and carefully ensuring that the build did not have any errors, I am now at a loss. Anyway I am just trying to take baby steps here first connecting the app and then secondly pushing xmit to see if the red led will light up on the URI. Thanks in advance for any help you can provide. Barry, K0BSB -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4133 bytes Desc: not available URL: From telesistant at hotmail.com Fri Aug 2 17:48:37 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Fri, 2 Aug 2013 10:48:37 -0700 Subject: [App_rpt-users] NMEA sentence for RTCM In-Reply-To: References: Message-ID: $GPGSV (to determine satellites in view) $GPRMC (to determine time of day) $GPGGA (to determine position, lock status) Jim, WB6NIL Date: Fri, 2 Aug 2013 00:52:13 -0500 From: mhebert1975 at gmail.com To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] NMEA sentence for RTCM Does anyone know what NMEA sentence the RTCM needs? Mike _______________________________________________ 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 mhebert1975 at gmail.com Fri Aug 2 19:21:30 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Fri, 2 Aug 2013 14:21:30 -0500 Subject: [App_rpt-users] NMEA sentence for RTCM In-Reply-To: References: Message-ID: Thank you Jim! On Fri, Aug 2, 2013 at 12:48 PM, Jim Duuuude wrote: > $GPGSV (to determine satellites in view) > $GPRMC (to determine time of day) > $GPGGA (to determine position, lock status) > > Jim, WB6NIL > > ------------------------------ > Date: Fri, 2 Aug 2013 00:52:13 -0500 > From: mhebert1975 at gmail.com > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] NMEA sentence for RTCM > > Does anyone know what NMEA sentence the RTCM needs? > > Mike > > > _______________________________________________ App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From yokshs at gmail.com Sun Aug 4 16:37:26 2013 From: yokshs at gmail.com (K&R Yoksh) Date: Sun, 4 Aug 2013 11:37:26 -0500 Subject: [App_rpt-users] Event Management Subsystem question Message-ID: <44491D6375834639B1841AB5FB6F155F@main> Hello, Is there a way to distinguish between an incoming call and and outgoing call in the Event Management subsystem? This would be handy for a script I'm working on. Thanks.. 73 Kyle K0KN Olathe, KS Allstar 2210-2219 From kj6qfs at gmail.com Mon Aug 5 10:44:58 2013 From: kj6qfs at gmail.com (Sam Skolfield) Date: Mon, 5 Aug 2013 03:44:58 -0700 Subject: [App_rpt-users] COP commands to disable voted receivers? Message-ID: Hello Group, I have recently configured and deployed a simple split-site voted repeater using app_rpt and three RTCMs: two for a pair of receivers, and one for the transmitter. So far, the system is providing top-notch performance in every aspect. Question: Is there a common practice for failing various individual receivers via DTMF command? I imagine this would be of great use for a number of practical and diagnostic applications. If there isn't, is anyone inspired enough to make this happen? Thanks for reading, and have a nice day! -Sam -- KJ6QFS Sam Skolfield -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Mon Aug 5 13:57:23 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Mon, 05 Aug 2013 06:57:23 -0700 Subject: [App_rpt-users] COP commands to disable voted receivers? In-Reply-To: References: Message-ID: Sam, Glad you like the voter. It really is very good stuff. Absolutely seamless voting. Not DTMF voter control, but it can be done at the Asterisk CLI. The usage is: voter prio node [client 0-100 | -1 | -2, off, disable] Where: no options lists priorities 0-100 = the site with highest priority will always vote -1 = stops the site from voting -2, off, or disable = return the site to normal, ie 'not overridden' I'll put this and some other voter info on the Drupal site today. -- Tim :wq On Aug 5, 2013, at 3:44 AM, Sam Skolfield wrote: > Hello Group, > > I have recently configured and deployed a simple split-site voted repeater using app_rpt and three RTCMs: two for a pair of receivers, and one for the transmitter. So far, the system is providing top-notch performance in every aspect. > > Question: Is there a common practice for failing various individual receivers via DTMF command? I imagine this would be of great use for a number of practical and diagnostic applications. > > If there isn't, is anyone inspired enough to make this happen? > > > Thanks for reading, and have a nice day! > > -Sam > > -- > KJ6QFS > Sam Skolfield > _______________________________________________ > 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 n5uxt at hotmail.com Mon Aug 5 20:07:30 2013 From: n5uxt at hotmail.com (Angelo Glorioso) Date: Mon, 5 Aug 2013 15:07:30 -0500 Subject: [App_rpt-users] Test ULAW File References: Message-ID: Is there a way to test a ULAW file that I have setup for a tail message?? I would like to make sure the audio level is right. Angelo -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Mon Aug 5 20:25:55 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Mon, 5 Aug 2013 16:25:55 -0400 Subject: [App_rpt-users] Test ULAW File In-Reply-To: References: Message-ID: <76126620-BE00-428C-A7FA-99343A8F3500@bdboyle.com> if you're using audacity to gen the file, i've found that if you normalize the entire file to -5 dB and export as a ulaw, that it's pretty useable and clean. -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Aug 5, 2013, at 16:07, Angelo Glorioso wrote: > Is there a way to test a ULAW file that I have setup for > a tail message?? I would like to make sure the audio level is right. > > Angelo > _______________________________________________ > 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 n5uxt at hotmail.com Mon Aug 5 20:31:56 2013 From: n5uxt at hotmail.com (Angelo Glorioso) Date: Mon, 5 Aug 2013 15:31:56 -0500 Subject: [App_rpt-users] Test ULAW File References: <76126620-BE00-428C-A7FA-99343A8F3500@bdboyle.com> Message-ID: Hi Bryan, I am gen the file with a web base site which gives you a wav file. From there I am using SOX to convert the file to ULAW. Some files seem to be so loud, you cant understand them. That is the reason I was hoping of a way to get asterisk to play the file instead of waiting on the timer. This way I can get the right audio setting.. Angelo ----- Original Message ----- From: Bryan D. Boyle To: Angelo Glorioso Cc: Sent: Monday, August 05, 2013 3:25 PM Subject: Re: [App_rpt-users] Test ULAW File if you're using audacity to gen the file, i've found that if you normalize the entire file to -5 dB and export as a ulaw, that it's pretty useable and clean. -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Aug 5, 2013, at 16:07, Angelo Glorioso wrote: Is there a way to test a ULAW file that I have setup for a tail message?? I would like to make sure the audio level is right. Angelo _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Mon Aug 5 21:08:24 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Mon, 05 Aug 2013 14:08:24 -0700 Subject: [App_rpt-users] Test ULAW File In-Reply-To: References: Message-ID: You can use the localplay command to play the sound file at will... *CLI> rpt localplay Usage: rpt localplay Send an Audio File to a node, do not send to other connected nodes (local) -- Tim :wq On Aug 5, 2013, at 1:07 PM, Angelo Glorioso wrote: > Is there a way to test a ULAW file that I have setup for > a tail message?? I would like to make sure the audio level is right. > > Angelo > _______________________________________________ > 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 n5uxt at hotmail.com Mon Aug 5 21:45:25 2013 From: n5uxt at hotmail.com (Angelo Glorioso) Date: Mon, 5 Aug 2013 16:45:25 -0500 Subject: [App_rpt-users] Test ULAW File References: Message-ID: Thanks TIm and Bryan. Just what I needed. You guys rock!! ----- Original Message ----- From: Tim Sawyer To: Angelo Glorioso Cc: app_rpt-users at ohnosec.org Sent: Monday, August 05, 2013 4:08 PM Subject: Re: [App_rpt-users] Test ULAW File You can use the localplay command to play the sound file at will... *CLI> rpt localplay Usage: rpt localplay Send an Audio File to a node, do not send to other connected nodes (local) -- Tim :wq On Aug 5, 2013, at 1:07 PM, Angelo Glorioso wrote: Is there a way to test a ULAW file that I have setup for a tail message?? I would like to make sure the audio level is right. Angelo _______________________________________________ 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 Aug 5 21:51:37 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Mon, 05 Aug 2013 17:51:37 -0400 Subject: [App_rpt-users] Test ULAW File In-Reply-To: References: Message-ID: <52001E69.7070300@bdboyle.com> On 8/5/13 5:45 PM, Angelo Glorioso wrote: > Thanks TIm and Bryan. Just what I needed. You guys rock!! No prob. Don't rock anymore...just roll...;) -- 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 ke2n at cs.com Tue Aug 6 00:54:48 2013 From: ke2n at cs.com (Ken) Date: Mon, 5 Aug 2013 20:54:48 -0400 Subject: [App_rpt-users] uLaw playback Message-ID: <007601ce923f$8d525060$a7f6f120$@cs.com> I have read where uLaw produces 14 bit audio (-8159 to +8158 numerically-speaking) - see Wikipedia on this, for example. I am guessing this is the range of numbers used by app_rpt. Your 16-bit WAV format is going to produce +/- 32768 (numerically-speaking again). So - you need to divide the WAV output by a factor of 4 to get into the range that uLaw supports. The tutorial on using Audacity for app_rpt: http://images.ohnosec.org/app-rpt-audacity.pdf says to normalize at -6dB. You really need to follow that advice to get clean audio. "Normalize" will set the loudest sound to the amplitude you select. If there are a lot of sound "spikes" in the audio track, you can end up with a pretty low average sound level. I have found the best way to fix this is some judicious use of the Audacity "hard limiter" function. It really does not damage the sound quality, when used within reason. 73 Ken From ke2n at cs.com Tue Aug 6 08:41:29 2013 From: ke2n at cs.com (Ken) Date: Tue, 6 Aug 2013 04:41:29 -0400 Subject: [App_rpt-users] uLaw playback In-Reply-To: References: <007601ce923f$8d525060$a7f6f120$@cs.com> Message-ID: <000301ce9280$bf395d80$3dac1880$@cs.com> If the original wav file is not limited to -6 dBfs (minus 6 dB relative to full scale) you can reduce the level "on the fly" by using the lower case "v" for volume control. For example, this reduces the volume to half what it was (-0.5) sox -v -0.5 -t raw -U -c 1 -r 8000 (etc...) 73 Ken > -----Original Message----- > From: Angelo Glorioso [mailto:n5uxt at hotmail.com] > Sent: Monday, August 05, 2013 10:39 PM > To: Ken > Subject: Re: uLaw playback > > Hi Ken, > > Thanks for your reply. I was able to find the syntax for sox. It worked great. It > took my wav file and converted it over to ulaw. I used : > > sox -V n5uxt.wav -r 8000 -c 1 -t ul -w n5uxt.ulaw > > It was simple and fast. > > 73, Angelo > > > ----- Original Message ----- > From: "Ken" > To: > Cc: "'Angelo Glorioso'" > Sent: Monday, August 05, 2013 7:54 PM > Subject: uLaw playback > > > >I have read where uLaw produces 14 bit audio (-8159 to +8158 > > numerically-speaking) - see Wikipedia on this, for example. > > > > I am guessing this is the range of numbers used by app_rpt. > > > > Your 16-bit WAV format is going to produce +/- 32768 (numerically- > speaking > > again). > > > > So - you need to divide the WAV output by a factor of 4 to get into the > > range that uLaw supports. > > > > The tutorial on using Audacity for app_rpt: > > http://images.ohnosec.org/app-rpt-audacity.pdf says to normalize at -6dB. > > > > You really need to follow that advice to get clean audio. > > > > "Normalize" will set the loudest sound to the amplitude you select. If > > there are a lot of sound "spikes" in the audio track, you can end up with > > a > > pretty low average sound level. I have found the best way to fix this is > > some judicious use of the Audacity "hard limiter" function. It really does > > not damage the sound quality, when used within reason. > > > > 73 > > > > Ken > > > > From jrorke at cogeco.ca Tue Aug 6 12:10:21 2013 From: jrorke at cogeco.ca (Jon Rorke) Date: Tue, 06 Aug 2013 08:10:21 -0400 Subject: [App_rpt-users] uLaw playback In-Reply-To: <000301ce9280$bf395d80$3dac1880$@cs.com> References: <007601ce923f$8d525060$a7f6f120$@cs.com> <000301ce9280$bf395d80$3dac1880$@cs.com> Message-ID: <5200E7AD.1080103@cogeco.ca> When I make my audio files in Audacity, I export to a wav file then I export to ulaw. I then play the wav files back to verify they sound ok. Works great. Jon VA3RQ On 8/6/2013 4:41 AM, Ken wrote: > If the original wav file is not limited to -6 dBfs (minus 6 dB relative to > full scale) you can reduce the level "on the fly" by using the lower case > "v" for volume control. > > For example, this reduces the volume to half what it was (-0.5) > > sox -v -0.5 -t raw -U -c 1 -r 8000 (etc...) > > 73 > Ken > > >> -----Original Message----- >> From: Angelo Glorioso [mailto:n5uxt at hotmail.com] >> Sent: Monday, August 05, 2013 10:39 PM >> To: Ken >> Subject: Re: uLaw playback >> >> Hi Ken, >> >> Thanks for your reply. I was able to find the syntax for sox. It worked > great. It >> took my wav file and converted it over to ulaw. I used : >> >> sox -V n5uxt.wav -r 8000 -c 1 -t ul -w n5uxt.ulaw >> >> It was simple and fast. >> >> 73, Angelo >> >> >> ----- Original Message ----- >> From: "Ken" >> To: >> Cc: "'Angelo Glorioso'" >> Sent: Monday, August 05, 2013 7:54 PM >> Subject: uLaw playback >> >> >>> I have read where uLaw produces 14 bit audio (-8159 to +8158 >>> numerically-speaking) - see Wikipedia on this, for example. >>> >>> I am guessing this is the range of numbers used by app_rpt. >>> >>> Your 16-bit WAV format is going to produce +/- 32768 (numerically- >> speaking >>> again). >>> >>> So - you need to divide the WAV output by a factor of 4 to get into the >>> range that uLaw supports. >>> >>> The tutorial on using Audacity for app_rpt: >>> http://images.ohnosec.org/app-rpt-audacity.pdf says to normalize at > -6dB. >>> You really need to follow that advice to get clean audio. >>> >>> "Normalize" will set the loudest sound to the amplitude you select. If >>> there are a lot of sound "spikes" in the audio track, you can end up > with >>> a >>> pretty low average sound level. I have found the best way to fix this > is >>> some judicious use of the Audacity "hard limiter" function. It really > does >>> not damage the sound quality, when used within reason. >>> >>> 73 >>> >>> Ken >>> >>> > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > From bdboyle at bdboyle.com Tue Aug 6 13:02:53 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Tue, 06 Aug 2013 09:02:53 -0400 Subject: [App_rpt-users] uLaw playback In-Reply-To: <5200E7AD.1080103@cogeco.ca> References: <007601ce923f$8d525060$a7f6f120$@cs.com> <000301ce9280$bf395d80$3dac1880$@cs.com> <5200E7AD.1080103@cogeco.ca> Message-ID: <5200F3FD.1080102@bdboyle.com> On 8/6/13 8:10 AM, Jon Rorke wrote: > When I make my audio files in Audacity, I export to a wav file then I > export to ulaw. > I then play the wav files back to verify they sound ok. Like a few others on the list here, I'm pretty certain there are a few audio/broadcast/radio engineers in the woodpile, so, while it's good enough to use William or Allison via cepstral, there is nothing like actually, should you want, having a professional production or voice to do fixed announcements. I mean, TTS can only go so far, right? I know it's overkill (anything worth doing is worth doing to excess...;)), but, I have a complete radio (as in broadcast) studio setup at home; full tape (yes, even carts), a-d conversion, processing (dbx, orban) equipment, dynamic, condensor, ribbon mics, etc., and can deliver in multiple formats (mp3, wav, gsm, etc). Current studio: http://www.wb0yle.com/photos/streaming.jpg New console I'm restoring to replace the one in the above picture: https://www.facebook.com/photo.php?v=10200644058003293&l=6448542573621037740 Maybe those of us with the skills, on an as-available and casual basis, can help out those who are 'production facilities-challenged?'???? -- 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 david.osborn at manx.net Tue Aug 6 19:30:33 2013 From: david.osborn at manx.net (David Osborn) Date: Tue, 6 Aug 2013 20:30:33 +0100 Subject: [App_rpt-users] Bleeping Hub Message-ID: <006c01ce92db$6bef48a0$43cdd9e0$@manx.net> Hey gang, Just goofing around, I wanted to see how well Allstar would play when configured as a hub node under VMWare. Well, it worked and I was able to make connections to other nodes, connect with IaxRPT and all that good stuff. The thing is, it likes to beep. When I connect the virtual hub to another node and then key that node, when I let go the button I get 6 rapid beeps followed by the courtesy beep from the node I'm accessing. I believe that these beeps are coming from the V-Hub, but can't figure out why. Anyone got any ideas on this one? Thanks David - GD4HOZ -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Tue Aug 6 21:10:16 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Tue, 06 Aug 2013 14:10:16 -0700 Subject: [App_rpt-users] Bleeping Hub In-Reply-To: <006c01ce92db$6bef48a0$43cdd9e0$@manx.net> References: <006c01ce92db$6bef48a0$43cdd9e0$@manx.net> Message-ID: <7562AD96-C3F4-452C-883C-8A28B966D01C@me.com> Running asterisk on a VM is a no, no... it's not supported... it doesn't work... forget it... -- Tim :wq On Aug 6, 2013, at 12:30 PM, David Osborn wrote: > Hey gang, > > Just goofing around, I wanted to see how well Allstar would play when configured as a hub node under VMWare. > > Well, it worked and I was able to make connections to other nodes, connect with IaxRPT and all that good stuff. The thing is, it likes to beep. > > When I connect the virtual hub to another node and then key that node, when I let go the button I get 6 rapid beeps followed by the courtesy beep from the node I?m accessing. > > I believe that these beeps are coming from the V-Hub, but can?t figure out why. > > Anyone got any ideas on this one? > > Thanks > > David ? GD4HOZ > > > _______________________________________________ > 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 mhebert1975 at gmail.com Tue Aug 6 22:00:47 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 6 Aug 2013 17:00:47 -0500 Subject: [App_rpt-users] NMEA sentence for RTCM In-Reply-To: References: Message-ID: Jim, Is there a way to see the NEMA sentences through the RTCM or asterisk? I know using the voter debug level 2 or higher I can see the Lat, Lon, and Elev. Mike On Fri, Aug 2, 2013 at 12:48 PM, Jim Duuuude wrote: > $GPGSV (to determine satellites in view) > $GPRMC (to determine time of day) > $GPGGA (to determine position, lock status) > > Jim, WB6NIL > > ------------------------------ > Date: Fri, 2 Aug 2013 00:52:13 -0500 > From: mhebert1975 at gmail.com > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] NMEA sentence for RTCM > > Does anyone know what NMEA sentence the RTCM needs? > > Mike > > > _______________________________________________ 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 Aug 7 04:26:22 2013 From: w7ry at centurytel.net (Jim W7RY) Date: Tue, 6 Aug 2013 21:26:22 -0700 Subject: [App_rpt-users] Bleeping Hub In-Reply-To: <7562AD96-C3F4-452C-883C-8A28B966D01C@me.com> References: <006c01ce92db$6bef48a0$43cdd9e0$@manx.net> <7562AD96-C3F4-452C-883C-8A28B966D01C@me.com> Message-ID: <90CB4798BA5341F195D666AEDA11E169@JimsLaptop> A node on VM Player works perfectly on a Windows 7 laptop. I have a node running on this Windows laptop. Why doesn't it work in VMWare? 73 Jim W7RY From: Tim Sawyer Sent: Tuesday, August 06, 2013 2:10 PM To: David Osborn Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Bleeping Hub Running asterisk on a VM is a no, no... it's not supported... it doesn't work... forget it... -- Tim :wq On Aug 6, 2013, at 12:30 PM, David Osborn wrote: Hey gang, Just goofing around, I wanted to see how well Allstar would play when configured as a hub node under VMWare. Well, it worked and I was able to make connections to other nodes, connect with IaxRPT and all that good stuff. The thing is, it likes to beep. When I connect the virtual hub to another node and then key that node, when I let go the button I get 6 rapid beeps followed by the courtesy beep from the node I?m accessing. I believe that these beeps are coming from the V-Hub, but can?t figure out why. Anyone got any ideas on this one? Thanks David ? GD4HOZ _______________________________________________ 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 phoggberg at gmail.com Wed Aug 7 05:06:13 2013 From: phoggberg at gmail.com (Barry Berg) Date: Wed, 7 Aug 2013 00:06:13 -0500 Subject: [App_rpt-users] Connecting Nodes Message-ID: <7321EE7E-BDD7-497D-A1A7-4800E70AA4B2@gmail.com> David GD4HOZ wrote: > When I connect the virtual hub to another node and then key that node, when > I let go the button ... > > David - GD4HOZ Connecting nodes to a Hub .... First since it is not driving anything can a Raspberry Pi act as a Hub running the current release of Asterisk (i.e. apt-get install asterisk) ? Or do I need to generate a Centos Based Hub, and where in the documentation is do ing so, I looked but haven't found that yet. If I can use a current version of Asterisk, rather than app_rpt how do I configure it? Next how do I link nodes. Assume I have a hub with a node number of 1010 and three remote base stations with node numbers 1110, 1210, 1310. Assume I will be using the iaxrpt client. When I press transmit on the iaxrpt client I want the transmission to go out on the three nodes. If there is a transmission received on either 1110, 1210, or 1310 I want it to be received by the iaxrpt client, and transmitted out the other two nodes. I am not sure if I need the hub, as I was told that 1310 can attach to 1210, which can attach to 1110, and the iaxrpt client can attach to 1110 as well and it will all work. I haven't found the documentation on how to get nodes to attach to each other, or how to configure that. I would very much appreciate someone pointing me to the right documentation so I can try to set things up. Thanks in advance, Barry, K0BSB Sent from my iPad From DwaineGarden at rogers.com Wed Aug 7 05:38:19 2013 From: DwaineGarden at rogers.com (Dwaine Garden VE3GIF) Date: Wed, 07 Aug 2013 01:38:19 -0400 Subject: [App_rpt-users] uLaw playback Message-ID: I use the AT&T site and just type what I want the message to be. Pick the voice and listen before I spit out the ulaw audio file. Had my whole IVR system menu done that way. It was mint. Jon Rorke wrote: >When I make my audio files in Audacity, I export to a wav file then I >export to ulaw. >I then play the wav files back to verify they sound ok. > >Works great. > >Jon VA3RQ > >On 8/6/2013 4:41 AM, Ken wrote: >> If the original wav file is not limited to -6 dBfs (minus 6 dB relative to >> full scale) you can reduce the level "on the fly" by using the lower case >> "v" for volume control. >> >> For example, this reduces the volume to half what it was (-0.5) >> >> sox -v -0.5 -t raw -U -c 1 -r 8000 (etc...) >> >> 73 >> Ken >> >> >>> -----Original Message----- >>> From: Angelo Glorioso [mailto:n5uxt at hotmail.com] >>> Sent: Monday, August 05, 2013 10:39 PM >>> To: Ken >>> Subject: Re: uLaw playback >>> >>> Hi Ken, >>> >>> Thanks for your reply. I was able to find the syntax for sox. It worked >> great. It >>> took my wav file and converted it over to ulaw. I used : >>> >>> sox -V n5uxt.wav -r 8000 -c 1 -t ul -w n5uxt.ulaw >>> >>> It was simple and fast. >>> >>> 73, Angelo >>> >>> >>> ----- Original Message ----- >>> From: "Ken" >>> To: >>> Cc: "'Angelo Glorioso'" >>> Sent: Monday, August 05, 2013 7:54 PM >>> Subject: uLaw playback >>> >>> >>>> I have read where uLaw produces 14 bit audio (-8159 to +8158 >>>> numerically-speaking) - see Wikipedia on this, for example. >>>> >>>> I am guessing this is the range of numbers used by app_rpt. >>>> >>>> Your 16-bit WAV format is going to produce +/- 32768 (numerically- >>> speaking >>>> again). >>>> >>>> So - you need to divide the WAV output by a factor of 4 to get into the >>>> range that uLaw supports. >>>> >>>> The tutorial on using Audacity for app_rpt: >>>> http://images.ohnosec.org/app-rpt-audacity.pdf says to normalize at >> -6dB. >>>> You really need to follow that advice to get clean audio. >>>> >>>> "Normalize" will set the loudest sound to the amplitude you select. If >>>> there are a lot of sound "spikes" in the audio track, you can end up >> with >>>> a >>>> pretty low average sound level. I have found the best way to fix this >> is >>>> some judicious use of the Audacity "hard limiter" function. It really >> does >>>> not damage the sound quality, when used within reason. >>>> >>>> 73 >>>> >>>> Ken >>>> >>>> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> > >_______________________________________________ >App_rpt-users mailing list >App_rpt-users at ohnosec.org >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From tim.sawyer at me.com Wed Aug 7 05:39:11 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Tue, 06 Aug 2013 22:39:11 -0700 Subject: [App_rpt-users] Connecting Nodes In-Reply-To: <7321EE7E-BDD7-497D-A1A7-4800E70AA4B2@gmail.com> References: <7321EE7E-BDD7-497D-A1A7-4800E70AA4B2@gmail.com> Message-ID: <6990AE3B-CC86-4C4C-B7BE-684406F8333C@me.com> I think I've read here on the list that Allstar will not run on Raspberry Pi. As far as how nodes attach to each other, it's pretty simple. Every node can accept multiple connections so any node can be a central point of connection. You can daisy chain the connections like you mentioned or connect everything to one node including iaxRPT. It's completely flexible. A "hub" is just another node with no radio attached. Connections are made with touch tones. The default install uses *3+nodeNumber to connect and *1+nodeNumber to disconnect. Nodes can be set up to automatically connect when they boot up. Asterisk has a CLI which can also be used to make connections. There are web based systems to control nodes, too. And yes, when nodes are connected all nodes can talk to each other and any connected clients including iaxRPT, the webTranceiver, or even telephones. ohnosec.org/drupal in addition to the allstarlink.org site is a good place to start learning. -- Tim :wq On Aug 6, 2013, at 10:06 PM, Barry Berg wrote: > David GD4HOZ wrote: > >> When I connect the virtual hub to another node and then key that node, when >> I let go the button ... >> >> David - GD4HOZ > > Connecting nodes to a Hub .... > First since it is not driving anything can a Raspberry Pi act as a Hub running the current release of Asterisk (i.e. apt-get install asterisk) ? Or do I need to generate a Centos Based Hub, and where in the documentation is do ing so, I looked but haven't found that yet. If I can use a current version of Asterisk, rather than app_rpt how do I configure it? > > Next how do I link nodes. Assume I have a hub with a node number of 1010 and three remote base stations with node numbers 1110, 1210, 1310. Assume I will be using the iaxrpt client. When I press transmit on the iaxrpt client I want the transmission to go out on the three nodes. If there is a transmission received on either 1110, 1210, or 1310 I want it to be received by the iaxrpt client, and transmitted out the other two nodes. I am not sure if I need the hub, as I was told that 1310 can attach to 1210, which can attach to 1110, and the iaxrpt client can attach to 1110 as well and it will all work. I haven't found the documentation on how to get nodes to attach to each other, or how to configure that. > > I would very much appreciate someone pointing me to the right documentation so I can try to set things up. > > Thanks in advance, > > Barry, K0BSB > Sent from my iPad > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From edgecomberts at gmail.com Wed Aug 7 05:39:41 2013 From: edgecomberts at gmail.com (Shane Morris) Date: Wed, 7 Aug 2013 15:39:41 +1000 Subject: [App_rpt-users] FAQ? Message-ID: Do we have a FAQ anywhere? Might save people asking the common questions in the list. Thanks all. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mihhail at telegrupp.ee Wed Aug 7 05:55:24 2013 From: mihhail at telegrupp.ee (Mihhail Jakovlev) Date: Wed, 7 Aug 2013 05:55:24 +0000 Subject: [App_rpt-users] Asterisk module for DTMF control Message-ID: <4a33b26e86ce42009b8cb892203ad5dd@peakokk.tlg.local> Hi, I need a help... I need to build a small system with amateur simplex links with low cost and low power nodes with any PBX functions (gsm trunk, voice menu, mailbox). PBX server based on XIPPR, but may be a Freeswitch too. I need to use only SIP protocol. System programmed using inbond DTMF. Hardware may be a Raspberry pi, with USB soundcard for audio and USB-UART adapter for radio control. Idea is a DTMF control. Any Asterisk app or module need to code and decode dtmf digit (letter) PTT activate with DTMF "A" and deactivate with DTMF "B". For example, node number 2000 connected to node 3000. If to node 3000 audio input comes DTMF letter A (from radio channel), it will activate PTT on node 2000 and letter B will deactivate PTT. One UART pin can be used as PTT, second as CarrierDetect. If CD pin grounded (radio channel buzy) node generate DTMF tone A for activating PTT of second side radio (or radios, if used conference). If CD pin ungrounded, node generate a B tone. This system will be very simple, possible to use different server platforms, gateways, node cost is Raspi 40eur, USB audio and UART is 8eur Same system in Freeswitch tested and works very fine! Could any help with making this addition module? I think, it may be interesting for other voip/roip users Thanks, Mihhail ES1BIS -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.osborn at manx.net Wed Aug 7 06:11:43 2013 From: david.osborn at manx.net (David and Rhianne Osborn) Date: Wed, 7 Aug 2013 07:11:43 +0100 Subject: [App_rpt-users] Bleeping Hub In-Reply-To: <90CB4798BA5341F195D666AEDA11E169@JimsLaptop> References: <006c01ce92db$6bef48a0$43cdd9e0$@manx.net> <7562AD96-C3F4-452C-883C-8A28B966D01C@me.com> <90CB4798BA5341F195D666AEDA11E169@JimsLaptop> Message-ID: <002b01ce9334$ffe34530$ffa9cf90$@manx.net> I omitted to clarify that this test was VMWare player and, to be honest, it does appear to sound and work OK, but I'll heed the advice that it may misbehave. If anyone could indulge my curiosity, though, where are these 6 beeps coming from? I disabled all CTs and also copied the rpt.conf from node 2483, which has run as a hub for a couple of years, and yet it still bleeps at me! If it's relevant, the test hub has a private node address and doesn't register with AllStar. So, where's the "beepy" bit? What's it telling me? Ta loads. David From: Jim W7RY [mailto:w7ry at centurytel.net] Sent: 07 August 2013 05:26 To: Tim Sawyer; David Osborn Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Bleeping Hub A node on VM Player works perfectly on a Windows 7 laptop. I have a node running on this Windows laptop. Why doesn't it work in VMWare? 73 Jim W7RY From: Tim Sawyer Sent: Tuesday, August 06, 2013 2:10 PM To: David Osborn Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Bleeping Hub Running asterisk on a VM is a no, no... it's not supported... it doesn't work... forget it... -- Tim :wq On Aug 6, 2013, at 12:30 PM, David Osborn wrote: Hey gang, Just goofing around, I wanted to see how well Allstar would play when configured as a hub node under VMWare. Well, it worked and I was able to make connections to other nodes, connect with IaxRPT and all that good stuff. The thing is, it likes to beep. When I connect the virtual hub to another node and then key that node, when I let go the button I get 6 rapid beeps followed by the courtesy beep from the node I'm accessing. I believe that these beeps are coming from the V-Hub, but can't figure out why. Anyone got any ideas on this one? Thanks David - GD4HOZ _______________________________________________ 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 tim.sawyer at me.com Wed Aug 7 14:07:36 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 07 Aug 2013 07:07:36 -0700 Subject: [App_rpt-users] Bleeping Hub In-Reply-To: <002b01ce9334$ffe34530$ffa9cf90$@manx.net> References: <006c01ce92db$6bef48a0$43cdd9e0$@manx.net> <7562AD96-C3F4-452C-883C-8A28B966D01C@me.com> <90CB4798BA5341F195D666AEDA11E169@JimsLaptop> <002b01ce9334$ffe34530$ffa9cf90$@manx.net> Message-ID: <3F9AA909-2462-494A-AF34-5BFFAB361894@me.com> Have you ever updated the source? https://allstarlink.org/support.html#astupgrade If not give it a try. -- Tim :wq On Aug 6, 2013, at 11:11 PM, David and Rhianne Osborn wrote: > I omitted to clarify that this test was VMWare player and, to be honest, it does appear to sound and work OK, but I?ll heed the advice that it may misbehave. > > If anyone could indulge my curiosity, though, where are these 6 beeps coming from? I disabled all CTs and also copied the rpt.conf from node 2483, which has run as a hub for a couple of years, and yet it still bleeps at me! If it?s relevant, the test hub has a private node address and doesn?t register with AllStar. > > So, where?s the ?beepy? bit? What?s it telling me? > > Ta loads. > > David > > > From: Jim W7RY [mailto:w7ry at centurytel.net] > Sent: 07 August 2013 05:26 > To: Tim Sawyer; David Osborn > Cc: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Bleeping Hub > > A node on VM Player works perfectly on a Windows 7 laptop. I have a node running on this Windows laptop. > > Why doesn't it work in VMWare? > > 73 > Jim W7RY > > > From: Tim Sawyer > Sent: Tuesday, August 06, 2013 2:10 PM > To: David Osborn > Cc: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Bleeping Hub > > Running asterisk on a VM is a no, no... it's not supported... it doesn't work... forget it... > -- > Tim > :wq > > On Aug 6, 2013, at 12:30 PM, David Osborn wrote: > > > Hey gang, > > Just goofing around, I wanted to see how well Allstar would play when configured as a hub node under VMWare. > > Well, it worked and I was able to make connections to other nodes, connect with IaxRPT and all that good stuff. The thing is, it likes to beep. > > When I connect the virtual hub to another node and then key that node, when I let go the button I get 6 rapid beeps followed by the courtesy beep from the node I?m accessing. > > I believe that these beeps are coming from the V-Hub, but can?t figure out why. > > Anyone got any ideas on this one? > > Thanks > > David ? GD4HOZ > > > _______________________________________________ > 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 w5omr at att.net Wed Aug 7 14:21:10 2013 From: w5omr at att.net (Geoff) Date: Wed, 07 Aug 2013 09:21:10 -0500 Subject: [App_rpt-users] Time In-Reply-To: <3AF67A06-6F5E-4DD5-8388-FD1F79EE29C2@bdboyle.com> References: <52FC0CC0D17542D6A7EE545177498302@LarryPC> <3AF67A06-6F5E-4DD5-8388-FD1F79EE29C2@bdboyle.com> Message-ID: <520257D6.9030401@att.net> On 08/01/2013 12:38 PM, Bryan D. Boyle wrote: > read a msg i sent last night...it's in there as one of my examples... >> Hello everyone, >> How do I setup my node to say time every hour. I'm using Acid on a >> neoware ca22. And where should I put it? N5zua sit this up for me a >> few years ago. So, seems to me, I need to to know the system and play >> with it. >> I've been wanting to do the same, but didn't really want the silly thing screaming the time all night long so, cron to the rescue! root at w5omr> crontab -e 0 6-22 * * 1-5 /usr/sbin/asterisk -rx "rpt fun 29655 *81" 0 8-22 * * 0,6 /usr/sbin/asterisk -rx "rpt fun 29655 *81" The first is to chime the hour, starting at 6am, and ending at 10pm, Mon - Fri. Weekends, we sleep in... start at 8am, end at 10pm, Saturday and Sunday. At least, that's -one- way of doing it. I'm sure it was you, Bryan, I have to thank for posting that commands could be passed to a running session of asterisk. That's when the light went off. Cron to the rescue ;-) This is useful also, if you want to setup times to link to specific nodes, at a specific time. Figure out the schedule and cron it. Here's a good link if some system operators would like to know about cron http://www.thegeekstuff.com/2009/06/15-practical-crontab-examples/ 73 = Best Regards, -Geoff/W5OMR -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Wed Aug 7 14:22:21 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 07 Aug 2013 07:22:21 -0700 Subject: [App_rpt-users] FAQ? In-Reply-To: References: Message-ID: There is a FAQ on ohnosec.org/drupal as well as a howto and a troubleshooting section. Granted it's dated in places but it's actually a pretty good resource. Give it a browse and let me know if you have any suggestions. -- Tim :wq On Aug 6, 2013, at 10:39 PM, Shane Morris wrote: > Do we have a FAQ anywhere? Might save people asking the common questions in the list. > > Thanks all. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From monty at ke7jvx.com Wed Aug 7 16:36:10 2013 From: monty at ke7jvx.com (Monty) Date: Wed, 7 Aug 2013 09:36:10 -0700 Subject: [App_rpt-users] Bleeping Hub In-Reply-To: <3F9AA909-2462-494A-AF34-5BFFAB361894@me.com> References: <006c01ce92db$6bef48a0$43cdd9e0$@manx.net> <7562AD96-C3F4-452C-883C-8A28B966D01C@me.com> <90CB4798BA5341F195D666AEDA11E169@JimsLaptop> <002b01ce9334$ffe34530$ffa9cf90$@manx.net> <3F9AA909-2462-494A-AF34-5BFFAB361894@me.com> Message-ID: I had some weird noises coming from a node I installed on VMplayer on my windows 7 machine aswell. In speaking with a few VM gurus they believed it was the time slicing VMplayer does that was causing it, and I was trying to use a URI. Now, your mileage may very, but I have a HUB node and a URIx connected to my Proxmox server and both work flawless. I did not do any custom modification to the install, but I did have to map the USB device to my Allstar VM through Proxmox. Monty On Wed, Aug 7, 2013 at 7:07 AM, Tim Sawyer wrote: > Have you ever updated the source? > https://allstarlink.org/support.html#astupgrade If not give it a try. > -- > Tim > :wq > > On Aug 6, 2013, at 11:11 PM, David and Rhianne Osborn < > david.osborn at manx.net> wrote: > > I omitted to clarify that this test was VMWare player and, to be honest, > it does appear to sound and work OK, but I?ll heed the advice that it may > misbehave.**** > > If anyone could indulge my curiosity, though, where are these 6 beeps > coming from? I disabled all CTs and also copied the rpt.conf from node > 2483, which has run as a hub for a couple of years, and yet it still bleeps > at me! If it?s relevant, the test hub has a private node address and > doesn?t register with AllStar.**** > > So, where?s the ?beepy? bit? What?s it telling me?**** > > Ta loads.**** > > David**** > > > *From:* Jim W7RY [mailto:w7ry at centurytel.net] > *Sent:* 07 August 2013 05:26 > *To:* Tim Sawyer; David Osborn > *Cc:* app_rpt-users at ohnosec.org > *Subject:* Re: [App_rpt-users] Bleeping Hub**** > ** ** > A node on VM Player works perfectly on a Windows 7 laptop. I have a node > running on this Windows laptop.**** > **** > Why doesn't it work in VMWare?**** > **** > 73**** > Jim W7RY**** > **** > **** > *From:* Tim Sawyer **** > *Sent:* Tuesday, August 06, 2013 2:10 PM**** > *To:* David Osborn **** > *Cc:* app_rpt-users at ohnosec.org**** > *Subject:* Re: [App_rpt-users] Bleeping Hub**** > **** > Running asterisk on a VM is a no, no... it's not supported... it doesn't > work... forget it...**** > -- > Tim > :wq**** > **** > On Aug 6, 2013, at 12:30 PM, David Osborn wrote:** > ** > > > **** > Hey gang,**** > **** > Just goofing around, I wanted to see how well Allstar would play when > configured as a hub node under VMWare.**** > **** > Well, it worked and I was able to make connections to other nodes, connect > with IaxRPT and all that good stuff. The thing is, it likes to beep.**** > **** > When I connect the virtual hub to another node and then key that node, > when I let go the button I get 6 rapid beeps followed by the courtesy beep > from the node I?m accessing.**** > **** > I believe that these beeps are coming from the V-Hub, but can?t figure out > why.**** > **** > Anyone got any ideas on this one?**** > **** > Thanks**** > **** > David ? GD4HOZ**** > **** > **** > _______________________________________________ > 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 tim.sawyer at me.com Wed Aug 7 16:50:55 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 07 Aug 2013 09:50:55 -0700 Subject: [App_rpt-users] Time In-Reply-To: <520257D6.9030401@att.net> References: <52FC0CC0D17542D6A7EE545177498302@LarryPC> <3AF67A06-6F5E-4DD5-8388-FD1F79EE29C2@bdboyle.com> <520257D6.9030401@att.net> Message-ID: <1101CAF0-61CF-4FF9-B3C5-6994408510BE@me.com> Having the availability to use cron is one of the many great things about app_rpt. Here are a couple entries from my crontab. The first plays the time once every 3 hours between 6am and 9pm everyday. The second entry announces our net on Mondays between 6:10am and 7:10pm. Both cron entries call scripts but the way Geoff did it is perfectly fine, it just a mater of preference. Also note the use of cmd and localplay rather than fun in these scripts. That way if the touch tones ever need to be changed the scripts will still run without modification. >crontab -l 00 6-21/3 * * * /root/bin/2532time.sh 10 6-19 * * 1 /root/bin/racesnettonight.sh Here are the scripts: >cat /root/bin/2532time.sh #! /bin/bash /usr/sbin/asterisk -rx "rpt cmd 2532 status 12 0" >cat /root/bin/racesnettonight.sh !# /bin/bash /usr/sbin/asterisk -rx "rpt localplay 2532 racesNet" -- Tim :wq On Aug 7, 2013, at 7:21 AM, Geoff wrote: > On 08/01/2013 12:38 PM, Bryan D. Boyle wrote: >> read a msg i sent last night...it's in there as one of my examples... >>> Hello everyone, >>> How do I setup my node to say time every hour. I'm using Acid on a neoware ca22. And where should I put it? N5zua sit this up for me a few years ago. So, seems to me, I need to to know the system and play with it. >>> > > I've been wanting to do the same, but didn't really want the silly thing screaming the time all night long so, cron to the rescue! > > root at w5omr> crontab -e > 0 6-22 * * 1-5 /usr/sbin/asterisk -rx "rpt fun 29655 *81" > 0 8-22 * * 0,6 /usr/sbin/asterisk -rx "rpt fun 29655 *81" > > The first is to chime the hour, starting at 6am, and ending at 10pm, Mon - Fri. > Weekends, we sleep in... start at 8am, end at 10pm, Saturday and Sunday. > > At least, that's -one- way of doing it. > > I'm sure it was you, Bryan, I have to thank for posting that commands could be passed to a running session of asterisk. That's when the light went off. Cron to the rescue ;-) > > This is useful also, if you want to setup times to link to specific nodes, at a specific time. Figure out the schedule and cron it. > > Here's a good link if some system operators would like to know about cron > http://www.thegeekstuff.com/2009/06/15-practical-crontab-examples/ > > > 73 = Best Regards, > -Geoff/W5OMR > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Wed Aug 7 16:53:05 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 07 Aug 2013 09:53:05 -0700 Subject: [App_rpt-users] Bleeping Hub In-Reply-To: <201308071442.EHS98839@manxnetsf06.manx.net> References: <201308071442.EHS98839@manxnetsf06.manx.net> Message-ID: <646B8DF3-157D-4B3F-AB74-52082961BCEF@me.com> The latest code is not pulled during installation. Always update after a fresh install. -- Tim :wq On Aug 7, 2013, at 7:42 AM, David Osborn wrote: > I have done this on many occasions but, now you mention it, I think that I haven't done it in this instance. > > I must have thought that the latest was pulled down during installation - perhaps not. > > Thanks for indulging a tinkerer :-) > From: Tim Sawyer > Sent: 07/08/2013 15:07 > To: app_rpt-users at ohnosec.org Users > Subject: Re: [App_rpt-users] Bleeping Hub > > Have you ever updated the source? https://allstarlink.org/support.html#astupgrade If not give it a try. > -- > Tim > :wq > > On Aug 6, 2013, at 11:11 PM, David and Rhianne Osborn wrote: > >> I omitted to clarify that this test was VMWare player and, to be honest, it does appear to sound and work OK, but I?ll heed the advice that it may misbehave. >> >> If anyone could indulge my curiosity, though, where are these 6 beeps coming from? I disabled all CTs and also copied the rpt.conf from node 2483, which has run as a hub for a couple of years, and yet it still bleeps at me! If it?s relevant, the test hub has a private node address and doesn?t register with AllStar. >> >> So, where?s the ?beepy? bit? What?s it telling me? >> >> Ta loads. >> >> David >> >> >> From: Jim W7RY [mailto:w7ry at centurytel.net] >> Sent: 07 August 2013 05:26 >> To: Tim Sawyer; David Osborn >> Cc: app_rpt-users at ohnosec.org >> Subject: Re: [App_rpt-users] Bleeping Hub >> >> A node on VM Player works perfectly on a Windows 7 laptop. I have a node running on this Windows laptop. >> >> Why doesn't it work in VMWare? >> >> 73 >> Jim W7RY >> >> >> From: Tim Sawyer >> Sent: Tuesday, August 06, 2013 2:10 PM >> To: David Osborn >> Cc: app_rpt-users at ohnosec.org >> Subject: Re: [App_rpt-users] Bleeping Hub >> >> Running asterisk on a VM is a no, no... it's not supported... it doesn't work... forget it... >> -- >> Tim >> :wq >> >> On Aug 6, 2013, at 12:30 PM, David Osborn wrote: >> >> >> Hey gang, >> >> Just goofing around, I wanted to see how well Allstar would play when configured as a hub node under VMWare. >> >> Well, it worked and I was able to make connections to other nodes, connect with IaxRPT and all that good stuff. The thing is, it likes to beep. >> >> When I connect the virtual hub to another node and then key that node, when I let go the button I get 6 rapid beeps followed by the courtesy beep from the node I?m accessing. >> >> I believe that these beeps are coming from the V-Hub, but can?t figure out why. >> >> Anyone got any ideas on this one? >> >> Thanks >> >> David ? GD4HOZ >> >> >> _______________________________________________ >> 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 bdboyle at bdboyle.com Wed Aug 7 17:43:00 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Wed, 07 Aug 2013 13:43:00 -0400 Subject: [App_rpt-users] Time In-Reply-To: <1101CAF0-61CF-4FF9-B3C5-6994408510BE@me.com> References: <52FC0CC0D17542D6A7EE545177498302@LarryPC> <3AF67A06-6F5E-4DD5-8388-FD1F79EE29C2@bdboyle.com> <520257D6.9030401@att.net> <1101CAF0-61CF-4FF9-B3C5-6994408510BE@me.com> Message-ID: <52028724.3090602@bdboyle.com> On 8/7/2013 12:50 PM, Tim Sawyer wrote: > Having the availability to use cron is one of the many great things about app_rpt. On 8/7/2013 12:50 PM, Tim Sawyer wrote: > Having the availability to use cron is one of the many great things > about app_rpt. Absolutely right, Tim, and, IMHO, what sets a* apart from the iron-monger controllers (no insult implied to those wedded to them...just a fact) but is also what does tend to scare non-bit-bangers away from it. It's almost TOO flexible. being able to chronologically (hence 'cron') schedule events on an OS level, pass values to running processes, and write code in whatever flavor (sh? bash? cshell? PERL? awk? etc) to do things apart and in support of the core a* application makes this thing so powerful. For instance, and not to hijack the thread...I grab text weather via wget scripts, parse the text with perl, run through cepstral, and call it via DTMF codes (or, in the case of new alerts, play immediately) 24x7. Imagine my surprise a couple years ago, driving cross country, and hearing the same thing (weather alert...) in pretty much the same order and obviously derived from my initial attempts, on a machine half way between here and KC? Neat stuff. Other scripts download Newsline, break into 3 minute chunks, and store for playback with proper IDs at top and bottom. Still working on perfecting it. Look at Tim's Allmon. Simple web app, powerful implications. Others reset the OS once a week, and refresh, from the cronjob, the links, and reset my link config during nets that I don't participate in but are run on other portions of the net. I have some authorization-required and encrypted and protected web pages that take that to the next level and allow me to re-config my net connections, join nodes, reset the system from my mobile phone. And, it's all done through imagination, scripting, passing values to asterisk, resetting conf files, etc. Only IS limited by your imagination; remember, you're not running an embedded application with no accessible OS underneath it. You're running an application on top of a flexible and powerful operating system with a long history of being able to do what it needs to do. So, just jump in and try it. BB From david.osborn at manx.net Wed Aug 7 18:30:22 2013 From: david.osborn at manx.net (David Osborn) Date: Wed, 7 Aug 2013 19:30:22 +0100 Subject: [App_rpt-users] Bleeping Hub In-Reply-To: <646B8DF3-157D-4B3F-AB74-52082961BCEF@me.com> References: <201308071442.EHS98839@manxnetsf06.manx.net> <646B8DF3-157D-4B3F-AB74-52082961BCEF@me.com> Message-ID: <006501ce939c$2e380e90$8aa82bb0$@manx.net> Ok, all updated to be as fresh as a very fresh thing after it's been refreshed. Still "Beep Beep Beep Beep Beep Beep". Puzzling. From: Tim Sawyer [mailto:tim.sawyer at me.com] Sent: 07 August 2013 17:53 To: app_rpt-users at ohnosec.org list Subject: Re: [App_rpt-users] Bleeping Hub The latest code is not pulled during installation. Always update after a fresh install. -- Tim :wq On Aug 7, 2013, at 7:42 AM, David Osborn wrote: I have done this on many occasions but, now you mention it, I think that I haven't done it in this instance. I must have thought that the latest was pulled down during installation - perhaps not. Thanks for indulging a tinkerer :-) _____ From: Tim Sawyer Sent: 07/08/2013 15:07 To: app_rpt-users at ohnosec.org Users Subject: Re: [App_rpt-users] Bleeping Hub Have you ever updated the source? https://allstarlink.org/support.html#astupgrade If not give it a try. -- Tim :wq On Aug 6, 2013, at 11:11 PM, David and Rhianne Osborn wrote: I omitted to clarify that this test was VMWare player and, to be honest, it does appear to sound and work OK, but I'll heed the advice that it may misbehave. If anyone could indulge my curiosity, though, where are these 6 beeps coming from? I disabled all CTs and also copied the rpt.conf from node 2483, which has run as a hub for a couple of years, and yet it still bleeps at me! If it's relevant, the test hub has a private node address and doesn't register with AllStar. So, where's the "beepy" bit? What's it telling me? Ta loads. David From: Jim W7RY [mailto:w7ry at centurytel.net ] Sent: 07 August 2013 05:26 To: Tim Sawyer; David Osborn Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Bleeping Hub A node on VM Player works perfectly on a Windows 7 laptop. I have a node running on this Windows laptop. Why doesn't it work in VMWare? 73 Jim W7RY From: Tim Sawyer Sent: Tuesday, August 06, 2013 2:10 PM To: David Osborn Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Bleeping Hub Running asterisk on a VM is a no, no... it's not supported... it doesn't work... forget it... -- Tim :wq On Aug 6, 2013, at 12:30 PM, David Osborn < david.osborn at manx.net> wrote: Hey gang, Just goofing around, I wanted to see how well Allstar would play when configured as a hub node under VMWare. Well, it worked and I was able to make connections to other nodes, connect with IaxRPT and all that good stuff. The thing is, it likes to beep. When I connect the virtual hub to another node and then key that node, when I let go the button I get 6 rapid beeps followed by the courtesy beep from the node I'm accessing. I believe that these beeps are coming from the V-Hub, but can't figure out why. Anyone got any ideas on this one? Thanks David - GD4HOZ _______________________________________________ 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 david at k0pwo.com Wed Aug 7 18:30:19 2013 From: david at k0pwo.com (David Dean) Date: Wed, 07 Aug 2013 12:30:19 -0600 Subject: [App_rpt-users] Question Regarding My Node Connectivity Message-ID: <5202923B.2070709@k0pwo.com> Hello to the group. I am working on my first node and I am unable to make a connection to another node using my radio. I am able to connect to other nodes when using the CLI without problem. But when using the keypad on a radio I get nothing. When transmitting tones on a radio keypad and watching the CLI instead of seeing the coorect dtmf tone I see the following message "-- Hungup 'Zap/pseudo-879579846' -- Hungup 'Zap/pseduo-1210393799' -- Hungup 'Zap/pseduo-441974974' And that is it. Can someone tell me if I have a file that is messed up, missing or possibly it is my host radio connected to the node. Thanks, David -- David Dean, K0PWO Arapahoe County, Colorado (720) 350-2053 cell From petem001 at hotmail.com Wed Aug 7 18:56:40 2013 From: petem001 at hotmail.com (pete M) Date: Wed, 7 Aug 2013 14:56:40 -0400 Subject: [App_rpt-users] Question Regarding My Node Connectivity In-Reply-To: <5202923B.2070709@k0pwo.com> References: <5202923B.2070709@k0pwo.com> Message-ID: what radio are you using for your test, receiver and transmiter. did you do the audio level tuning? are you using radio usb or simple usb? Envoy? de mon iPad Le 2013-08-07 ? 14:35, "David Dean" a ?crit : > Hello to the group. > > I am working on my first node and I am unable to make a connection to another node using my radio. I am able to connect to other nodes when using the CLI without problem. But when using the keypad on a radio I get nothing. > > When transmitting tones on a radio keypad and watching the CLI instead of seeing the coorect dtmf tone I see the following message > > "-- Hungup 'Zap/pseudo-879579846' > -- Hungup 'Zap/pseduo-1210393799' > -- Hungup 'Zap/pseduo-441974974' > > And that is it. > > Can someone tell me if I have a file that is messed up, missing or possibly it is my host radio connected to the node. > > Thanks, > > David > -- > David Dean, K0PWO Arapahoe County, Colorado (720) 350-2053 cell > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From Ramesh at va3uv.com Wed Aug 7 18:57:45 2013 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Wed, 07 Aug 2013 14:57:45 -0400 Subject: [App_rpt-users] Bleeping Hub In-Reply-To: <006501ce939c$2e380e90$8aa82bb0$@manx.net> References: <201308071442.EHS98839@manxnetsf06.manx.net> <646B8DF3-157D-4B3F-AB74-52082961BCEF@me.com> <006501ce939c$2e380e90$8aa82bb0$@manx.net> Message-ID: <520298A9.50304@va3uv.com> On 07/08/2013 2:30 PM, David Osborn wrote: > Ok, all updated to be as fresh as a very fresh thing after it?s been > refreshed. > > Still ?Beep Beep Beep Beep Beep Beep?. Puzzling. > <-- Hi David; Let's have a look at your rpt.conf file... Cheers, Ramesh. From mdodd at doddserver.com Wed Aug 7 21:44:12 2013 From: mdodd at doddserver.com (Matthew Dodd) Date: Wed, 7 Aug 2013 17:44:12 -0400 Subject: [App_rpt-users] Bleeping Hub In-Reply-To: References: <006c01ce92db$6bef48a0$43cdd9e0$@manx.net> <7562AD96-C3F4-452C-883C-8A28B966D01C@me.com> <90CB4798BA5341F195D666AEDA11E169@JimsLaptop> <002b01ce9334$ffe34530$ffa9cf90$@manx.net> <3F9AA909-2462-494A-AF34-5BFFAB361894@me.com> Message-ID: <1FA67CF3-2054-4CAB-959D-A139D52D4AD5@doddserver.com> > On Aug 7, 2013, at 12:36 PM, Monty wrote: > > I had some weird noises coming from a node I installed on VMplayer on my windows 7 machine aswell. In speaking with a few VM gurus they believed it was the time slicing VMplayer does that was causing it, and I was trying to use a URI. Now, your mileage may very, but I have a HUB node and a URIx connected to my Proxmox server and both work flawless. I did not do any custom modification to the install, but I did have to map the USB device to my Allstar VM through Proxmox. > > Monty > > >> On Wed, Aug 7, 2013 at 7:07 AM, Tim Sawyer wrote: >> Have you ever updated the source? https://allstarlink.org/support.html#astupgrade If not give it a try. >> -- >> Tim >> :wq >> >>> On Aug 6, 2013, at 11:11 PM, David and Rhianne Osborn wrote: >>> >>> I omitted to clarify that this test was VMWare player and, to be honest, it does appear to sound and work OK, but I?ll heed the advice that it may misbehave. >>> >>> If anyone could indulge my curiosity, though, where are these 6 beeps coming from? I disabled all CTs and also copied the rpt.conf from node 2483, which has run as a hub for a couple of years, and yet it still bleeps at me! If it?s relevant, the test hub has a private node address and doesn?t register with AllStar. >>> >>> So, where?s the ?beepy? bit? What?s it telling me? >>> >>> Ta loads. >>> >>> David >>> >>> >>> From: Jim W7RY [mailto:w7ry at centurytel.net] >>> Sent: 07 August 2013 05:26 >>> To: Tim Sawyer; David Osborn >>> Cc: app_rpt-users at ohnosec.org >>> Subject: Re: [App_rpt-users] Bleeping Hub >>> >>> A node on VM Player works perfectly on a Windows 7 laptop. I have a node running on this Windows laptop. >>> >>> Why doesn't it work in VMWare? >>> >>> 73 >>> Jim W7RY >>> >>> >>> From: Tim Sawyer >>> Sent: Tuesday, August 06, 2013 2:10 PM >>> To: David Osborn >>> Cc: app_rpt-users at ohnosec.org >>> Subject: Re: [App_rpt-users] Bleeping Hub >>> >>> Running asterisk on a VM is a no, no... it's not supported... it doesn't work... forget it... >>> -- >>> Tim >>> :wq >>> >>> On Aug 6, 2013, at 12:30 PM, David Osborn wrote: >>> >>> >>> Hey gang, >>> >>> Just goofing around, I wanted to see how well Allstar would play when configured as a hub node under VMWare. >>> >>> Well, it worked and I was able to make connections to other nodes, connect with IaxRPT and all that good stuff. The thing is, it likes to beep. >>> >>> When I connect the virtual hub to another node and then key that node, when I let go the button I get 6 rapid beeps followed by the courtesy beep from the node I?m accessing. >>> >>> I believe that these beeps are coming from the V-Hub, but can?t figure out why. >>> >>> Anyone got any ideas on this one? >>> >>> Thanks >>> >>> David ? GD4HOZ >>> >>> >>> _______________________________________________ >>> 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 Ramesh at va3uv.com Thu Aug 8 01:42:10 2013 From: Ramesh at va3uv.com (Ramesh Dhami) Date: Wed, 7 Aug 2013 21:42:10 -0400 Subject: [App_rpt-users] Question Regarding My Node Connectivity In-Reply-To: References: <5202923B.2070709@k0pwo.com> Message-ID: Sounds like the system may be configured for full duplex, with a single radio attached (more than likely for a simplex application). Check the duplex value in rpt.conf Ramesh. Sent from my iPhone On 2013-08-07, at 2:56 PM, pete M wrote: > what radio are you using for your test, receiver and transmiter. > > did you do the audio level tuning? > > are you using radio usb or simple usb? > > > > Envoy? de mon iPad > > Le 2013-08-07 ? 14:35, "David Dean" a ?crit : > >> Hello to the group. >> >> I am working on my first node and I am unable to make a connection to another node using my radio. I am able to connect to other nodes when using the CLI without problem. But when using the keypad on a radio I get nothing. >> >> When transmitting tones on a radio keypad and watching the CLI instead of seeing the coorect dtmf tone I see the following message >> >> "-- Hungup 'Zap/pseudo-879579846' >> -- Hungup 'Zap/pseduo-1210393799' >> -- Hungup 'Zap/pseduo-441974974' >> >> And that is it. >> >> Can someone tell me if I have a file that is messed up, missing or possibly it is my host radio connected to the node. >> >> Thanks, >> >> David >> -- >> David Dean, K0PWO Arapahoe County, Colorado (720) 350-2053 cell >> _______________________________________________ >> 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 n5uxt at hotmail.com Thu Aug 8 11:48:45 2013 From: n5uxt at hotmail.com (Angelo Glorioso) Date: Thu, 8 Aug 2013 06:48:45 -0500 Subject: [App_rpt-users] Echolink Server Message-ID: Hi All, I have noticed this is the message log and was wondering if this is normal??? [Aug 7 20:45:49] ERROR[8161] chan_echolink.c: connect() failed to connect to the Echolink server server2.echolink.org If it is normal, should I comment out the server name in the echolink.conf?? Angelo -------------- next part -------------- An HTML attachment was scrubbed... URL: From keith at goobie.org Thu Aug 8 12:04:23 2013 From: keith at goobie.org (Keith Goobie) Date: Thu, 08 Aug 2013 08:04:23 -0400 Subject: [App_rpt-users] Echolink Server In-Reply-To: Message-ID: If you have a number of servers defined, then it is just telling you a connection to one has failed and you should see messaging that it has moved on to another. You should have more than one defined. I have server 1, 3 & 5 in my listing. Keith On 8/8/13 7:48 AM, "Angelo Glorioso" wrote: > Hi All, > > I have noticed this is the message log and was wondering if this is normal??? > > [Aug 7 20:45:49] ERROR[8161] chan_echolink.c: connect() failed to connect to > the Echolink server server2.echolink.org > > If it is normal, should I comment out the server name in the echolink.conf?? > > > > Angelo > > > > > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- keith at goobie.org Keith Goobie Richmond Hill, ON, CANADA -------------- next part -------------- An HTML attachment was scrubbed... URL: From jrh at g0fhm.co.uk Thu Aug 8 13:00:25 2013 From: jrh at g0fhm.co.uk (James Hill) Date: Thu, 08 Aug 2013 14:00:25 +0100 Subject: [App_rpt-users] Echolink Server In-Reply-To: References: Message-ID: <52039668.9010302@g0fhm.co.uk> On 08/08/2013 13:04, Keith Goobie wrote: > Re: [App_rpt-users] Echolink Server If you have a number of servers > defined, then it is just telling you a connection to one has failed > and you should see messaging that it has moved on to another. You > should have more than one defined. > > I have server 1, 3 & 5 in my listing. > > Keith > > Mine does that, and if I comment the server out to prevent the constant log message, it won't connect to Echolink at all! Weird! J 29681 -------------- next part -------------- An HTML attachment was scrubbed... URL: From n8ohu at yahoo.com Thu Aug 8 13:37:36 2013 From: n8ohu at yahoo.com (Matthew) Date: Thu, 08 Aug 2013 09:37:36 -0400 Subject: [App_rpt-users] Echolink Server Message-ID: An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Thu Aug 8 13:57:06 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Thu, 08 Aug 2013 06:57:06 -0700 Subject: [App_rpt-users] Time In-Reply-To: <52037EF5.5010704@att.net> References: <52FC0CC0D17542D6A7EE545177498302@LarryPC> <3AF67A06-6F5E-4DD5-8388-FD1F79EE29C2@bdboyle.com> <520257D6.9030401@att.net> <1101CAF0-61CF-4FF9-B3C5-6994408510BE@me.com> <52037EF5.5010704@att.net> Message-ID: Drop the file name extension. It's documented here http://ohnosec.org/drupal/node/142 -- Tim :wq On Aug 8, 2013, at 4:20 AM, Geoff wrote: > On 08/07/2013 11:50 AM, Tim Sawyer wrote: >> >> Both cron entries call scripts but the way Geoff did it is perfectly fine, it just a mater of preference. Also note the use of cmd and localplay rather than fun in these scripts. That way if the touch tones ever need to be changed the scripts will still run without modification. > > I get an error when I try to use localplay... > > W5OMR*CLI> rpt localplay 29655 /var/lib/asterisk/sounds/rpt/timeout-warning.ulaw > [Aug 8 06:18:51] WARNING[26450]: file.c:602 ast_openstream_full: File /var/lib/asterisk/sounds/rpt/timeout-warning.ulaw does not exist in any format > [Aug 8 06:18:51] WARNING[26450]: file.c:912 ast_streamfile: Unable to open /var/lib/asterisk/sounds/rpt/timeout-warning.ulaw (format 0x44 (ulaw|slin)): No such file or directory > [Aug 8 06:18:51] WARNING[26450]: app_rpt.c:9528 rpt_tele_thread: ast_streamfile failed on Zap/pseudo-1371677837 > -- Hungup 'Zap/pseudo-1371677837' > > whassup wit dat? > ;-) > > -Geoff/W5OMR > -------------- next part -------------- An HTML attachment was scrubbed... URL: From w5omr at att.net Thu Aug 8 14:11:12 2013 From: w5omr at att.net (Geoff) Date: Thu, 08 Aug 2013 09:11:12 -0500 Subject: [App_rpt-users] Echolink Server In-Reply-To: References: Message-ID: <5203A700.1010301@att.net> On 08/08/2013 06:48 AM, Angelo Glorioso wrote: > Hi All, > I have noticed this is the message log and was wondering if this is > normal??? I did. My /var/log/messages was filling up, and rotating till the point I have 4 archives of a half-meg each, all filled with the same error. I removed the line from the echolink.conf file. -Geoff/W5OMR -------------- next part -------------- An HTML attachment was scrubbed... URL: From w5omr at att.net Thu Aug 8 17:19:02 2013 From: w5omr at att.net (Geoff) Date: Thu, 08 Aug 2013 12:19:02 -0500 Subject: [App_rpt-users] Echolink Server In-Reply-To: <5203A700.1010301@att.net> References: <5203A700.1010301@att.net> Message-ID: <5203D306.4010300@att.net> On 08/08/2013 09:11 AM, Geoff wrote: > On 08/08/2013 06:48 AM, Angelo Glorioso wrote: >> Hi All, >> I have noticed this is the message log and was wondering if this is >> normal??? > > I did. My /var/log/messages was filling up, and rotating till the > point I have 4 archives of a half-meg each, all filled with the same > error. > > I removed the line from the echolink.conf file. > > -Geoff/W5OMR I, too, have discovered by removing server2 from echolink.conf keeps me from logging into echolink. what the he**? -------------- next part -------------- An HTML attachment was scrubbed... URL: From n5zua at earthlink.net Thu Aug 8 17:30:44 2013 From: n5zua at earthlink.net (Steve Agee) Date: Thu, 8 Aug 2013 12:30:44 -0500 Subject: [App_rpt-users] Echolink Server References: <5203A700.1010301@att.net> <5203D306.4010300@att.net> Message-ID: Echolink Server number 2 no longer exits. Edit the line to read: server2=server3.echolink.org N5ZUA ----- Original Message ----- From: Geoff To: app_rpt-users at ohnosec.org Sent: Thursday, August 08, 2013 12:19 PM Subject: Re: [App_rpt-users] Echolink Server On 08/08/2013 09:11 AM, Geoff wrote: On 08/08/2013 06:48 AM, Angelo Glorioso wrote: Hi All, I have noticed this is the message log and was wondering if this is normal??? I did. My /var/log/messages was filling up, and rotating till the point I have 4 archives of a half-meg each, all filled with the same error. I removed the line from the echolink.conf file. -Geoff/W5OMR I, too, have discovered by removing server2 from echolink.conf keeps me from logging into echolink. what the he**? From jrh at g0fhm.co.uk Thu Aug 8 17:43:41 2013 From: jrh at g0fhm.co.uk (James Hill) Date: Thu, 08 Aug 2013 18:43:41 +0100 Subject: [App_rpt-users] Echolink Server Message-ID: <6i2vxq4a1gxafg76j9eqqlg9.1375983821463@email.android.com> I changed my 2nd line to server5.echolink.org and all is well! Sent from my Xperia? smartphone Steve Agee wrote: >Echolink Server number 2 no longer exits. Edit the line to read: > >server2=server3.echolink.org > >N5ZUA > >----- Original Message ----- >From: Geoff >To: app_rpt-users at ohnosec.org >Sent: Thursday, August 08, 2013 12:19 PM >Subject: Re: [App_rpt-users] Echolink Server > >On 08/08/2013 09:11 AM, Geoff wrote: > >On 08/08/2013 06:48 AM, Angelo Glorioso wrote: > >Hi All, > > I have noticed this is the message log and was wondering if this is >normal??? > >I did. My /var/log/messages was filling up, and rotating till the point I >have 4 archives of a half-meg each, all filled with the same error. > >I removed the line from the echolink.conf file. > >-Geoff/W5OMR > >I, too, have discovered by removing server2 from echolink.conf keeps me from >logging into echolink. what the he**? > >_______________________________________________ >App_rpt-users mailing list >App_rpt-users at ohnosec.org >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From w5omr at att.net Thu Aug 8 17:59:27 2013 From: w5omr at att.net (Geoff) Date: Thu, 08 Aug 2013 12:59:27 -0500 Subject: [App_rpt-users] Echolink Server In-Reply-To: <5203D306.4010300@att.net> References: <5203A700.1010301@att.net> <5203D306.4010300@att.net> Message-ID: <5203DC7F.7080908@att.net> As of this writing, I've discovered by a simple ping test, that 2 of 5 echolink servers are down. They are server2.echolink.org and server4.echolink.org Now, a simple ping test isn't all that inclusive, but it stands to reason (doesn't it?) that if 1, 3 and 5 respond to icmp requests, that 2 and 4 (if they were alive) would, as well? Just logic kickin' in. adjusting /etc/asterisk/echolink.conf accordingly -Geoff/W5OMR From tim.sawyer at me.com Thu Aug 8 18:03:41 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Thu, 08 Aug 2013 11:03:41 -0700 Subject: [App_rpt-users] Time In-Reply-To: <5203D1D3.5070001@att.net> References: <52FC0CC0D17542D6A7EE545177498302@LarryPC> <3AF67A06-6F5E-4DD5-8388-FD1F79EE29C2@bdboyle.com> <520257D6.9030401@att.net> <1101CAF0-61CF-4FF9-B3C5-6994408510BE@me.com> <52037EF5.5010704@att.net> <5203D1D3.5070001@att.net> Message-ID: <7B5F94C2-84B6-4A55-8F5F-8EA9B2618BE3@me.com> Yes, that should work and it does for me. Maybe your file format is bad. Also be sure you have updated source. Also, please post and reply to the app_rpt list so that other may benefit from, or partake in the discussion. Huntington*CLI> rpt localplay 2523 wd6awprepeater -- Playing 'wd6awprepeater' (language 'en') -- Hungup 'Zap/pseudo-996666204' Huntington*CLI> -- Tim :wq On Aug 8, 2013, at 10:13 AM, Geoff wrote: > that being said, if all sounds are in /var/lib/asterisk/sounds/ then, (logically thinking) shouldn't > > CLI> rpt localplay [node_number] filename > > work? -------------- next part -------------- An HTML attachment was scrubbed... URL: From ve3elb at yahoo.com Thu Aug 8 18:16:22 2013 From: ve3elb at yahoo.com (Vince P) Date: Thu, 8 Aug 2013 14:16:22 -0400 Subject: [App_rpt-users] Echolink Server In-Reply-To: <5203DC7F.7080908@att.net> References: <5203A700.1010301@att.net> <5203D306.4010300@att.net> <5203DC7F.7080908@att.net> Message-ID: <82A2169C-8C3C-47C4-A85D-858BD3EC1DAF@yahoo.com> Change all Echolink Servers to these and everything should be fine. I have been running these for many years now and never had any problems. naeast.echolink.org nasouth.echolink.org servers.echolink.org backup.echolink.org Vince VE3ELB On 2013-08-08, at 1:59 PM, Geoff wrote: > As of this writing, I've discovered by a simple ping test, that 2 of 5 echolink servers are down. > > They are > server2.echolink.org > and > server4.echolink.org > > Now, a simple ping test isn't all that inclusive, but it stands to reason (doesn't it?) that if 1, 3 and 5 respond to icmp requests, that 2 and 4 (if they were alive) would, as well? > > Just logic kickin' in. > > adjusting /etc/asterisk/echolink.conf accordingly > > -Geoff/W5OMR > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From petem001 at hotmail.com Thu Aug 8 19:40:32 2013 From: petem001 at hotmail.com (pete M) Date: Thu, 8 Aug 2013 15:40:32 -0400 Subject: [App_rpt-users] Echolink Server In-Reply-To: <82A2169C-8C3C-47C4-A85D-858BD3EC1DAF@yahoo.com> References: <5203A700.1010301@att.net> <5203D306.4010300@att.net> <5203DC7F.7080908@att.net> <82A2169C-8C3C-47C4-A85D-858BD3EC1DAF@yahoo.com> Message-ID: thats what I use , but from time to time it will disconnect, the only way It will connect back is by restating the asterisk service. Envoy? de mon iPad Le 2013-08-08 ? 14:16, "Vince P" a ?crit : > Change all Echolink Servers to these and everything should be fine. I have been running these for many years now and never had any problems. > > naeast.echolink.org > nasouth.echolink.org > servers.echolink.org > backup.echolink.org > > > Vince VE3ELB > > On 2013-08-08, at 1:59 PM, Geoff wrote: > >> As of this writing, I've discovered by a simple ping test, that 2 of 5 echolink servers are down. >> >> They are >> server2.echolink.org >> and >> server4.echolink.org >> >> Now, a simple ping test isn't all that inclusive, but it stands to reason (doesn't it?) that if 1, 3 and 5 respond to icmp requests, that 2 and 4 (if they were alive) would, as well? >> >> Just logic kickin' in. >> >> adjusting /etc/asterisk/echolink.conf accordingly >> >> -Geoff/W5OMR >> _______________________________________________ >> 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 bdboyle at bdboyle.com Thu Aug 8 20:01:57 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Thu, 8 Aug 2013 16:01:57 -0400 Subject: [App_rpt-users] Echolink Server In-Reply-To: References: <5203A700.1010301@att.net> <5203D306.4010300@att.net> <5203DC7F.7080908@att.net> <82A2169C-8C3C-47C4-A85D-858BD3EC1DAF@yahoo.com> Message-ID: <0291D74B-85D7-42BB-AC96-91680BE3BA5C@bdboyle.com> grumpy comment re echolink: ossified technology with users about as annoying as habitual kerchunkers and hams who think that 'technician' license means they're qualified to pull out their golden screwdrivers to 'improve' their rigs. -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Aug 8, 2013, at 15:40, pete M wrote: > thats what I use , but from time to time it will disconnect, the only way It will connect back is by restating the asterisk service. > > Envoy? de mon iPad > > Le 2013-08-08 ? 14:16, "Vince P" a ?crit : > >> Change all Echolink Servers to these and everything should be fine. I have been running these for many years now and never had any problems. >> >> naeast.echolink.org >> nasouth.echolink.org >> servers.echolink.org >> backup.echolink.org >> >> >> Vince VE3ELB >> >> On 2013-08-08, at 1:59 PM, Geoff wrote: >> >>> As of this writing, I've discovered by a simple ping test, that 2 of 5 echolink servers are down. >>> >>> They are >>> server2.echolink.org >>> and >>> server4.echolink.org >>> >>> Now, a simple ping test isn't all that inclusive, but it stands to reason (doesn't it?) that if 1, 3 and 5 respond to icmp requests, that 2 and 4 (if they were alive) would, as well? >>> >>> Just logic kickin' in. >>> >>> adjusting /etc/asterisk/echolink.conf accordingly >>> >>> -Geoff/W5OMR >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at ohnosec.org >>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From jrh at g0fhm.co.uk Thu Aug 8 20:19:32 2013 From: jrh at g0fhm.co.uk (James Hill) Date: Thu, 08 Aug 2013 21:19:32 +0100 Subject: [App_rpt-users] Echolink Server Message-ID: My Echolink side is locked down tight - only RF links are allowed to connect, and a chosen few friends who have the common sense to ensure their audio is set up correctly before they TX! Plus I got fed up with constant connects/disconnects with nobody saying a word! James 29681 Sent from my Xperia? smartphone "Bryan D. Boyle" wrote: >grumpy comment re echolink: ossified technology with users about as annoying as habitual kerchunkers and hams who think that 'technician' license means they're qualified to pull out their golden screwdrivers to 'improve' their rigs. > >-- >Bryan >Sent from my iPhone 5...small >keyboard, big fingers...please >forgive misspellings... > > > >On Aug 8, 2013, at 15:40, pete M wrote: > >> thats what I use , but from time to time it will disconnect, the only way It will connect back is by restating the asterisk service. >> >> Envoy? de mon iPad >> >> Le 2013-08-08 ? 14:16, "Vince P" a ?crit : >> >>> Change all Echolink Servers to these and everything should be fine. I have been running these for many years now and never had any problems. >>> >>> naeast.echolink.org >>> nasouth.echolink.org >>> servers.echolink.org >>> backup.echolink.org >>> >>> >>> Vince VE3ELB >>> >>> On 2013-08-08, at 1:59 PM, Geoff wrote: >>> >>>> As of this writing, I've discovered by a simple ping test, that 2 of 5 echolink servers are down. >>>> >>>> They are >>>> server2.echolink.org >>>> and >>>> server4.echolink.org >>>> >>>> Now, a simple ping test isn't all that inclusive, but it stands to reason (doesn't it?) that if 1, 3 and 5 respond to icmp requests, that 2 and 4 (if they were alive) would, as well? >>>> >>>> Just logic kickin' in. >>>> >>>> adjusting /etc/asterisk/echolink.conf accordingly >>>> >>>> -Geoff/W5OMR >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at ohnosec.org >>>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at ohnosec.org >>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >_______________________________________________ >App_rpt-users mailing list >App_rpt-users at ohnosec.org >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From hammin75 at gmail.com Fri Aug 9 02:48:30 2013 From: hammin75 at gmail.com (Bradley Haney) Date: Thu, 8 Aug 2013 21:48:30 -0500 Subject: [App_rpt-users] Incoming dial plan when using your own SIP provider. Message-ID: Hello all.. got my system set up for outgoing calls through my own SIP provider and i got it working good. WHo could point me in the correct direction on making a dial plan for incoming calls from my sip provider.. I would like for it to ring the repeater so then we can pick up the call.. Thanks for your help.. Bradley -------------- next part -------------- An HTML attachment was scrubbed... URL: From harvey at fmtc.com Fri Aug 9 04:11:47 2013 From: harvey at fmtc.com (harvey easton) Date: Thu, 8 Aug 2013 22:11:47 -0600 Subject: [App_rpt-users] Parade and cards Message-ID: Hope the parade went well. I am sorry that I could not go, but Berniece has put her foot down on me fighting the heat. Hope you guys survived ok. If you don't have family plans, we are open for cards, our place Saturday evening. 73 Harvey PS I blew out the diodes in antenna tuner again. I can't be trusted with a AMP I guess. -------------- next part -------------- An HTML attachment was scrubbed... URL: From w5omr at att.net Fri Aug 9 11:53:17 2013 From: w5omr at att.net (Geoff) Date: Fri, 09 Aug 2013 06:53:17 -0500 Subject: [App_rpt-users] Parade and cards In-Reply-To: References: Message-ID: <5204D82D.7070908@att.net> On 08/08/2013 11:11 PM, harvey easton wrote: > Hope the parade went well. I am sorry that I could not go, but > Berniece has put her foot down on me fighting the heat. Hope you guys > survived ok. If you don't have family plans, we are open for cards, > our place Saturday evening. > 73 > Harvey > PS > I blew out the diodes in antenna tuner again. I can't be trusted with > a AMP I guess. > Cards? Which module is that app loaded in? ;-) -Geoff/W5OMR From n5zua at earthlink.net Fri Aug 9 11:57:06 2013 From: n5zua at earthlink.net (Steve Agee) Date: Fri, 9 Aug 2013 06:57:06 -0500 Subject: [App_rpt-users] Parade and cards References: <5204D82D.7070908@att.net> Message-ID: <54295079722F4E1484909B57953E95D2@steveea3dc3d27> "Festival" ... obviously! N5ZUA ----- Original Message ----- From: "Geoff" To: Sent: Friday, August 09, 2013 6:53 AM Subject: Re: [App_rpt-users] Parade and cards > On 08/08/2013 11:11 PM, harvey easton wrote: >> Hope the parade went well. I am sorry that I could not go, but >> Berniece has put her foot down on me fighting the heat. Hope you guys >> survived ok. If you don't have family plans, we are open for cards, >> our place Saturday evening. >> 73 >> Harvey >> PS >> I blew out the diodes in antenna tuner again. I can't be trusted with >> a AMP I guess. >> > > Cards? > > Which module is that app loaded in? > > ;-) > > -Geoff/W5OMR From n5uxt at hotmail.com Fri Aug 9 13:37:28 2013 From: n5uxt at hotmail.com (Angelo Glorioso) Date: Fri, 9 Aug 2013 08:37:28 -0500 Subject: [App_rpt-users] Echolink Server Message-ID: Thanks to all who helped. I changed the 2 server to 5 and that took care of the problem. Once again, thanks! 73 de Angelo From jrh at g0fhm.co.uk Fri Aug 9 13:46:36 2013 From: jrh at g0fhm.co.uk (James Hill) Date: Fri, 09 Aug 2013 14:46:36 +0100 Subject: [App_rpt-users] Limey & SVN - Problem! Message-ID: <5204F2BC.3010606@g0fhm.co.uk> Hi Guys, I've just updated my Limey node to the latest SVN - now I have a problem! There was the simpleusb problem initially which Jim managed to fix, but now I have a situation whereby the node will not respond to, or even read DTMF commands. Everything else appears to be working fine (incoming connects etc and CT/Ident). I thought it may have been a hardware COR issue, but the node responds with an ack when I de key. Disconnect the COR line, it stays quiet. Tailing /var/log/asterisk messages shows all of the normal happenings, but nothing coming up when DTMF is sent. I thought I had all of my conf files backed up to the extra partition on the CF card - but when I came to copy them across after the update they were not there (that will teach me to check next time!), so I have had to download the config from the server, and customise according to scribbled notes I have "filed". Is there anything within the .conf files I ought to double check that would cause this? Or is there a deeper problem? Cheers, James 29681 From jrh at g0fhm.co.uk Fri Aug 9 14:31:42 2013 From: jrh at g0fhm.co.uk (James Hill) Date: Fri, 09 Aug 2013 15:31:42 +0100 Subject: [App_rpt-users] Limey & SVN - Problem! In-Reply-To: <5204F2BC.3010606@g0fhm.co.uk> References: <5204F2BC.3010606@g0fhm.co.uk> Message-ID: <5204FD4E.1080102@g0fhm.co.uk> On 09/08/2013 14:46, James Hill wrote: > Hi Guys, > > I've just updated my Limey node to the latest SVN - now I have a problem! > All fixed! Had a "senior moment" and made a wrong entry in simplusb.conf! Cheers, J 29681 From bob at af6d.com Fri Aug 9 17:24:39 2013 From: bob at af6d.com (Bob - AF6D) Date: Fri, 9 Aug 2013 10:24:39 -0700 Subject: [App_rpt-users] Building a simulcast system Message-ID: <26D0697FCF7F4C529B667C580AF923C9@desktop> I have finally secured all three locations for our repeaters and now it's time to deploy Allstar. I want each repeater (MSF 5000) to first have an Arcom RC-210 to which the Allstar interface is applied to port 1 or even the auxiliary port. The RC-210 has many valuable features and is generally feature-rich. I am old that this cannot be done especially when simulcasting; could someone explain why not so that my mind will drop it? Thank you. We primarily want the RC-210 so that we may RF link each site. In the event of an earthquake down goes all links. Otherwise, what is my shopping list? Thank you for your patience with me. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wb3awj at comcast.net Fri Aug 9 18:34:58 2013 From: wb3awj at comcast.net (Robert A. Poff) Date: Fri, 09 Aug 2013 14:34:58 -0400 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <26D0697FCF7F4C529B667C580AF923C9@desktop> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> Message-ID: <2dba81f8-4c09-4de2-868a-d68101dc9580@email.android.com> If you're going to the trouble of putting up backup RF links.... a good idea. Take a look at the Ubiquity data radios ( http://www.ubnt.com ) . Your own RF data network. Forget the public internet except for an entry point. And ditch the controllers. On the analog RF links.. If you have a lot of overlap on the simulcast transmitters, you'll need do some audio delay lines to keep everything in phase. And I'd recommend a GPS disciplined time base for the MSF repeaters. I used to maintain a couple simulcast paging systems. Simulcast with overlap is a big pain. -- Sent from my Android phone with K-9 Mail. Please excuse my brevity and typing errors. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Sat Aug 10 03:40:53 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Fri, 09 Aug 2013 20:40:53 -0700 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <26D0697FCF7F4C529B667C580AF923C9@desktop> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> Message-ID: You can't use a repeater controller with voting/simulcasting for a couple of reasons. The voter sends the RX signals to the host computer where the best one is selected and sent to the transmitters. Obviously you can't have a repeat path thru your controller and do any voting. Next reason is the RTCMs need unsquelched discriminator audio. -- Tim :wq On Aug 9, 2013, at 10:24 AM, Bob - AF6D wrote: > > I have finally secured all three locations for our repeaters and now it?s time to deploy Allstar. I want each repeater (MSF 5000) to first have an Arcom RC-210 to which the Allstar interface is applied to port 1 or even the auxiliary port. The RC-210 has many valuable features and is generally feature-rich. I am old that this cannot be done especially when simulcasting; could someone explain why not so that my mind will drop it? Thank you. We primarily want the RC-210 so that we may RF link each site. In the event of an earthquake down goes all links. > > Otherwise, what is my shopping list? > > Thank you for your patience with me. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at af6d.com Sat Aug 10 03:51:04 2013 From: bob at af6d.com (Bob - AF6D) Date: Fri, 9 Aug 2013 20:51:04 -0700 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: References: <26D0697FCF7F4C529B667C580AF923C9@desktop> Message-ID: <2BFB5518C77E45649BD511FA3E1181F7@desktop> Thanks, Tim. I guess that means all or nothing. I'm ok with that. But how are external devices handled, like weather receivers; earthquake detectors? _____ From: Tim Sawyer [mailto:tim.sawyer at me.com] Sent: Friday, August 09, 2013 8:41 PM To: Bob - AF6D Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Building a simulcast system You can't use a repeater controller with voting/simulcasting for a couple of reasons. The voter sends the RX signals to the host computer where the best one is selected and sent to the transmitters. Obviously you can't have a repeat path thru your controller and do any voting. Next reason is the RTCMs need unsquelched discriminator audio. -- Tim :wq On Aug 9, 2013, at 10:24 AM, Bob - AF6D wrote: I have finally secured all three locations for our repeaters and now it's time to deploy Allstar. I want each repeater (MSF 5000) to first have an Arcom RC-210 to which the Allstar interface is applied to port 1 or even the auxiliary port. The RC-210 has many valuable features and is generally feature-rich. I am old that this cannot be done especially when simulcasting; could someone explain why not so that my mind will drop it? Thank you. We primarily want the RC-210 so that we may RF link each site. In the event of an earthquake down goes all links. Otherwise, what is my shopping list? Thank you for your patience with me. _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Sat Aug 10 04:01:27 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Fri, 09 Aug 2013 21:01:27 -0700 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <2BFB5518C77E45649BD511FA3E1181F7@desktop> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> <2BFB5518C77E45649BD511FA3E1181F7@desktop> Message-ID: <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> Not sure, maybe others will chime in with some ideas. -- Tim :wq On Aug 9, 2013, at 8:51 PM, Bob - AF6D wrote: > Thanks, Tim. I guess that means all or nothing. I?m ok with that. But how are external devices handled, like weather receivers; earthquake detectors? > > From: Tim Sawyer [mailto:tim.sawyer at me.com] > Sent: Friday, August 09, 2013 8:41 PM > To: Bob - AF6D > Cc: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Building a simulcast system > > You can't use a repeater controller with voting/simulcasting for a couple of reasons. The voter sends the RX signals to the host computer where the best one is selected and sent to the transmitters. Obviously you can't have a repeat path thru your controller and do any voting. Next reason is the RTCMs need unsquelched discriminator audio. > > -- > Tim > :wq > > On Aug 9, 2013, at 10:24 AM, Bob - AF6D wrote: > > > > I have finally secured all three locations for our repeaters and now it?s time to deploy Allstar. I want each repeater (MSF 5000) to first have an Arcom RC-210 to which the Allstar interface is applied to port 1 or even the auxiliary port. The RC-210 has many valuable features and is generally feature-rich. I am old that this cannot be done especially when simulcasting; could someone explain why not so that my mind will drop it? Thank you. We primarily want the RC-210 so that we may RF link each site. In the event of an earthquake down goes all links. > > Otherwise, what is my shopping list? > > Thank you for your patience with me. > > _______________________________________________ > 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 edgecomberts at gmail.com Sat Aug 10 04:14:22 2013 From: edgecomberts at gmail.com (Shane Morris) Date: Sat, 10 Aug 2013 14:14:22 +1000 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> <2BFB5518C77E45649BD511FA3E1181F7@desktop> <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> Message-ID: Could you use an Arduino with ethernet, and stream it as IP data? Well, Arduino, or similar, I've been working with mBed boards a bit lately. On Aug 10, 2013 2:11 PM, "Tim Sawyer" wrote: > Not sure, maybe others will chime in with some ideas. > -- > Tim > :wq > > On Aug 9, 2013, at 8:51 PM, Bob - AF6D wrote: > > Thanks, Tim. I guess that means all or nothing. I?m ok with that. But how > are external devices handled, like weather receivers; earthquake detectors? > **** > > ------------------------------ > *From:* Tim Sawyer [mailto:tim.sawyer at me.com] > *Sent:* Friday, August 09, 2013 8:41 PM > *To:* Bob - AF6D > *Cc:* app_rpt-users at ohnosec.org > *Subject:* Re: [App_rpt-users] Building a simulcast system**** > > You can't use a repeater controller with voting/simulcasting for a couple > of reasons. The voter sends the RX signals to the host computer where the > best one is selected and sent to the transmitters. Obviously you can't have > a repeat path thru your controller and do any voting. Next reason is the > RTCMs need unsquelched discriminator audio. **** > > --**** > Tim**** > :wq**** > > On Aug 9, 2013, at 10:24 AM, Bob - AF6D wrote:**** > > > **** > **** > I have finally secured all three locations for our repeaters and now it?s > time to deploy Allstar. I want each repeater (MSF 5000) to first have an > Arcom RC-210 to which the Allstar interface is applied to port 1 or even > the auxiliary port. The RC-210 has many valuable features and is generally > feature-rich. I am old that this cannot be done especially when > simulcasting; could someone explain why not so that my mind will drop it? > Thank you. We primarily want the RC-210 so that we may RF link each site. > In the event of an earthquake down goes all links.******** > **** > Otherwise, what is my shopping list?******** > **** > Thank you for your patience with me.******** > **** > _______________________________________________ > 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 mhebert1975 at gmail.com Sat Aug 10 04:14:59 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Fri, 9 Aug 2013 23:14:59 -0500 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> <2BFB5518C77E45649BD511FA3E1181F7@desktop> <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> Message-ID: Have you looked at the DMK URIx? It could be hooked up to a weather receiver that would be interface to the allstar box via USB http://www.dmkeng.com/Products.htm On Fri, Aug 9, 2013 at 11:01 PM, Tim Sawyer wrote: > Not sure, maybe others will chime in with some ideas. > -- > Tim > :wq > > On Aug 9, 2013, at 8:51 PM, Bob - AF6D wrote: > > Thanks, Tim. I guess that means all or nothing. I?m ok with that. But how > are external devices handled, like weather receivers; earthquake detectors? > **** > > ------------------------------ > *From:* Tim Sawyer [mailto:tim.sawyer at me.com] > *Sent:* Friday, August 09, 2013 8:41 PM > *To:* Bob - AF6D > *Cc:* app_rpt-users at ohnosec.org > *Subject:* Re: [App_rpt-users] Building a simulcast system**** > > You can't use a repeater controller with voting/simulcasting for a couple > of reasons. The voter sends the RX signals to the host computer where the > best one is selected and sent to the transmitters. Obviously you can't have > a repeat path thru your controller and do any voting. Next reason is the > RTCMs need unsquelched discriminator audio. **** > > --**** > Tim**** > :wq**** > > On Aug 9, 2013, at 10:24 AM, Bob - AF6D wrote:**** > > > **** > **** > I have finally secured all three locations for our repeaters and now it?s > time to deploy Allstar. I want each repeater (MSF 5000) to first have an > Arcom RC-210 to which the Allstar interface is applied to port 1 or even > the auxiliary port. The RC-210 has many valuable features and is generally > feature-rich. I am old that this cannot be done especially when > simulcasting; could someone explain why not so that my mind will drop it? > Thank you. We primarily want the RC-210 so that we may RF link each site. > In the event of an earthquake down goes all links.******** > **** > Otherwise, what is my shopping list?******** > **** > Thank you for your patience with me.******** > **** > _______________________________________________ > 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 w5omr at att.net Sat Aug 10 04:17:23 2013 From: w5omr at att.net (Geoff) Date: Fri, 09 Aug 2013 23:17:23 -0500 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <26D0697FCF7F4C529B667C580AF923C9@desktop> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> Message-ID: <5205BED3.80508@att.net> On 08/09/2013 12:24 PM, Bob - AF6D wrote: > > I have finally secured all three locations for our repeaters and now > it's time to deploy Allstar. I want each repeater (MSF 5000) to first > have an Arcom RC-210 to which the Allstar interface is applied to port > 1 or even the auxiliary port. The RC-210 has many valuable features > and is generally feature-rich. I am old that this cannot be done > especially when simulcasting; could someone explain why not so that my > mind will drop it? Thank you. We primarily want the RC-210 so that we > may RF link each site. In the event of an earthquake down goes all links. > > Otherwise, what is my shopping list? > > Here's one way of looking at it... If all sites are able to talk to each other, then I would suggest a link repeater. Each repeater site has it's repeater and a link radio. The link radios talk to -one- link repeater. Meaning, someone keys up a repeater, the COS logic goes hi or lo (however configured) and key's the link radio, which transmits to the link repeater, which all link radios hear, and key their respective repeaters. At the site where the link repeater is, connect an Allstar node. The allstar connection hits the node, is shared by all repeaters on the link. The link repeater has to have no tones, to make it quicker in response, and no tail, to keep the repeaters from "ping-pong"'ing for eternity... What frequency should the link repeater be? Whatband has got the least amount of usage, ergo, the least amount of possible intermod? For example: So, lets say your repeater and link repeater and allstar node are on top of Mt. Wilson in SoCal. You want a shot to the northern valley area, out to Riverside/San Bernadino area, and down I-5 to somewhere between LA and San Diego. That's 5 repeaters and 3 link radios. The RC-210 has 3 inputs; Repeater Link repeater Allstar URI (Audio in, audio out, COS, PTT & Ground) North Repeater Link radio | | Repeater Hub ---------------- East Repeater & link Radio Link Repeater | | South Repeater Link Radio It's up to you as to what frequencies you want to use. You might check Radio Mobile Online (http://www.cplus.org/rmw/rmonline.html) and make sure you are meeting your RF signal path requirements. That's one way... Good luck. -Geoff/W5OMR -------------- next part -------------- An HTML attachment was scrubbed... URL: From mhebert1975 at gmail.com Sat Aug 10 04:51:46 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Fri, 9 Aug 2013 23:51:46 -0500 Subject: [App_rpt-users] GPS-discliplined Oscillator Message-ID: Has anyone interfaced a GPSDO (GPS-discliplined Oscillator), such as Trimble Thunderbolt to a Kenwood TKR-820? Where is a good place to find the Trimble Thunderbolt? Ebay? Mike - KD5DFB -------------- next part -------------- An HTML attachment was scrubbed... URL: From cypresstower at yahoo.com Sat Aug 10 04:58:22 2013 From: cypresstower at yahoo.com (Johnny Keeker) Date: Fri, 9 Aug 2013 21:58:22 -0700 (PDT) Subject: [App_rpt-users] Cop 58 Command questions Message-ID: <1376110702.70211.YahooMailNeo@web163604.mail.gq1.yahoo.com> With cop 58 enabled, am I to assume any receive path to the?transmitter will enable the CTCSS encoder as long as the receive path is active?? -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at af6d.com Sat Aug 10 07:03:59 2013 From: bob at af6d.com (Bob - AF6D) Date: Sat, 10 Aug 2013 00:03:59 -0700 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: References: <26D0697FCF7F4C529B667C580AF923C9@desktop><2BFB5518C77E45649BD511FA3E1181F7@desktop><980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> Message-ID: <056EA2845A9F488B8DC6606DD13A94CE@desktop> It isn't ideal since we really wanted RF links. But then again we can make a private network with Ubiquity. Or not. One site is 70 miles away. Let's try a different approach. Is it possible to setup a remote base connected to an Arcom and TX the WX receiver through? _____ From: Shane Morris [mailto:edgecomberts at gmail.com] Sent: Friday, August 09, 2013 9:14 PM To: tim sawyer Cc: app_rpt mailing list; Bob - AF6D Subject: Re: [App_rpt-users] Building a simulcast system Could you use an Arduino with ethernet, and stream it as IP data? Well, Arduino, or similar, I've been working with mBed boards a bit lately. On Aug 10, 2013 2:11 PM, "Tim Sawyer" wrote: Not sure, maybe others will chime in with some ideas. -- Tim :wq On Aug 9, 2013, at 8:51 PM, Bob - AF6D wrote: Thanks, Tim. I guess that means all or nothing. I'm ok with that. But how are external devices handled, like weather receivers; earthquake detectors? _____ From: Tim Sawyer [mailto:tim.sawyer at me.com] Sent: Friday, August 09, 2013 8:41 PM To: Bob - AF6D Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Building a simulcast system You can't use a repeater controller with voting/simulcasting for a couple of reasons. The voter sends the RX signals to the host computer where the best one is selected and sent to the transmitters. Obviously you can't have a repeat path thru your controller and do any voting. Next reason is the RTCMs need unsquelched discriminator audio. -- Tim :wq On Aug 9, 2013, at 10:24 AM, Bob - AF6D wrote: I have finally secured all three locations for our repeaters and now it's time to deploy Allstar. I want each repeater (MSF 5000) to first have an Arcom RC-210 to which the Allstar interface is applied to port 1 or even the auxiliary port. The RC-210 has many valuable features and is generally feature-rich. I am old that this cannot be done especially when simulcasting; could someone explain why not so that my mind will drop it? Thank you. We primarily want the RC-210 so that we may RF link each site. In the event of an earthquake down goes all links. Otherwise, what is my shopping list? Thank you for your patience with me. _______________________________________________ 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 buddy at brannan.name Sat Aug 10 13:34:41 2013 From: buddy at brannan.name (Buddy Brannan) Date: Sat, 10 Aug 2013 09:34:41 -0400 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <2BFB5518C77E45649BD511FA3E1181F7@desktop> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> <2BFB5518C77E45649BD511FA3E1181F7@desktop> Message-ID: <81329644-5139-4F11-954D-FC1CE0114E8F@brannan.name> All or nothing isn?t necessarily a bad thing, as Asterisk makes a very competent repeater controller all by itself. -- Buddy Brannan, KB5ELV - Erie, PA Phone: (814) 860-3194 or 888-75-BUDDY On Aug 9, 2013, at 11:51 PM, Bob - AF6D wrote: > Thanks, Tim. I guess that means all or nothing. I?m ok with that. But how are external devices handled, like weather receivers; earthquake detectors? > > From: Tim Sawyer [mailto:tim.sawyer at me.com] > Sent: Friday, August 09, 2013 8:41 PM > To: Bob - AF6D > Cc: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Building a simulcast system > > You can't use a repeater controller with voting/simulcasting for a couple of reasons. The voter sends the RX signals to the host computer where the best one is selected and sent to the transmitters. Obviously you can't have a repeat path thru your controller and do any voting. Next reason is the RTCMs need unsquelched discriminator audio. > > -- > Tim > :wq > > On Aug 9, 2013, at 10:24 AM, Bob - AF6D wrote: > > > > I have finally secured all three locations for our repeaters and now it?s time to deploy Allstar. I want each repeater (MSF 5000) to first have an Arcom RC-210 to which the Allstar interface is applied to port 1 or even the auxiliary port. The RC-210 has many valuable features and is generally feature-rich. I am old that this cannot be done especially when simulcasting; could someone explain why not so that my mind will drop it? Thank you. We primarily want the RC-210 so that we may RF link each site. In the event of an earthquake down goes all links. > > Otherwise, what is my shopping list? > > Thank you for your patience with me. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From tim.sawyer at me.com Sat Aug 10 13:58:13 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sat, 10 Aug 2013 06:58:13 -0700 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <056EA2845A9F488B8DC6606DD13A94CE@desktop> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> <2BFB5518C77E45649BD511FA3E1181F7@desktop> <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> <056EA2845A9F488B8DC6606DD13A94CE@desktop> Message-ID: <47E4CA37-0021-41E5-8268-ED6CE5AAD195@me.com> If you mean have the Arcom wired to the repeater TX for weather alerts, no. You are building a simulcast system and you wouldn't want just one of the transmitters coming on independent of the other transmitters. You could make the Arcom (wired to the WX RX) a separate node and link it to your simulcast node. But what's the Arcom bring to the table? Why not just connect the WX RX to a URI or RTCM? -- Tim :wq On Aug 10, 2013, at 12:03 AM, Bob - AF6D wrote: > Is it possible to setup a remote base connected to an Arcom and TX the WX receiver through? -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Sat Aug 10 14:09:47 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sat, 10 Aug 2013 07:09:47 -0700 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <056EA2845A9F488B8DC6606DD13A94CE@desktop> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> <2BFB5518C77E45649BD511FA3E1181F7@desktop> <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> <056EA2845A9F488B8DC6606DD13A94CE@desktop> Message-ID: <1D674F6F-0BB0-4D25-83A4-FF450468C7C3@me.com> Yep, that's worth considering. 70 miles is doable with the right antennas and radios. MikroTik has a 1.6 watt WiFi bullet style radio. I've not used it but maybe someone here on the list has. -- Tim :wq On Aug 10, 2013, at 12:03 AM, Bob - AF6D wrote: > But then again we can make a private network with Ubiquity. Or not. One site is 70 miles away. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Sat Aug 10 14:26:25 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sat, 10 Aug 2013 07:26:25 -0700 Subject: [App_rpt-users] Cop 58 Command questions In-Reply-To: <1376110702.70211.YahooMailNeo@web163604.mail.gq1.yahoo.com> References: <1376110702.70211.YahooMailNeo@web163604.mail.gq1.yahoo.com> Message-ID: The idea of cop 58 is to encode transmit CTCSS when there is a signal on the "input". That way you don't hear courtesy tones, hang time, IDs, etc. I don't know if "input" includes RX from links or not. Try it and let us know. BTY, if it's link con/disconnect announcements you don't want to hear see http://ohnosec.org/drupal/node/103 -- Tim :wq On Aug 9, 2013, at 9:58 PM, Johnny Keeker wrote: > With cop 58 enabled, am I to assume any receive path to the transmitter will enable the CTCSS encoder as long as the receive path is active? > _______________________________________________ > 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 hammin75 at gmail.com Sat Aug 10 14:30:34 2013 From: hammin75 at gmail.com (Bradley Haney) Date: Sat, 10 Aug 2013 09:30:34 -0500 Subject: [App_rpt-users] Vxr5000 programming software Message-ID: Does anyone have it I could download? I have the cable for the vxr5000 uhf. But need the software to program Thanks BH -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at af6d.com Sat Aug 10 15:18:17 2013 From: bob at af6d.com (Bob - AF6D) Date: Sat, 10 Aug 2013 08:18:17 -0700 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <47E4CA37-0021-41E5-8268-ED6CE5AAD195@me.com> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> <2BFB5518C77E45649BD511FA3E1181F7@desktop> <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> <056EA2845A9F488B8DC6606DD13A94CE@desktop> <47E4CA37-0021-41E5-8268-ED6CE5AAD195@me.com> Message-ID: I don't know enough about the URI or USB to speak intelligently. Pun intended :-) So that I might take advantage of linking I was considering wiring the Arcom to a repeater not part of the simulcast loop. I guess that there's no way around an all RoIP system. _____ From: Tim Sawyer [mailto:tim.sawyer at me.com] Sent: Saturday, August 10, 2013 6:58 AM To: Bob - AF6D Cc: app_rpt mailing list Subject: Re: [App_rpt-users] Building a simulcast system If you mean have the Arcom wired to the repeater TX for weather alerts, no. You are building a simulcast system and you wouldn't want just one of the transmitters coming on independent of the other transmitters. You could make the Arcom (wired to the WX RX) a separate node and link it to your simulcast node. But what's the Arcom bring to the table? Why not just connect the WX RX to a URI or RTCM? -- Tim :wq On Aug 10, 2013, at 12:03 AM, Bob - AF6D wrote: Is it possible to setup a remote base connected to an Arcom and TX the WX receiver through? -------------- next part -------------- An HTML attachment was scrubbed... URL: From kb2faf at arrl.net Sat Aug 10 16:01:31 2013 From: kb2faf at arrl.net (Chris Perrine (KB2FAF)) Date: Sat, 10 Aug 2013 12:01:31 -0400 Subject: [App_rpt-users] Vxr5000 programming software In-Reply-To: References: Message-ID: <520663DB.9010606@arrl.net> You mean you want me to dig out my floppies? I'm at work but when I get home I will see if I can find my disk with the programing software on it. Chris KB2FAF On 08/10/2013 10:30 AM, Bradley Haney wrote: > > Does anyone have it I could download? I have the cable for the > vxr5000 uhf. But need the software to program > > Thanks > > BH > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at af6d.com Sat Aug 10 16:07:11 2013 From: bob at af6d.com (Bob - AF6D) Date: Sat, 10 Aug 2013 09:07:11 -0700 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: <47E4CA37-0021-41E5-8268-ED6CE5AAD195@me.com> References: <26D0697FCF7F4C529B667C580AF923C9@desktop> <2BFB5518C77E45649BD511FA3E1181F7@desktop> <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> <056EA2845A9F488B8DC6606DD13A94CE@desktop> <47E4CA37-0021-41E5-8268-ED6CE5AAD195@me.com> Message-ID: I think that I just need to get my feet wet. A RTCM and a GPS module? Is there a recommended source on the GPS option? _____ From: Tim Sawyer [mailto:tim.sawyer at me.com] Sent: Saturday, August 10, 2013 6:58 AM To: Bob - AF6D Cc: app_rpt mailing list Subject: Re: [App_rpt-users] Building a simulcast system If you mean have the Arcom wired to the repeater TX for weather alerts, no. You are building a simulcast system and you wouldn't want just one of the transmitters coming on independent of the other transmitters. You could make the Arcom (wired to the WX RX) a separate node and link it to your simulcast node. But what's the Arcom bring to the table? Why not just connect the WX RX to a URI or RTCM? -- Tim :wq On Aug 10, 2013, at 12:03 AM, Bob - AF6D wrote: Is it possible to setup a remote base connected to an Arcom and TX the WX receiver through? -------------- next part -------------- An HTML attachment was scrubbed... URL: From mhebert1975 at gmail.com Sat Aug 10 16:28:17 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sat, 10 Aug 2013 11:28:17 -0500 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: References: <26D0697FCF7F4C529B667C580AF923C9@desktop> <2BFB5518C77E45649BD511FA3E1181F7@desktop> <980E384E-C889-4D97-BE9C-E95FE1D98351@me.com> <056EA2845A9F488B8DC6606DD13A94CE@desktop> <47E4CA37-0021-41E5-8268-ED6CE5AAD195@me.com> Message-ID: I really like the garmin 18x lvc. Garmin 18x LVC GPS Navigator Unit http://www.amazon.com/dp/B0016O3T7A/ref=cm_sw_r_an_am_ap_am_us?ie=UTF8 On Aug 10, 2013 11:07 AM, "Bob - AF6D" wrote: > I think that I just need to get my feet wet. A RTCM and a GPS module? Is > there a recommended source on the GPS option?**** > > ** ** > ------------------------------ > > *From:* Tim Sawyer [mailto:tim.sawyer at me.com] > *Sent:* Saturday, August 10, 2013 6:58 AM > *To:* Bob - AF6D > *Cc:* app_rpt mailing list > *Subject:* Re: [App_rpt-users] Building a simulcast system**** > > ** ** > > If you mean have the Arcom wired to the repeater TX for weather alerts, > no. You are building a simulcast system and you wouldn't want just one of > the transmitters coming on independent of the other transmitters.**** > > ** ** > > You could make the Arcom (wired to the WX RX) a separate node and link it > to your simulcast node. But what's the Arcom bring to the table? Why not > just connect the WX RX to a URI or RTCM?**** > > --**** > > Tim**** > > :wq**** > > ** ** > > On Aug 10, 2013, at 12:03 AM, Bob - AF6D wrote:**** > > > > **** > > Is it possible to setup a remote base connected to an Arcom and TX the WX > receiver through?**** > > ** ** > > _______________________________________________ > 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 Sat Aug 10 17:24:09 2013 From: wb3awj at comcast.net (Robert A. Poff) Date: Sat, 10 Aug 2013 13:24:09 -0400 Subject: [App_rpt-users] Cop 58 Command questions In-Reply-To: References: <1376110702.70211.YahooMailNeo@web163604.mail.gq1.yahoo.com> Message-ID: <6f35877f-1349-4635-bd12-af8fee7a308f@email.android.com> Yes, the PL encode on/off does follow the link input when this is enabled. Tim Sawyer wrote: >The idea of cop 58 is to encode transmit CTCSS when there is a signal >on the "input". That way you don't hear courtesy tones, hang time, IDs, >etc. I don't know if "input" includes RX from links or not. Try it and >let us know. > >BTY, if it's link con/disconnect announcements you don't want to hear >see http://ohnosec.org/drupal/node/103 >-- >Tim >:wq > >On Aug 9, 2013, at 9:58 PM, Johnny >wrote: > >> With cop 58 enabled, am I to assume any receive path to the >transmitter will enable the CTCSS encoder as long as the receive path >is active? >> _______________________________________________ >> 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 -- Sent from my Android phone with K-9 Mail. Please excuse my brevity and typing errors. From markjohnston73 at gmail.com Sat Aug 10 17:59:09 2013 From: markjohnston73 at gmail.com (Mark Johnston) Date: Sat, 10 Aug 2013 10:59:09 -0700 Subject: [App_rpt-users] Remote Base commands/operation Message-ID: Hello everyone, Can anyone explain in better detail how the remote base operates, as far as users are concerned. i.e. What command do you enter to mover the frequency +500 In the documentation it shows adding? This line amongest others to the rpt.conf file. 719=remote,112 ; Bump +500 so does that mean dial 719 or *719 or? Assuming no authentication, and again if you add authentication what does the command look like? Is it *4node then a command like 719? Node is configured as a remote base, shows up with R in the node status page... Everything should be right there.. Also for the rpt.conf do I need all of this or am I missing something? ; Serial port for control ioport = /dev/ttyS0 ; Radio Type remote = ic706 ; Function list from link functions = remote-functions ; Function list from phone phone_functions = remote-functions ; Authorization level authlevel = 0 civaddr=98 duplex=0 erxgain=-3 etxgain=3 ;controlstates=controlstates scheduler=schedule29626 morse=morse29626 macro=macro29626 functions=functions29626 phone_functions=functions29626 link_functions=functions29626 link_functions=functions29626 telemetry=telemetry wait_times=wait-times context = radio callerid = "Repeater" <0000000000> idrecording = |iKC7DMF accountcode=RADIO hangtime=100 althangtime=100 totime=170000 idtime=540000 politeid=3000 etc... Are any of the std lines needed? or just the ones at top? Do I need to have all of these or are they built in? [functions-remote] 0=remote,1 ; Retrieve Memory 1=remote,2 ; Set freq. 2=remote,3 ; Set tx PL tone 3=remote,4 ; Set rx PL tone 40=remote,100 ; Rx PL off 41=remote,101 ; Rx PL on 42=remote,102 ; Tx PL off 43=remote,103 ; Tx PL on 44=remote,104 ; Low Power 45=remote,105 ; Medium Power 46=remote,106 ; High Power 711=remote,107 ; Bump -20 714=remote,108 ; Bump -100 717=remote,109 ; Bump -500 713=remote,110 ; Bump +20 716=remote,111 ; Bump +100 713=remote,110 ; Bump +20 716=remote,111 ; Bump +100 719=remote,112 ; Bump +500 721=remote,113 ; Scan - slow 724=remote,114 ; Scan - quick 727=remote,115 ; Scan - fast 723=remote,116 ; Scan + slow 726=remote,117 ; Scan + quick 729=remote,118 ; Scan + fast 79=remote,119 ; Tune (brief AM transmission for automatic antenna tuner) 51=remote,5 ; Long status query 52=remote,140 ; Short status query 67=remote,210 ; Send a * 69=remote,211 ; Send a # 91=remote,99,kc7dmf,G ; Remote base login. ; Define a different dtmf sequence for each user which is ; authorized to use the remote base to control access to it. ; For examble 9139583=remote,99,WB6NIL,G would grant access to ; the remote base and announce WB6NIL as being logged in. ; Another entry, 9148351=remote,99,WA6ZFT,E would grant access to ; the remote base and announce WA6ZFT as being logged in. ; When the remote base is disconnected from the originating node, the ; user will be logged out. The LICENSETAG parameter can be optionally specified ; to enforce TX band limits. http://www.voip-info.org/wiki/view/Asterisk+config+rpt.conf http://ohnosec.org/drupal/node/44 The second link a bit less clear to me... If anyone has an idea, or knows how this is supposed to work, I would appreciate it. Maybe some real world rpt.conf file you could send me, or other files I need to setup as well. A command example howto... Thanks, Mark KC7DMF -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Sun Aug 11 15:01:57 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 11 Aug 2013 08:01:57 -0700 Subject: [App_rpt-users] New RTCM Firmware and Docs Message-ID: <2CE0A801-740D-4020-94AA-7C0E13845AD6@me.com> Jim has posted RTCM version 1.26 to svn. It allows a lower minimum TX buffer length of 480 (60ms). We ran the min setting on a 20 mile Ubiquiti hop and it worked fine. http://svn.ohnosec.org/viewvc/projects/allstar/voter/?root=svn I've posted a procedure to determine RTCM and chan_voter buffer size using voter ping. http://ohnosec.org/drupal/node/195 -- Tim WD6AWP :wq -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at af6d.com Sun Aug 11 17:23:48 2013 From: bob at af6d.com (Bob - AF6D) Date: Sun, 11 Aug 2013 10:23:48 -0700 Subject: [App_rpt-users] Building a simulcast system In-Reply-To: References: <26D0697FCF7F4C529B667C580AF923C9@desktop><2BFB5518C77E45649BD511FA3E1181F7@desktop><980E384E-C889-4D97-BE9C-E95FE1D98351@me.com><056EA2845A9F488B8DC6606DD13A94CE@desktop><47E4CA37-0021-41E5-8268-ED6CE5AAD195@me.com> Message-ID: <9BCE20723995481CBBC841A0BC69976A@desktop> I am blessed with running my own hosting business and own my data center. At home I have business class service. I have 50 down and 5 up. I think that easily covers the voice portion. I have KVM over IP and Remote APC reboot ? or I can run it here just as easily as my data center. 1. Which version of the software is best for simulcast? 2. How about the hardware? By default I would use a Pentium 4 3GHz with 4GHz of RAM a Dell GX series desktop. 3. Should I run a SSD drive for boot-up or would a Western Digital RE4 (server class) work ok across the board? 3. Besides simulcast for 3 nodes I?d like to share what we have as a conference node (???). Do I have enough horsepower? I have 50 down and 5 up. 4. I'd like a private server and a public server on one PC. I would be tremendously grateful to anyone that answers these entry level questions. I don't want to make mistakes from the beginning. Humbly Yours, AF6D ________________________________________ From: Michael Hebert [mailto:mhebert1975 at gmail.com] Sent: Saturday, August 10, 2013 9:28 AM To: Bob - AF6D Cc: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Building a simulcast system I really like the garmin 18x lvc. Garmin 18x LVC GPS Navigator Unit http://www.amazon.com/dp/B0016O3T7A/ref=cm_sw_r_an_am_ap_am_us?ie=UTF8 On Aug 10, 2013 11:07 AM, "Bob - AF6D" wrote: I think that I just need to get my feet wet. A RTCM and a GPS module? Is there a recommended source on the GPS option? ? ________________________________________ From: Tim Sawyer [mailto:tim.sawyer at me.com] Sent: Saturday, August 10, 2013 6:58 AM To: Bob - AF6D Cc: app_rpt mailing list Subject: Re: [App_rpt-users] Building a simulcast system ? If you mean have the Arcom wired to the repeater TX for weather alerts, no. You are building a simulcast system and you wouldn't want just one of the transmitters coming on independent of the other transmitters. ? You could make the Arcom (wired to the WX RX) a separate node and link it to your simulcast node. But what's the Arcom bring to the table? Why not just connect the WX RX to a URI or RTCM? -- Tim :wq ? On Aug 10, 2013, at 12:03 AM, Bob - AF6D wrote: Is it possible to setup a remote base connected to an Arcom and TX the WX receiver through? ? _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From kc7mrq at bresnan.net Sun Aug 11 18:24:33 2013 From: kc7mrq at bresnan.net (Corey Badgley) Date: Sun, 11 Aug 2013 12:24:33 -0600 Subject: [App_rpt-users] Macros Message-ID: <5207D6E1.3040708@bresnan.net> Is there a numerical limit to the [macro] stanza? 1-9 work just fine for me, but 10 and higher do not work. Thanks, Corey From tim.sawyer at me.com Sun Aug 11 21:13:37 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 11 Aug 2013 14:13:37 -0700 Subject: [App_rpt-users] Fwd: Building a simulcast system References: <9BCE20723995481CBBC841A0BC69976A@desktop> Message-ID: <300BB13F-2329-4D54-8D83-A62D3A5F6667@me.com> See below... -- Tim :wq Begin forwarded message: > From: Bob - AF6D > Subject: Re: [App_rpt-users] Building a simulcast system > Date: August 11, 2013 10:23:48 AM PDT > To: 'Michael Hebert' > Cc: app_rpt-users at ohnosec.org > > I am blessed with running my own hosting business and own my data center. At > home I have business class service. I have 50 down and 5 up. I think that > easily covers the voice portion. I have KVM over IP and Remote APC reboot ? > or I can run it here just as easily as my data center. > > 1. Which version of the software is best for simulcast? The latest ACID. Always upgrade after install. see https://allstarlink.org/support.html#astupgrade > > 2. How about the hardware? By default I would use a Pentium 4 3GHz with > 4GHz of RAM a Dell GX series desktop. That's plenty. I'm running 4 mix client nodes, a two client simulcast node and a four client simulcast node. That's 10 RTCMs on 6 nodes. All on a single Intel Atom D25 (1Gb RAM) with ACID installed on a SSD. It runs 94% idle and 300 Mb free. > > 3. Should I run a SSD drive for boot-up or would a Western Digital RE4 > (server class) work ok across the board? Yep. > > 3. Besides simulcast for 3 nodes I?d like to share what we have as a > conference node (???). Do I have enough horsepower? I have 50 down and 5 up. > Yes. > 4. I'd like a private server and a public server on one PC. > No, only one server per PC is recommended. VMs are not recommended, and I might scold you if you try :-). But you can have both private and public nodes on the same server. > I would be tremendously grateful to anyone that answers these entry level > questions. I don't want to make mistakes from the beginning. > I'll send you a bill first of the month, thank you for your generosity :-) > Humbly Yours, > AF6D > -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Sun Aug 11 21:30:43 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Sun, 11 Aug 2013 14:30:43 -0700 Subject: [App_rpt-users] Fwd: Building a simulcast system In-Reply-To: <300BB13F-2329-4D54-8D83-A62D3A5F6667@me.com> References: <9BCE20723995481CBBC841A0BC69976A@desktop>, <300BB13F-2329-4D54-8D83-A62D3A5F6667@me.com> Message-ID: Although I have not personally verified this, you should be able to run several chan_voter instances (and associated nodes) on something as small even as a Raspberry-Pi. Jim From: tim.sawyer at me.com Date: Sun, 11 Aug 2013 14:13:37 -0700 To: App_rpt-users at ohnosec.org Subject: [App_rpt-users] Fwd: Building a simulcast system See below... -- Tim :wq Begin forwarded message:From: Bob - AF6D Subject: Re: [App_rpt-users] Building a simulcast system Date: August 11, 2013 10:23:48 AM PDT To: 'Michael Hebert' Cc: app_rpt-users at ohnosec.org I am blessed with running my own hosting business and own my data center. At home I have business class service. I have 50 down and 5 up. I think that easily covers the voice portion. I have KVM over IP and Remote APC reboot ? or I can run it here just as easily as my data center. 1. Which version of the software is best for simulcast? The latest ACID. Always upgrade after install. see https://allstarlink.org/support.html#astupgrade 2. How about the hardware? By default I would use a Pentium 4 3GHz with 4GHz of RAM a Dell GX series desktop. That's plenty. I'm running 4 mix client nodes, a two client simulcast node and a four client simulcast node. That's 10 RTCMs on 6 nodes. All on a single Intel Atom D25 (1Gb RAM) with ACID installed on a SSD. It runs 94% idle and 300 Mb free. 3. Should I run a SSD drive for boot-up or would a Western Digital RE4 (server class) work ok across the board? Yep. 3. Besides simulcast for 3 nodes I?d like to share what we have as a conference node (???). Do I have enough horsepower? I have 50 down and 5 up. Yes. 4. I'd like a private server and a public server on one PC. No, only one server per PC is recommended. VMs are not recommended, and I might scold you if you try :-). But you can have both private and public nodes on the same server. I would be tremendously grateful to anyone that answers these entry level questions. I don't want to make mistakes from the beginning. I'll send you a bill first of the month, thank you for your generosity :-) Humbly Yours, AF6D _______________________________________________ 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 mhebert1975 at gmail.com Mon Aug 12 00:43:36 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 19:43:36 -0500 Subject: [App_rpt-users] RTCM simulcast help Message-ID: All, I am trying to enable simulcast on my system. I have gone into the voter.conf and added the "transmit" statement. The 2nd repeater is not transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 or the red TX indicator lighting up I have done a astres.sh and rebooted both RTCMs *Here is my voter.conf* [general] port = 667 buflen = 120 password = xxx [28304] KD5DFB_main=xxx,transmit,master KD5DFB_site1=xxx,transmit *Here is my menu 98 on the RTCM * GPS Lock: 1 Connected: 1 COR: 1 EXT CTCSS IN: 0 PTT: 0 RSSI: 255 Current Samples / Sec.: 8000 Current Peak Audio Level: 1496 Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 Current Time: Mon Aug 12, 2013 00:40:50.800 Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec Last Rx Pkt index: 0, inbounds: 0 -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Mon Aug 12 01:34:36 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Sun, 11 Aug 2013 18:34:36 -0700 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: Message-ID: 1) What version of RTCM firmware are you running? 2) What do you have your TxBufferLength set to (in the RTCM) ? Jim Date: Sun, 11 Aug 2013 19:43:36 -0500 From: mhebert1975 at gmail.com To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] RTCM simulcast help All, I am trying to enable simulcast on my system. I have gone into the voter.conf and added the "transmit" statement. The 2nd repeater is not transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 or the red TX indicator lighting up I have done a astres.sh and rebooted both RTCMs Here is my voter.conf [general]port = 667buflen = 120password = xxx [28304]KD5DFB_main=xxx,transmit,masterKD5DFB_site1=xxx,transmit Here is my menu 98 on the RTCM GPS Lock: 1 Connected: 1COR: 1EXT CTCSS IN: 0PTT: 0RSSI: 255Current Samples / Sec.: 8000Current Peak Audio Level: 1496Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 Current Time: Mon Aug 12, 2013 00:40:50.800Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msecLast Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msecLast Rx Pkt index: 0, inbounds: 0 _______________________________________________ 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 mhebert1975 at gmail.com Mon Aug 12 01:37:49 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 20:37:49 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: Message-ID: 1) S/W Version: 1.26 08/10/2013 on both of them 2) 480 on both of them On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: > 1) What version of RTCM firmware are you running? > > 2) What do you have your TxBufferLength set to (in the RTCM) ? > > Jim > > ------------------------------ > Date: Sun, 11 Aug 2013 19:43:36 -0500 > From: mhebert1975 at gmail.com > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] RTCM simulcast help > > All, > > I am trying to enable simulcast on my system. I have gone into the > voter.conf and added the "transmit" statement. The 2nd repeater is not > transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 > or the red TX indicator lighting up > > I have done a astres.sh and rebooted both RTCMs > > *Here is my voter.conf* > > [general] > port = 667 > buflen = 120 > password = xxx > > [28304] > KD5DFB_main=xxx,transmit,master > KD5DFB_site1=xxx,transmit > > > *Here is my menu 98 on the RTCM * > > GPS Lock: 1 > Connected: 1 > COR: 1 > EXT CTCSS IN: 0 > PTT: 0 > RSSI: 255 > Current Samples / Sec.: 8000 > Current Peak Audio Level: 1496 > Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 > Current Time: Mon Aug 12, 2013 00:40:50.800 > Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec > Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec > Last Rx Pkt index: 0, inbounds: 0 > > > _______________________________________________ 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 Aug 12 01:39:52 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Sun, 11 Aug 2013 18:39:52 -0700 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: , , Message-ID: well, why dont you try something higher then 480... Date: Sun, 11 Aug 2013 20:37:49 -0500 Subject: Re: [App_rpt-users] RTCM simulcast help From: mhebert1975 at gmail.com To: telesistant at hotmail.com CC: app_rpt-users at ohnosec.org 1) S/W Version: 1.26 08/10/2013 on both of them 2) 480 on both of them On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: 1) What version of RTCM firmware are you running? 2) What do you have your TxBufferLength set to (in the RTCM) ? Jim Date: Sun, 11 Aug 2013 19:43:36 -0500 From: mhebert1975 at gmail.com To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] RTCM simulcast help All, I am trying to enable simulcast on my system. I have gone into the voter.conf and added the "transmit" statement. The 2nd repeater is not transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 or the red TX indicator lighting up I have done a astres.sh and rebooted both RTCMs Here is my voter.conf [general]port = 667buflen = 120password = xxx [28304]KD5DFB_main=xxx,transmit,masterKD5DFB_site1=xxx,transmit Here is my menu 98 on the RTCM GPS Lock: 1 Connected: 1COR: 1EXT CTCSS IN: 0PTT: 0RSSI: 255Current Samples / Sec.: 8000Current Peak Audio Level: 1496Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 Current Time: Mon Aug 12, 2013 00:40:50.800Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msecLast Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msecLast Rx Pkt index: 0, inbounds: 0 _______________________________________________ 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 mhebert1975 at gmail.com Mon Aug 12 01:54:44 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 20:54:44 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: Message-ID: Just changed both of them to 3000 and rebooted. Also, rebooted the asterisk machine. Still no TX on KD5DFB_site1=xxx,transmit On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: > well, why dont you try something higher then 480... > > ------------------------------ > Date: Sun, 11 Aug 2013 20:37:49 -0500 > Subject: Re: [App_rpt-users] RTCM simulcast help > From: mhebert1975 at gmail.com > To: telesistant at hotmail.com > CC: app_rpt-users at ohnosec.org > > 1) S/W Version: 1.26 08/10/2013 on both of them > > 2) 480 on both of them > > > On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: > > 1) What version of RTCM firmware are you running? > > 2) What do you have your TxBufferLength set to (in the RTCM) ? > > Jim > > ------------------------------ > Date: Sun, 11 Aug 2013 19:43:36 -0500 > From: mhebert1975 at gmail.com > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] RTCM simulcast help > > All, > > I am trying to enable simulcast on my system. I have gone into the > voter.conf and added the "transmit" statement. The 2nd repeater is not > transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 > or the red TX indicator lighting up > > I have done a astres.sh and rebooted both RTCMs > > *Here is my voter.conf* > > [general] > port = 667 > buflen = 120 > password = xxx > > [28304] > KD5DFB_main=xxx,transmit,master > KD5DFB_site1=xxx,transmit > > > *Here is my menu 98 on the RTCM * > > GPS Lock: 1 > Connected: 1 > COR: 1 > EXT CTCSS IN: 0 > PTT: 0 > RSSI: 255 > Current Samples / Sec.: 8000 > Current Peak Audio Level: 1496 > Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 > Current Time: Mon Aug 12, 2013 00:40:50.800 > Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec > Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec > Last Rx Pkt index: 0, inbounds: 0 > > > _______________________________________________ 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 n8ohu at yahoo.com Mon Aug 12 02:01:50 2013 From: n8ohu at yahoo.com (Matthew) Date: Sun, 11 Aug 2013 22:01:50 -0400 Subject: [App_rpt-users] RTCM simulcast help Message-ID: An HTML attachment was scrubbed... URL: From mhebert1975 at gmail.com Mon Aug 12 02:10:19 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 21:10:19 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: Message-ID: Hmm, it looked like it did. I didn't watch it the whole time. I just did the standard update from the website. cd /usr/src rm -rf astsrc wget http://x.allstarlink.org/svn-trunk.tar.gz -O- | tar xzv mv trunk astsrc cd astsrc make upgrade-acid and rebooted when it was done. Interesting, It just transmitted the CW for the station ID and I have it announce the top of the hour. Also, just used rpt fun 28304 *81 and it * transmitted* On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: > This might sound like an odd question, but did chan_voter compile cleanly > for you? I just grabbed the latest svn code and it did not compile for me > at all. The error it gave me I would need to check tomorrow, as I'm > currently not at the computer. > > Matthew Pitts > N8OHU > > Sent from my Verizon Wireless 4G LTE smartphone > > -------- Original Message -------- > Subject:Re: [App_rpt-users] RTCM simulcast help > From :Michael Hebert ** > Date :Sun, 11-Aug-2013 21:54 > To :Jim Duuuude ** > CC :app_rpt mailing list ** > > Just changed both of them to 3000 and rebooted. Also, rebooted the > asterisk machine. > > Still no TX on KD5DFB_site1=xxx,transmit > > > On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: > >> well, why dont you try something higher then 480... >> >> ------------------------------ >> Date: Sun, 11 Aug 2013 20:37:49 -0500 >> Subject: Re: [App_rpt-users] RTCM simulcast help >> From: mhebert1975 at gmail.com >> To: telesistant at hotmail.com >> CC: app_rpt-users at ohnosec.org >> >> 1) S/W Version: 1.26 08/10/2013 on both of them >> >> 2) 480 on both of them >> >> >> On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: >> >> 1) What version of RTCM firmware are you running? >> >> 2) What do you have your TxBufferLength set to (in the RTCM) ? >> >> Jim >> >> ------------------------------ >> Date: Sun, 11 Aug 2013 19:43:36 -0500 >> From: mhebert1975 at gmail.com >> To: app_rpt-users at ohnosec.org >> Subject: [App_rpt-users] RTCM simulcast help >> >> All, >> >> I am trying to enable simulcast on my system. I have gone into the >> voter.conf and added the "transmit" statement. The 2nd repeater is not >> transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 >> or the red TX indicator lighting up >> >> I have done a astres.sh and rebooted both RTCMs >> >> *Here is my voter.conf* >> >> [general] >> port = 667 >> buflen = 120 >> password = xxx >> >> [28304] >> KD5DFB_main=xxx,transmit,master >> KD5DFB_site1=xxx,transmit >> >> >> *Here is my menu 98 on the RTCM * >> >> GPS Lock: 1 >> Connected: 1 >> COR: 1 >> EXT CTCSS IN: 0 >> PTT: 0 >> RSSI: 255 >> Current Samples / Sec.: 8000 >> Current Peak Audio Level: 1496 >> Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 >> Current Time: Mon Aug 12, 2013 00:40:50.800 >> Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec >> Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec >> Last Rx Pkt index: 0, inbounds: 0 >> >> >> _______________________________________________ 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 Mon Aug 12 02:24:01 2013 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Sun, 11 Aug 2013 21:24:01 -0500 Subject: [App_rpt-users] Macros In-Reply-To: <5207D6E1.3040708@bresnan.net> References: <5207D6E1.3040708@bresnan.net> Message-ID: You can's have 1-9 and then also have 10-99, once you try to enter the 1 of the 10 it will do the 1 thing. Eliminate 1-9 and you can replace them with 11-19, then you can add 10,20,21,22,23..... etc. Chuck On Sun, Aug 11, 2013 at 1:24 PM, Corey Badgley wrote: > Is there a numerical limit to the [macro] stanza? 1-9 work just fine for me, > but 10 and higher do not work. > > Thanks, > Corey > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From stevegebhard at cox.net Mon Aug 12 02:27:24 2013 From: stevegebhard at cox.net (stephen gebhard) Date: Sun, 11 Aug 2013 19:27:24 -0700 Subject: [App_rpt-users] RTCM servcer question Message-ID: <000301ce9703$7ba0b9b0$72e22d10$@net> Hello group. I have a local RTCM server running 3 thin clients along with a URI node, all working great except for one thing, I cannot connect the thin clients together. In the nodes stanza of rpt.conf I have the node numbers listed with the loopback address as I thought they should be, but when I try connecting them together I get the auto-congest slow response error, which tells me it cannot find the node. Is this correct to set the RTCM node numbers to the loopback address? Should I be entering something else there or comment out? -------------- next part -------------- An HTML attachment was scrubbed... URL: From mhebert1975 at gmail.com Mon Aug 12 02:58:19 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 21:58:19 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: Message-ID: Very interesting. Playing around with the settings on both RTCMs and found it works with menu 7 set for 600 and menu 18 set for 1. If I set menu 18 to 0 the non master client, it will not transmit. Also, I checked my rpt.conf and duplex=2 On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: > This might sound like an odd question, but did chan_voter compile cleanly > for you? I just grabbed the latest svn code and it did not compile for me > at all. The error it gave me I would need to check tomorrow, as I'm > currently not at the computer. > > Matthew Pitts > N8OHU > > Sent from my Verizon Wireless 4G LTE smartphone > > -------- Original Message -------- > Subject:Re: [App_rpt-users] RTCM simulcast help > From :Michael Hebert ** > Date :Sun, 11-Aug-2013 21:54 > To :Jim Duuuude ** > CC :app_rpt mailing list ** > > Just changed both of them to 3000 and rebooted. Also, rebooted the > asterisk machine. > > Still no TX on KD5DFB_site1=xxx,transmit > > > On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: > >> well, why dont you try something higher then 480... >> >> ------------------------------ >> Date: Sun, 11 Aug 2013 20:37:49 -0500 >> Subject: Re: [App_rpt-users] RTCM simulcast help >> From: mhebert1975 at gmail.com >> To: telesistant at hotmail.com >> CC: app_rpt-users at ohnosec.org >> >> 1) S/W Version: 1.26 08/10/2013 on both of them >> >> 2) 480 on both of them >> >> >> On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: >> >> 1) What version of RTCM firmware are you running? >> >> 2) What do you have your TxBufferLength set to (in the RTCM) ? >> >> Jim >> >> ------------------------------ >> Date: Sun, 11 Aug 2013 19:43:36 -0500 >> From: mhebert1975 at gmail.com >> To: app_rpt-users at ohnosec.org >> Subject: [App_rpt-users] RTCM simulcast help >> >> All, >> >> I am trying to enable simulcast on my system. I have gone into the >> voter.conf and added the "transmit" statement. The 2nd repeater is not >> transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 >> or the red TX indicator lighting up >> >> I have done a astres.sh and rebooted both RTCMs >> >> *Here is my voter.conf* >> >> [general] >> port = 667 >> buflen = 120 >> password = xxx >> >> [28304] >> KD5DFB_main=xxx,transmit,master >> KD5DFB_site1=xxx,transmit >> >> >> *Here is my menu 98 on the RTCM * >> >> GPS Lock: 1 >> Connected: 1 >> COR: 1 >> EXT CTCSS IN: 0 >> PTT: 0 >> RSSI: 255 >> Current Samples / Sec.: 8000 >> Current Peak Audio Level: 1496 >> Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 >> Current Time: Mon Aug 12, 2013 00:40:50.800 >> Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec >> Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec >> Last Rx Pkt index: 0, inbounds: 0 >> >> >> _______________________________________________ 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 mhebert1975 at gmail.com Mon Aug 12 03:07:36 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 22:07:36 -0500 Subject: [App_rpt-users] COP 4(Test Tone On/Off) Message-ID: When I use COP 4 (Test Tone On/Off), what level audio is it going to send to the transmitter? -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Mon Aug 12 03:27:54 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 11 Aug 2013 20:27:54 -0700 Subject: [App_rpt-users] RTCM servcer question In-Reply-To: <000301ce9703$7ba0b9b0$72e22d10$@net> References: <000301ce9703$7ba0b9b0$72e22d10$@net> Message-ID: <59500C33-5D58-4895-AA9B-D27E3D244188@me.com> In that regard RTCM are no different than any other interface. So yes, for each node you need the loopback entry in the [nodes] section for each node. You also must add the node to extensions.conf and iax.conf. A trick I use is to grep the original node number to find each place it occurs then I know what to add. i.e. grep 1999 * Also remember that multiple RTCMs can be on the same node, usually in a voting/simulcast environment but that could happen with mix clients too. Just depends how you want to hang the system together. -- Tim :wq On Aug 11, 2013, at 7:27 PM, stephen gebhard wrote: > > Hello group. I have a local RTCM server running 3 thin clients along with a URI node, all working great except for one thing, I cannot connect the thin clients together. In the nodes stanza of rpt.conf I have the node numbers listed with the loopback address as I thought they should be, but when I try connecting them together I get the auto-congest slow response error, which tells me it cannot find the node. Is this correct to set the RTCM node numbers to the loopback address? Should I be entering something else there or comment out? > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Mon Aug 12 03:34:22 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 11 Aug 2013 20:34:22 -0700 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: Message-ID: Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. Leave the TX buffers long - around 2000 or 3000 until you figure out what is wrong. Are you getting any strange message on the Asterisk console with verbose level 3? -- Tim :wq On Aug 11, 2013, at 7:58 PM, Michael Hebert wrote: > Very interesting. Playing around with the settings on both RTCMs and found it works with menu 7 set for 600 and menu 18 set for 1. > > If I set menu 18 to 0 the non master client, it will not transmit. > > Also, I checked my rpt.conf and duplex=2 > > > On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: > This might sound like an odd question, but did chan_voter compile cleanly for you? I just grabbed the latest svn code and it did not compile for me at all. The error it gave me I would need to check tomorrow, as I'm currently not at the computer. > > Matthew Pitts > N8OHU > > Sent from my Verizon Wireless 4G LTE smartphone > > -------- Original Message -------- > Subject:Re: [App_rpt-users] RTCM simulcast help > From :Michael Hebert > Date :Sun, 11-Aug-2013 21:54 > To :Jim Duuuude > CC :app_rpt mailing list > > Just changed both of them to 3000 and rebooted. Also, rebooted the asterisk machine. > > Still no TX on KD5DFB_site1=xxx,transmit > > > On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: > well, why dont you try something higher then 480... > > Date: Sun, 11 Aug 2013 20:37:49 -0500 > Subject: Re: [App_rpt-users] RTCM simulcast help > From: mhebert1975 at gmail.com > To: telesistant at hotmail.com > CC: app_rpt-users at ohnosec.org > > 1) S/W Version: 1.26 08/10/2013 on both of them > > 2) 480 on both of them > > > On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: > 1) What version of RTCM firmware are you running? > > 2) What do you have your TxBufferLength set to (in the RTCM) ? > > Jim > > Date: Sun, 11 Aug 2013 19:43:36 -0500 > From: mhebert1975 at gmail.com > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] RTCM simulcast help > > All, > > I am trying to enable simulcast on my system. I have gone into the voter.conf and added the "transmit" statement. The 2nd repeater is not transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 or the red TX indicator lighting up > > I have done a astres.sh and rebooted both RTCMs > > Here is my voter.conf > > [general] > port = 667 > buflen = 120 > password = xxx > > [28304] > KD5DFB_main=xxx,transmit,master > KD5DFB_site1=xxx,transmit > > > Here is my menu 98 on the RTCM > > GPS Lock: 1 > Connected: 1 > COR: 1 > EXT CTCSS IN: 0 > PTT: 0 > RSSI: 255 > Current Samples / Sec.: 8000 > Current Peak Audio Level: 1496 > Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 > Current Time: Mon Aug 12, 2013 00:40:50.800 > Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec > Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec > Last Rx Pkt index: 0, inbounds: 0 > > > _______________________________________________ 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 tim.sawyer at me.com Mon Aug 12 03:37:39 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 11 Aug 2013 20:37:39 -0700 Subject: [App_rpt-users] COP 4(Test Tone On/Off) In-Reply-To: References: Message-ID: 3kHz please read http://ohnosec.org/drupal/node/28 -- Tim :wq On Aug 11, 2013, at 8:07 PM, Michael Hebert wrote: > When I use COP 4 (Test Tone On/Off), what level audio is it going to send to the transmitter? > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From mhebert1975 at gmail.com Mon Aug 12 03:46:46 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 22:46:46 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: Message-ID: I just changed menu 18=0 on both rtcms. I also changed the menu 7 to 3000. No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' No TX on client 2 now On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer wrote: > Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. Leave > the TX buffers long - around 2000 or 3000 until you figure out what is > wrong. > > Are you getting any strange message on the Asterisk console with verbose > level 3? > -- > Tim > :wq > > On Aug 11, 2013, at 7:58 PM, Michael Hebert wrote: > > Very interesting. Playing around with the settings on both RTCMs and found > it works with menu 7 set for 600 and menu 18 set for 1. > > If I set menu 18 to 0 the non master client, it will not transmit. > > Also, I checked my rpt.conf and duplex=2 > > > On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: > >> This might sound like an odd question, but did chan_voter compile cleanly >> for you? I just grabbed the latest svn code and it did not compile for me >> at all. The error it gave me I would need to check tomorrow, as I'm >> currently not at the computer. >> >> Matthew Pitts >> N8OHU >> >> Sent from my Verizon Wireless 4G LTE smartphone >> >> -------- Original Message -------- >> Subject:Re: [App_rpt-users] RTCM simulcast help >> From :Michael Hebert ** >> Date :Sun, 11-Aug-2013 21:54 >> To :Jim Duuuude ** >> CC :app_rpt mailing list ** >> >> Just changed both of them to 3000 and rebooted. Also, rebooted the >> asterisk machine. >> >> Still no TX on KD5DFB_site1=xxx,transmit >> >> >> On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: >> >>> well, why dont you try something higher then 480... >>> >>> ------------------------------ >>> Date: Sun, 11 Aug 2013 20:37:49 -0500 >>> Subject: Re: [App_rpt-users] RTCM simulcast help >>> From: mhebert1975 at gmail.com >>> To: telesistant at hotmail.com >>> CC: app_rpt-users at ohnosec.org >>> >>> 1) S/W Version: 1.26 08/10/2013 on both of them >>> >>> 2) 480 on both of them >>> >>> >>> On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: >>> >>> 1) What version of RTCM firmware are you running? >>> >>> 2) What do you have your TxBufferLength set to (in the RTCM) ? >>> >>> Jim >>> >>> ------------------------------ >>> Date: Sun, 11 Aug 2013 19:43:36 -0500 >>> From: mhebert1975 at gmail.com >>> To: app_rpt-users at ohnosec.org >>> Subject: [App_rpt-users] RTCM simulcast help >>> >>> All, >>> >>> I am trying to enable simulcast on my system. I have gone into the >>> voter.conf and added the "transmit" statement. The 2nd repeater is not >>> transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 >>> or the red TX indicator lighting up >>> >>> I have done a astres.sh and rebooted both RTCMs >>> >>> *Here is my voter.conf* >>> >>> [general] >>> port = 667 >>> buflen = 120 >>> password = xxx >>> >>> [28304] >>> KD5DFB_main=xxx,transmit,master >>> KD5DFB_site1=xxx,transmit >>> >>> >>> *Here is my menu 98 on the RTCM * >>> >>> GPS Lock: 1 >>> Connected: 1 >>> COR: 1 >>> EXT CTCSS IN: 0 >>> PTT: 0 >>> RSSI: 255 >>> Current Samples / Sec.: 8000 >>> Current Peak Audio Level: 1496 >>> Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 >>> Current Time: Mon Aug 12, 2013 00:40:50.800 >>> Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec >>> Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec >>> Last Rx Pkt index: 0, inbounds: 0 >>> >>> >>> _______________________________________________ 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 mhebert1975 at gmail.com Mon Aug 12 03:48:20 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 22:48:20 -0500 Subject: [App_rpt-users] COP 4(Test Tone On/Off) In-Reply-To: References: Message-ID: Thank you! On Sun, Aug 11, 2013 at 10:37 PM, Tim Sawyer wrote: > 3kHz please read http://ohnosec.org/drupal/node/28 > -- > Tim > :wq > > On Aug 11, 2013, at 8:07 PM, Michael Hebert wrote: > > > When I use COP 4 (Test Tone On/Off), what level audio is it going to > send to the transmitter? > > _______________________________________________ > > App_rpt-users mailing list > > App_rpt-users at ohnosec.org > > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Mon Aug 12 03:58:25 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 11 Aug 2013 20:58:25 -0700 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: Message-ID: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> Are other clients supposed to transmit, and do they? -- Tim :wq On Aug 11, 2013, at 8:46 PM, Michael Hebert wrote: > I just changed menu 18=0 on both rtcms. I also changed the menu 7 to 3000. > > No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' > > No TX on client 2 now > > > On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer wrote: > Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. Leave the TX buffers long - around 2000 or 3000 until you figure out what is wrong. > > Are you getting any strange message on the Asterisk console with verbose level 3? > -- > Tim > :wq > > On Aug 11, 2013, at 7:58 PM, Michael Hebert wrote: > >> Very interesting. Playing around with the settings on both RTCMs and found it works with menu 7 set for 600 and menu 18 set for 1. >> >> If I set menu 18 to 0 the non master client, it will not transmit. >> >> Also, I checked my rpt.conf and duplex=2 >> >> >> On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: >> This might sound like an odd question, but did chan_voter compile cleanly for you? I just grabbed the latest svn code and it did not compile for me at all. The error it gave me I would need to check tomorrow, as I'm currently not at the computer. >> >> Matthew Pitts >> N8OHU >> >> Sent from my Verizon Wireless 4G LTE smartphone >> >> -------- Original Message -------- >> Subject:Re: [App_rpt-users] RTCM simulcast help >> From :Michael Hebert >> Date :Sun, 11-Aug-2013 21:54 >> To :Jim Duuuude >> CC :app_rpt mailing list >> >> Just changed both of them to 3000 and rebooted. Also, rebooted the asterisk machine. >> >> Still no TX on KD5DFB_site1=xxx,transmit >> >> >> On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: >> well, why dont you try something higher then 480... >> >> Date: Sun, 11 Aug 2013 20:37:49 -0500 >> Subject: Re: [App_rpt-users] RTCM simulcast help >> From: mhebert1975 at gmail.com >> To: telesistant at hotmail.com >> CC: app_rpt-users at ohnosec.org >> >> 1) S/W Version: 1.26 08/10/2013 on both of them >> >> 2) 480 on both of them >> >> >> On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: >> 1) What version of RTCM firmware are you running? >> >> 2) What do you have your TxBufferLength set to (in the RTCM) ? >> >> Jim >> >> Date: Sun, 11 Aug 2013 19:43:36 -0500 >> From: mhebert1975 at gmail.com >> To: app_rpt-users at ohnosec.org >> Subject: [App_rpt-users] RTCM simulcast help >> >> All, >> >> I am trying to enable simulcast on my system. I have gone into the voter.conf and added the "transmit" statement. The 2nd repeater is not transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 or the red TX indicator lighting up >> >> I have done a astres.sh and rebooted both RTCMs >> >> Here is my voter.conf >> >> [general] >> port = 667 >> buflen = 120 >> password = xxx >> >> [28304] >> KD5DFB_main=xxx,transmit,master >> KD5DFB_site1=xxx,transmit >> >> >> Here is my menu 98 on the RTCM >> >> GPS Lock: 1 >> Connected: 1 >> COR: 1 >> EXT CTCSS IN: 0 >> PTT: 0 >> RSSI: 255 >> Current Samples / Sec.: 8000 >> Current Peak Audio Level: 1496 >> Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 >> Current Time: Mon Aug 12, 2013 00:40:50.800 >> Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec >> Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec >> Last Rx Pkt index: 0, inbounds: 0 >> >> >> _______________________________________________ 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 tim.sawyer at me.com Mon Aug 12 03:59:36 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 11 Aug 2013 20:59:36 -0700 Subject: [App_rpt-users] COP 4(Test Tone On/Off) In-Reply-To: References: Message-ID: You are welcome! Enjoy. -- Tim :wq On Aug 11, 2013, at 8:48 PM, Michael Hebert wrote: > Thank you! > > > On Sun, Aug 11, 2013 at 10:37 PM, Tim Sawyer wrote: > 3kHz please read http://ohnosec.org/drupal/node/28 > -- > Tim > :wq > > On Aug 11, 2013, at 8:07 PM, Michael Hebert wrote: > > > When I use COP 4 (Test Tone On/Off), what level audio is it going to send to the transmitter? > > _______________________________________________ > > 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 mhebert1975 at gmail.com Mon Aug 12 04:11:22 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 23:11:22 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> References: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> Message-ID: Yes, I have 2 clients and the first 1 is transmitting. What is also interesting is client 2 will transmit telemetry. ie CW ID, anything using rpt fun 28304 like COP 4 [28304] KD5DFB_main=xxx,transmit,master KD5DFB_site1=xxx,transmit On Sun, Aug 11, 2013 at 10:58 PM, Tim Sawyer wrote: > Are other clients supposed to transmit, and do they? > -- > Tim > :wq > > On Aug 11, 2013, at 8:46 PM, Michael Hebert wrote: > > I just changed menu 18=0 on both rtcms. I also changed the menu 7 to 3000. > > No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' > > No TX on client 2 now > > > On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer wrote: > >> Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. >> Leave the TX buffers long - around 2000 or 3000 until you figure out what >> is wrong. >> >> Are you getting any strange message on the Asterisk console with verbose >> level 3? >> -- >> Tim >> :wq >> >> On Aug 11, 2013, at 7:58 PM, Michael Hebert >> wrote: >> >> Very interesting. Playing around with the settings on both RTCMs and >> found it works with menu 7 set for 600 and menu 18 set for 1. >> >> If I set menu 18 to 0 the non master client, it will not transmit. >> >> Also, I checked my rpt.conf and duplex=2 >> >> >> On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: >> >>> This might sound like an odd question, but did chan_voter compile >>> cleanly for you? I just grabbed the latest svn code and it did not compile >>> for me at all. The error it gave me I would need to check tomorrow, as I'm >>> currently not at the computer. >>> >>> Matthew Pitts >>> N8OHU >>> >>> Sent from my Verizon Wireless 4G LTE smartphone >>> >>> -------- Original Message -------- >>> Subject:Re: [App_rpt-users] RTCM simulcast help >>> From :Michael Hebert ** >>> Date :Sun, 11-Aug-2013 21:54 >>> To :Jim Duuuude ** >>> CC :app_rpt mailing list ** >>> >>> Just changed both of them to 3000 and rebooted. Also, rebooted the >>> asterisk machine. >>> >>> Still no TX on KD5DFB_site1=xxx,transmit >>> >>> >>> On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: >>> >>>> well, why dont you try something higher then 480... >>>> >>>> ------------------------------ >>>> Date: Sun, 11 Aug 2013 20:37:49 -0500 >>>> Subject: Re: [App_rpt-users] RTCM simulcast help >>>> From: mhebert1975 at gmail.com >>>> To: telesistant at hotmail.com >>>> CC: app_rpt-users at ohnosec.org >>>> >>>> 1) S/W Version: 1.26 08/10/2013 on both of them >>>> >>>> 2) 480 on both of them >>>> >>>> >>>> On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: >>>> >>>> 1) What version of RTCM firmware are you running? >>>> >>>> 2) What do you have your TxBufferLength set to (in the RTCM) ? >>>> >>>> Jim >>>> >>>> ------------------------------ >>>> Date: Sun, 11 Aug 2013 19:43:36 -0500 >>>> From: mhebert1975 at gmail.com >>>> To: app_rpt-users at ohnosec.org >>>> Subject: [App_rpt-users] RTCM simulcast help >>>> >>>> All, >>>> >>>> I am trying to enable simulcast on my system. I have gone into the >>>> voter.conf and added the "transmit" statement. The 2nd repeater is not >>>> transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 >>>> or the red TX indicator lighting up >>>> >>>> I have done a astres.sh and rebooted both RTCMs >>>> >>>> *Here is my voter.conf* >>>> >>>> [general] >>>> port = 667 >>>> buflen = 120 >>>> password = xxx >>>> >>>> [28304] >>>> KD5DFB_main=xxx,transmit,master >>>> KD5DFB_site1=xxx,transmit >>>> >>>> >>>> *Here is my menu 98 on the RTCM * >>>> >>>> GPS Lock: 1 >>>> Connected: 1 >>>> COR: 1 >>>> EXT CTCSS IN: 0 >>>> PTT: 0 >>>> RSSI: 255 >>>> Current Samples / Sec.: 8000 >>>> Current Peak Audio Level: 1496 >>>> Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 >>>> Current Time: Mon Aug 12, 2013 00:40:50.800 >>>> Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec >>>> Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec >>>> Last Rx Pkt index: 0, inbounds: 0 >>>> >>>> >>>> _______________________________________________ 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 tim.sawyer at me.com Mon Aug 12 04:16:29 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 11 Aug 2013 21:16:29 -0700 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> Message-ID: <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com> That's weird, so only the master transmits. Hmmmm... what happens when you do *CLI>voter display 28304? Are they both there? You do have different passwords for each client, right? -- Tim :wq On Aug 11, 2013, at 9:11 PM, Michael Hebert wrote: > Yes, I have 2 clients and the first 1 is transmitting. What is also interesting is client 2 will transmit telemetry. ie CW ID, anything using rpt fun 28304 like COP 4 > > [28304] > KD5DFB_main=xxx,transmit,master > KD5DFB_site1=xxx,transmit > > > On Sun, Aug 11, 2013 at 10:58 PM, Tim Sawyer wrote: > Are other clients supposed to transmit, and do they? > -- > Tim > :wq > > On Aug 11, 2013, at 8:46 PM, Michael Hebert wrote: > >> I just changed menu 18=0 on both rtcms. I also changed the menu 7 to 3000. >> >> No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' >> >> No TX on client 2 now >> >> >> On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer wrote: >> Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. Leave the TX buffers long - around 2000 or 3000 until you figure out what is wrong. >> >> Are you getting any strange message on the Asterisk console with verbose level 3? >> -- >> Tim >> :wq >> >> On Aug 11, 2013, at 7:58 PM, Michael Hebert wrote: >> >>> Very interesting. Playing around with the settings on both RTCMs and found it works with menu 7 set for 600 and menu 18 set for 1. >>> >>> If I set menu 18 to 0 the non master client, it will not transmit. >>> >>> Also, I checked my rpt.conf and duplex=2 >>> >>> >>> On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: >>> This might sound like an odd question, but did chan_voter compile cleanly for you? I just grabbed the latest svn code and it did not compile for me at all. The error it gave me I would need to check tomorrow, as I'm currently not at the computer. >>> >>> Matthew Pitts >>> N8OHU >>> >>> Sent from my Verizon Wireless 4G LTE smartphone >>> >>> -------- Original Message -------- >>> Subject:Re: [App_rpt-users] RTCM simulcast help >>> From :Michael Hebert >>> Date :Sun, 11-Aug-2013 21:54 >>> To :Jim Duuuude >>> CC :app_rpt mailing list >>> >>> Just changed both of them to 3000 and rebooted. Also, rebooted the asterisk machine. >>> >>> Still no TX on KD5DFB_site1=xxx,transmit >>> >>> >>> On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: >>> well, why dont you try something higher then 480... >>> >>> Date: Sun, 11 Aug 2013 20:37:49 -0500 >>> Subject: Re: [App_rpt-users] RTCM simulcast help >>> From: mhebert1975 at gmail.com >>> To: telesistant at hotmail.com >>> CC: app_rpt-users at ohnosec.org >>> >>> 1) S/W Version: 1.26 08/10/2013 on both of them >>> >>> 2) 480 on both of them >>> >>> >>> On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: >>> 1) What version of RTCM firmware are you running? >>> >>> 2) What do you have your TxBufferLength set to (in the RTCM) ? >>> >>> Jim >>> >>> Date: Sun, 11 Aug 2013 19:43:36 -0500 >>> From: mhebert1975 at gmail.com >>> To: app_rpt-users at ohnosec.org >>> Subject: [App_rpt-users] RTCM simulcast help >>> >>> All, >>> >>> I am trying to enable simulcast on my system. I have gone into the voter.conf and added the "transmit" statement. The 2nd repeater is not transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 or the red TX indicator lighting up >>> >>> I have done a astres.sh and rebooted both RTCMs >>> >>> Here is my voter.conf >>> >>> [general] >>> port = 667 >>> buflen = 120 >>> password = xxx >>> >>> [28304] >>> KD5DFB_main=xxx,transmit,master >>> KD5DFB_site1=xxx,transmit >>> >>> >>> Here is my menu 98 on the RTCM >>> >>> GPS Lock: 1 >>> Connected: 1 >>> COR: 1 >>> EXT CTCSS IN: 0 >>> PTT: 0 >>> RSSI: 255 >>> Current Samples / Sec.: 8000 >>> Current Peak Audio Level: 1496 >>> Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 >>> Current Time: Mon Aug 12, 2013 00:40:50.800 >>> Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec >>> Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec >>> Last Rx Pkt index: 0, inbounds: 0 >>> >>> >>> _______________________________________________ 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 mhebert1975 at gmail.com Mon Aug 12 04:21:45 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 23:21:45 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com> References: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com> Message-ID: I know, really weird. If i just change client 2 rtcm menu item 18=0 it will start transmitting and it is still voting. On Sun, Aug 11, 2013 at 11:16 PM, Tim Sawyer wrote: > That's weird, so only the master transmits. Hmmmm... > > what happens when you do *CLI>voter display 28304? Are they both there? > > You do have different passwords for each client, right? > -- > Tim > :wq > > On Aug 11, 2013, at 9:11 PM, Michael Hebert wrote: > > Yes, I have 2 clients and the first 1 is transmitting. What is also > interesting is client 2 will transmit telemetry. ie CW ID, anything using > rpt fun 28304 like COP 4 > > [28304] > KD5DFB_main=xxx,transmit,master > KD5DFB_site1=xxx,transmit > > > On Sun, Aug 11, 2013 at 10:58 PM, Tim Sawyer wrote: > >> Are other clients supposed to transmit, and do they? >> -- >> Tim >> :wq >> >> On Aug 11, 2013, at 8:46 PM, Michael Hebert >> wrote: >> >> I just changed menu 18=0 on both rtcms. I also changed the menu 7 to >> 3000. >> >> No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' >> >> No TX on client 2 now >> >> >> On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer wrote: >> >>> Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. >>> Leave the TX buffers long - around 2000 or 3000 until you figure out what >>> is wrong. >>> >>> Are you getting any strange message on the Asterisk console with verbose >>> level 3? >>> -- >>> Tim >>> :wq >>> >>> On Aug 11, 2013, at 7:58 PM, Michael Hebert >>> wrote: >>> >>> Very interesting. Playing around with the settings on both RTCMs and >>> found it works with menu 7 set for 600 and menu 18 set for 1. >>> >>> If I set menu 18 to 0 the non master client, it will not transmit. >>> >>> Also, I checked my rpt.conf and duplex=2 >>> >>> >>> On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: >>> >>>> This might sound like an odd question, but did chan_voter compile >>>> cleanly for you? I just grabbed the latest svn code and it did not compile >>>> for me at all. The error it gave me I would need to check tomorrow, as I'm >>>> currently not at the computer. >>>> >>>> Matthew Pitts >>>> N8OHU >>>> >>>> Sent from my Verizon Wireless 4G LTE smartphone >>>> >>>> -------- Original Message -------- >>>> Subject:Re: [App_rpt-users] RTCM simulcast help >>>> From :Michael Hebert ** >>>> Date :Sun, 11-Aug-2013 21:54 >>>> To :Jim Duuuude ** >>>> CC :app_rpt mailing list ** >>>> >>>> Just changed both of them to 3000 and rebooted. Also, rebooted the >>>> asterisk machine. >>>> >>>> Still no TX on KD5DFB_site1=xxx,transmit >>>> >>>> >>>> On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: >>>> >>>>> well, why dont you try something higher then 480... >>>>> >>>>> ------------------------------ >>>>> Date: Sun, 11 Aug 2013 20:37:49 -0500 >>>>> Subject: Re: [App_rpt-users] RTCM simulcast help >>>>> From: mhebert1975 at gmail.com >>>>> To: telesistant at hotmail.com >>>>> CC: app_rpt-users at ohnosec.org >>>>> >>>>> 1) S/W Version: 1.26 08/10/2013 on both of them >>>>> >>>>> 2) 480 on both of them >>>>> >>>>> >>>>> On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: >>>>> >>>>> 1) What version of RTCM firmware are you running? >>>>> >>>>> 2) What do you have your TxBufferLength set to (in the RTCM) ? >>>>> >>>>> Jim >>>>> >>>>> ------------------------------ >>>>> Date: Sun, 11 Aug 2013 19:43:36 -0500 >>>>> From: mhebert1975 at gmail.com >>>>> To: app_rpt-users at ohnosec.org >>>>> Subject: [App_rpt-users] RTCM simulcast help >>>>> >>>>> All, >>>>> >>>>> I am trying to enable simulcast on my system. I have gone into the >>>>> voter.conf and added the "transmit" statement. The 2nd repeater is not >>>>> transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 >>>>> or the red TX indicator lighting up >>>>> >>>>> I have done a astres.sh and rebooted both RTCMs >>>>> >>>>> *Here is my voter.conf* >>>>> >>>>> [general] >>>>> port = 667 >>>>> buflen = 120 >>>>> password = xxx >>>>> >>>>> [28304] >>>>> KD5DFB_main=xxx,transmit,master >>>>> KD5DFB_site1=xxx,transmit >>>>> >>>>> >>>>> *Here is my menu 98 on the RTCM * >>>>> >>>>> GPS Lock: 1 >>>>> Connected: 1 >>>>> COR: 1 >>>>> EXT CTCSS IN: 0 >>>>> PTT: 0 >>>>> RSSI: 255 >>>>> Current Samples / Sec.: 8000 >>>>> Current Peak Audio Level: 1496 >>>>> Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 >>>>> Current Time: Mon Aug 12, 2013 00:40:50.800 >>>>> Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec >>>>> Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec >>>>> Last Rx Pkt index: 0, inbounds: 0 >>>>> >>>>> >>>>> _______________________________________________ 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 robert at n5qm.com Mon Aug 12 04:23:26 2013 From: robert at n5qm.com (Robert Garcia) Date: Sun, 11 Aug 2013 23:23:26 -0500 Subject: [App_rpt-users] RTCM Like Setup Message-ID: All, Is there a method to emulate the RTCM functionality, not from a voting perspective, but from the perspective that it is essentially a network based sound card. More specifically I would like to have a remote system, with a URI and PC, forward all of its audio to a central node for processing eliminating the need to use private node numbers at the remote and have them connect to a hub making issuing any connect or disconnect commands to public systems more difficult. Robert N5QM From mhebert1975 at gmail.com Mon Aug 12 04:27:20 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Sun, 11 Aug 2013 23:27:20 -0500 Subject: [App_rpt-users] RTCM Like Setup In-Reply-To: References: Message-ID: Think of the RTCM like a URI that uses a network and/or internet you can put anywhere instead of a USB cable. On Sun, Aug 11, 2013 at 11:23 PM, Robert Garcia wrote: > All, > > Is there a method to emulate the RTCM functionality, not from a voting > perspective, but from the perspective that it is essentially a network > based sound card. > > More specifically I would like to have a remote system, with a URI and > PC, forward all of its audio to a central node for processing > eliminating the need to use private node numbers at the remote and > have them connect to a hub making issuing any connect or disconnect > commands to public systems more difficult. > > Robert > N5QM > _______________________________________________ > 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 robert at n5qm.com Mon Aug 12 04:29:43 2013 From: robert at n5qm.com (Robert Garcia) Date: Sun, 11 Aug 2013 23:29:43 -0500 Subject: [App_rpt-users] RTCM Like Setup In-Reply-To: References: Message-ID: Yes sir, I get that, I'm just trying to emulate that with the URI and PC that I already have at the remotes. I guess what I am looking for is a software package that I can install on the PC that emulates the datastream that a RTCM would send and receive from the app_rpt PC. Robert N5QM On Sun, Aug 11, 2013 at 11:27 PM, Michael Hebert wrote: > Think of the RTCM like a URI that uses a network and/or internet you can put > anywhere instead of a USB cable. > > > On Sun, Aug 11, 2013 at 11:23 PM, Robert Garcia wrote: >> >> All, >> >> Is there a method to emulate the RTCM functionality, not from a voting >> perspective, but from the perspective that it is essentially a network >> based sound card. >> >> More specifically I would like to have a remote system, with a URI and >> PC, forward all of its audio to a central node for processing >> eliminating the need to use private node numbers at the remote and >> have them connect to a hub making issuing any connect or disconnect >> commands to public systems more difficult. >> >> Robert >> N5QM >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > From tim.sawyer at me.com Mon Aug 12 04:32:18 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sun, 11 Aug 2013 21:32:18 -0700 Subject: [App_rpt-users] RTCM Like Setup In-Reply-To: References: Message-ID: <277D03BB-52DA-4BA7-8ABD-3A4375BBF81E@me.com> There is a thing called app_bridge that may do what you want. It permanently connects computers together without using node numbers. But I never used and am not sure I totally understand it. Maybe Duuude will chime in on this. -- Tim :wq On Aug 11, 2013, at 9:23 PM, Robert Garcia wrote: > More specifically I would like to have a remote system, with a URI and > PC, forward all of its audio to a central node for processing > eliminating the need to use private node numbers at the remote and > have them connect to a hub making issuing any connect or disconnect > commands to public systems more difficult. From frostgfx at gmail.com Mon Aug 12 09:07:36 2013 From: frostgfx at gmail.com (Jon Frost) Date: Mon, 12 Aug 2013 05:07:36 -0400 Subject: [App_rpt-users] Help with Allstar Node Programming Scripts Message-ID: Greetings: I hope I have reached the right mailing list server that deals with using CentOS for running an Allstar 220Mhz Radio Node. I need concrete help with what to do to get my node up and running as far as programming scripts, as I have already successfully installed CentOS 5.? on a Dell Mini Tower. I have installed the Dongle between my computer and my Alinco 235T MK III 220 Mhz ham radio. Any and all help greatly appreciated. KB1TAC Jon Frost 22 Norwood Ave Florence MA 01062 413-348-0591 frostgfx at gmail.com www.meowmixmedia.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From buddy at brannan.name Mon Aug 12 13:45:35 2013 From: buddy at brannan.name (Buddy Brannan) Date: Mon, 12 Aug 2013 09:45:35 -0400 Subject: [App_rpt-users] Help with Allstar Node Programming Scripts In-Reply-To: References: Message-ID: <262A10BE-4B7B-4914-8C82-2990627BB927@brannan.name> Hi, The place to start would be the support section of http://www.allstarlink.org If you got the Acid distro, which is based on Centos 5.something (5.7, I think), it?s pretty easy, but if you got a straight Centos, it shouldn?t be much harder. I guess the first question is, have you gotten the Asterisk package from the allstarlink.org support section? If you have, you?re most of the way there. Also, have you been assigned a node number and a user ID? Once you get up and running, feel free to connect to my node 2331. -- Buddy Brannan, KB5ELV - Erie, PA Phone: (814) 860-3194 or 888-75-BUDDY On Aug 12, 2013, at 5:07 AM, Jon Frost wrote: > Greetings: > > I hope I have reached the right mailing list server that deals with using CentOS for running an Allstar 220Mhz Radio Node. > I need concrete help with what to do to get my node up and running as far as programming scripts, as I have already successfully installed CentOS 5.? on a Dell Mini Tower. I have installed the Dongle between my computer and my Alinco 235T MK III 220 Mhz ham radio. > > Any and all help greatly appreciated. > > KB1TAC > Jon Frost > 22 Norwood Ave > Florence MA 01062 > 413-348-0591 > frostgfx at gmail.com > www.meowmixmedia.net > > > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From w5omr at att.net Mon Aug 12 17:53:32 2013 From: w5omr at att.net (Geoff) Date: Mon, 12 Aug 2013 12:53:32 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: Message-ID: <5209211C.8070204@att.net> On 08/11/2013 10:46 PM, Michael Hebert wrote: > I just changed menu 18=0 on both rtcms. I also changed the menu 7 to > 3000. > > No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' > > No TX on client 2 now > > > On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer > wrote: > > Menu 18 = 1 will be making local PTT. You want 18 = 0 with > duplex=2. Leave the TX buffers long - around 2000 or 3000 until > you figure out what is wrong. > > Are you getting any strange message on the Asterisk console with > verbose level 3? > > I get more info with calling #> asterisk -Rvvvv Level 4 of verbosity is fairly complete in what it's doing, without 'overwhelming' information using level 5 or 6. (Ugh!) Just my opinion. Your mileage may vary. Use at your own peril. 73 = Best Regards, -Geoff/W5OMR -------------- next part -------------- An HTML attachment was scrubbed... URL: From Ramesh at va3uv.com Tue Aug 13 00:25:20 2013 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Mon, 12 Aug 2013 20:25:20 -0400 Subject: [App_rpt-users] ACID on a Netbook? Message-ID: <52097CF0.3020608@va3uv.com> Hi Guys; Wonder if anyone is running ACID or Limey, etc., on a Netbook with say 2 full-duplex repeater (running chan_usbradio)? Thx, Ramesh. From kc7rjk at comcast.net Tue Aug 13 00:31:30 2013 From: kc7rjk at comcast.net (Ross Johnson) Date: Mon, 12 Aug 2013 17:31:30 -0700 Subject: [App_rpt-users] Remote Base commands/operation In-Reply-To: References: Message-ID: <92BE4A0110AE48B4A22A7F7CAC2937FC@SamUltraBook> Hello, I am also having the same trouble as Mark, we?ve been working together on this. It has become very frustration trying to remote base the ic706. We have made good progress, CIV addresses are correct after some google-ing. Turns out the Asterisk/app_rpt how-to?s are not very detailed or even correct. The CIV addr for the ic706MKii is 4e hex, the rpt.conf file needs this in decimal where the how-to does not state this fact and says to enter 88, then it says enter 98 somewhere else on the page. While in reality 4e hex = 78 dec. so that?s what was entered in rpt.conf file and we have ?some? communication with the radio. When you connect to the remote base node we still hear the ?invalid frequency? announcement but the radio will switch from VFO to MEM mode and vise versa depending on what mode its in but that?s all we can get it to do. So has this system EVER worked? All of the google-ing has led me to find 0 working ic706 remote bases, and one other who's in the same exact place as us K0KN. If not why is it advertised on the Asterisk/app_rpt site? I KNOW the node is talking to the radio watching the CIV via a null modem cable in HyperTerminal, when you connect to the node where it switches from or to VFO mode. I can see that command in HyperTerminal but I can?t get any other commands out of the node like the remote-function-stanza commands. What are we doing wrong? How are we supposed to enter the commands? Or better yet, how do you send the remote-function-stanza commands out to the radio? Any help or pointers would be much appreciated. Thanks for reading 73 Ross www.kc7rjk.net From: Mark Johnston Sent: Saturday, August 10, 2013 10:59 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] Remote Base commands/operation Hello everyone, Can anyone explain in better detail how the remote base operates, as far as users are concerned. i.e. What command do you enter to mover the frequency +500 In the documentation it shows adding? This line amongest others to the rpt.conf file. 719=remote,112 ; Bump +500 so does that mean dial 719 or *719 or? Assuming no authentication, and again if you add authentication what does the command look like? Is it *4node then a command like 719? Node is configured as a remote base, shows up with R in the node status page... Everything should be right there.. Also for the rpt.conf do I need all of this or am I missing something? ; Serial port for control ioport = /dev/ttyS0 ; Radio Type remote = ic706 ; Function list from link functions = remote-functions ; Function list from phone phone_functions = remote-functions ; Authorization level authlevel = 0 civaddr=98 duplex=0 erxgain=-3 etxgain=3 ;controlstates=controlstates scheduler=schedule29626 morse=morse29626 macro=macro29626 functions=functions29626 phone_functions=functions29626 link_functions=functions29626 link_functions=functions29626 telemetry=telemetry wait_times=wait-times context = radio callerid = "Repeater" <0000000000> idrecording = |iKC7DMF accountcode=RADIO hangtime=100 althangtime=100 totime=170000 idtime=540000 politeid=3000 etc... Are any of the std lines needed? or just the ones at top? Do I need to have all of these or are they built in? [functions-remote] 0=remote,1 ; Retrieve Memory 1=remote,2 ; Set freq. 2=remote,3 ; Set tx PL tone 3=remote,4 ; Set rx PL tone 40=remote,100 ; Rx PL off 41=remote,101 ; Rx PL on 42=remote,102 ; Tx PL off 43=remote,103 ; Tx PL on 44=remote,104 ; Low Power 45=remote,105 ; Medium Power 46=remote,106 ; High Power 711=remote,107 ; Bump -20 714=remote,108 ; Bump -100 717=remote,109 ; Bump -500 713=remote,110 ; Bump +20 716=remote,111 ; Bump +100 713=remote,110 ; Bump +20 716=remote,111 ; Bump +100 719=remote,112 ; Bump +500 721=remote,113 ; Scan - slow 724=remote,114 ; Scan - quick 727=remote,115 ; Scan - fast 723=remote,116 ; Scan + slow 726=remote,117 ; Scan + quick 729=remote,118 ; Scan + fast 79=remote,119 ; Tune (brief AM transmission for automatic antenna tuner) 51=remote,5 ; Long status query 52=remote,140 ; Short status query 67=remote,210 ; Send a * 69=remote,211 ; Send a # 91=remote,99,kc7dmf,G ; Remote base login. ; Define a different dtmf sequence for each user which is ; authorized to use the remote base to control access to it. ; For examble 9139583=remote,99,WB6NIL,G would grant access to ; the remote base and announce WB6NIL as being logged in. ; Another entry, 9148351=remote,99,WA6ZFT,E would grant access to ; the remote base and announce WA6ZFT as being logged in. ; When the remote base is disconnected from the originating node, the ; user will be logged out. The LICENSETAG parameter can be optionally specified ; to enforce TX band limits. http://www.voip-info.org/wiki/view/Asterisk+config+rpt.conf http://ohnosec.org/drupal/node/44 The second link a bit less clear to me... If anyone has an idea, or knows how this is supposed to work, I would appreciate it. Maybe some real world rpt.conf file you could send me, or other files I need to setup as well. A command example howto... Thanks, Mark KC7DMF -------------------------------------------------------------------------------- _______________________________________________ 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 robert at n5qm.com Tue Aug 13 00:40:11 2013 From: robert at n5qm.com (Robert Garcia) Date: Mon, 12 Aug 2013 19:40:11 -0500 Subject: [App_rpt-users] ACID on a Netbook? In-Reply-To: <52097CF0.3020608@va3uv.com> References: <52097CF0.3020608@va3uv.com> Message-ID: Ramesh, I am running two nodes with SimpleUSB and two hubs on a thin client that has a 1Ghz processor and 1GB or RAM, so I don't expect a netbook to be a problem. :) Robert N5QM On Mon, Aug 12, 2013 at 7:25 PM, Ramesh Dhami (VA3UV) wrote: > Hi Guys; > > Wonder if anyone is running ACID or Limey, etc., on a Netbook with say 2 > full-duplex repeater (running chan_usbradio)? > > Thx, > > Ramesh. > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From Ramesh at va3uv.com Tue Aug 13 00:51:03 2013 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Mon, 12 Aug 2013 20:51:03 -0400 Subject: [App_rpt-users] ACID on a Netbook? In-Reply-To: References: <52097CF0.3020608@va3uv.com> Message-ID: <520982F7.1030808@va3uv.com> Hi Robert; There is a big difference between SimpleUSB and chan_usbradio. The latter is more CPU intensive due to DSP handling. I have also used the HP Thin Clients with chan_simpleusb - but when I tried to run chan_usbradio on a thin client, it cracked under pressure! Thanks, Ramesh. On 12/08/2013 8:40 PM, Robert Garcia wrote: > Ramesh, > > I am running two nodes with SimpleUSB and two hubs on a thin client > that has a 1Ghz processor and 1GB or RAM, so I don't expect a netbook > to be a problem. :) > > Robert > N5QM > > On Mon, Aug 12, 2013 at 7:25 PM, Ramesh Dhami (VA3UV) wrote: >> Hi Guys; >> >> Wonder if anyone is running ACID or Limey, etc., on a Netbook with say 2 >> full-duplex repeater (running chan_usbradio)? >> >> Thx, >> >> Ramesh. >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From benjamin at kb9lfz.com Tue Aug 13 01:02:22 2013 From: benjamin at kb9lfz.com (Benjamin Naber) Date: Mon, 12 Aug 2013 21:02:22 -0400 Subject: [App_rpt-users] ACID on a Netbook? In-Reply-To: <520982F7.1030808@va3uv.com> References: <52097CF0.3020608@va3uv.com> <520982F7.1030808@va3uv.com> Message-ID: <1376355742.6263.74.camel@benjamin-dell> Ramesh, Please explain test conditions, standards expected, and actual results. I'm running Limey Linux on a thin client. I am using usbradio.conf/chan_usbradio and I've experience zero hangs/freezes/drop-outs/you-name-it. DSP = CPU intensive? Unless you are running many nodes on one machine that use DSP functions, then I don't think so. ~Benjamin, KB9LFZ On Mon, 2013-08-12 at 20:51 -0400, Ramesh Dhami (VA3UV) wrote: > Hi Robert; > > There is a big difference between SimpleUSB and chan_usbradio. The > latter is more CPU intensive due to DSP handling. > > I have also used the HP Thin Clients with chan_simpleusb - but when I > tried to run chan_usbradio on a thin client, it cracked under pressure! > > Thanks, > > Ramesh. > > > On 12/08/2013 8:40 PM, Robert Garcia wrote: > > Ramesh, > > > > I am running two nodes with SimpleUSB and two hubs on a thin client > > that has a 1Ghz processor and 1GB or RAM, so I don't expect a netbook > > to be a problem. :) > > > > Robert > > N5QM > > > > On Mon, Aug 12, 2013 at 7:25 PM, Ramesh Dhami (VA3UV) wrote: > >> Hi Guys; > >> > >> Wonder if anyone is running ACID or Limey, etc., on a Netbook with say 2 > >> full-duplex repeater (running chan_usbradio)? > >> > >> Thx, > >> > >> Ramesh. > >> > >> _______________________________________________ > >> 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 robert at n5qm.com Tue Aug 13 01:05:15 2013 From: robert at n5qm.com (Robert Garcia) Date: Mon, 12 Aug 2013 20:05:15 -0500 Subject: [App_rpt-users] ACID on a Netbook? In-Reply-To: <1376355742.6263.74.camel@benjamin-dell> References: <52097CF0.3020608@va3uv.com> <520982F7.1030808@va3uv.com> <1376355742.6263.74.camel@benjamin-dell> Message-ID: Ramesh, I tried usbradio on the thin client as well and it use about 23% CPU instead of about 8% per node, it performed ok, but I did notice some audio dropouts. It is important to note that I did not use a service monitor to tune it while running in usbradio mode though, so that very well may have been the cause. I'm using T5730s btw, if that matters.. Robert N5QM On Mon, Aug 12, 2013 at 8:02 PM, Benjamin Naber wrote: > Ramesh, > > Please explain test conditions, standards expected, and actual results. > > I'm running Limey Linux on a thin client. I am using > usbradio.conf/chan_usbradio and I've experience zero > hangs/freezes/drop-outs/you-name-it. > > DSP = CPU intensive? Unless you are running many nodes on one machine > that use DSP functions, then I don't think so. > > ~Benjamin, KB9LFZ > > On Mon, 2013-08-12 at 20:51 -0400, Ramesh Dhami (VA3UV) wrote: >> Hi Robert; >> >> There is a big difference between SimpleUSB and chan_usbradio. The >> latter is more CPU intensive due to DSP handling. >> >> I have also used the HP Thin Clients with chan_simpleusb - but when I >> tried to run chan_usbradio on a thin client, it cracked under pressure! >> >> Thanks, >> >> Ramesh. >> >> >> On 12/08/2013 8:40 PM, Robert Garcia wrote: >> > Ramesh, >> > >> > I am running two nodes with SimpleUSB and two hubs on a thin client >> > that has a 1Ghz processor and 1GB or RAM, so I don't expect a netbook >> > to be a problem. :) >> > >> > Robert >> > N5QM >> > >> > On Mon, Aug 12, 2013 at 7:25 PM, Ramesh Dhami (VA3UV) wrote: >> >> Hi Guys; >> >> >> >> Wonder if anyone is running ACID or Limey, etc., on a Netbook with say 2 >> >> full-duplex repeater (running chan_usbradio)? >> >> >> >> Thx, >> >> >> >> Ramesh. >> >> >> >> _______________________________________________ >> >> 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 hammin75 at gmail.com Tue Aug 13 01:45:11 2013 From: hammin75 at gmail.com (Bradley Haney) Date: Mon, 12 Aug 2013 20:45:11 -0500 Subject: [App_rpt-users] (no subject) Message-ID: Has anyone got a wx script that is working... trying to I se one from tje net but no joy -------------- next part -------------- An HTML attachment was scrubbed... URL: From Ramesh at va3uv.com Tue Aug 13 02:09:10 2013 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Mon, 12 Aug 2013 22:09:10 -0400 Subject: [App_rpt-users] ACID on a Netbook? In-Reply-To: <1376355742.6263.74.camel@benjamin-dell> References: <52097CF0.3020608@va3uv.com> <520982F7.1030808@va3uv.com> <1376355742.6263.74.camel@benjamin-dell> Message-ID: <52099546.3030907@va3uv.com> On 12/08/2013 9:02 PM, Benjamin Naber wrote: > Ramesh, > > Please explain test conditions, standards expected, and actual results. > > I'm running Limey Linux on a thin client. I am using > usbradio.conf/chan_usbradio and I've experience zero > hangs/freezes/drop-outs/you-name-it. > > DSP = CPU intensive? Unless you are running many nodes on one machine > that use DSP functions, then I don't think so. > <-- Hi Benjamin; I was using ACID on a HP T5710 (~1.2GHz proc with 256MB of RAM, IIRC). I just tested with one node - if I used chan_simpleusb and half-duplex, the repeater worked fine (using an external controller of course). If I switched to chan_usbradio, dsp, full duplex (removing the external controller), I found that the repeater would remain keyed after the input signal was removed. I tried this a few times, got the same results. So, since the HP worked fine with an external controller, I used chan_simpleusb. For my own / current application, I am pursuing an IBM ThinkPad laptop Intel Dual core ~ 1.8GHz proc' which, I believe should work out fine. Cheers, Ramesh. 2182 / 2424 down due to (yet another) zapped SATA controller in an IBM Think Centre 9210. From jedscoot at yahoo.com Tue Aug 13 08:01:38 2013 From: jedscoot at yahoo.com (Ian Wilson) Date: Tue, 13 Aug 2013 09:01:38 +0100 (BST) Subject: [App_rpt-users] ACID on a Netbook? In-Reply-To: <52099546.3030907@va3uv.com> References: <52097CF0.3020608@va3uv.com> <520982F7.1030808@va3uv.com> <1376355742.6263.74.camel@benjamin-dell> <52099546.3030907@va3uv.com> Message-ID: <1376380898.44603.YahooMailNeo@web172001.mail.ir2.yahoo.com> Ramesh, Hello.. For info: I have had a 2008 Acer Aspire netbook 1gb running 2 / 3 nodes simplex for over a year now via 3G.? The 3G is the problem !! 73, Ian.. ________________________________ From: Ramesh Dhami (VA3UV) To: app_rpt Sent: Tuesday, 13 August 2013, 3:09 Subject: Re: [App_rpt-users] ACID on a Netbook? On 12/08/2013 9:02 PM, Benjamin Naber wrote: > Ramesh, > > Please explain test conditions, standards expected, and actual results. > > I'm running Limey Linux on a thin client. I am using > usbradio.conf/chan_usbradio and I've experience zero > hangs/freezes/drop-outs/you-name-it. > > DSP = CPU intensive? Unless you are running many nodes on one machine > that use DSP functions, then I don't think so. > <-- Hi Benjamin;? I was using ACID on a HP T5710 (~1.2GHz proc with 256MB of RAM, IIRC).? I just tested with one node - if I used chan_simpleusb and half-duplex, the repeater worked fine (using an external controller of course). If I switched to chan_usbradio, dsp, full duplex (removing the external controller), I found that the repeater would remain keyed after the input signal was removed.? I tried this a few times, got the same results.? So, since the HP worked fine with an external controller, I used chan_simpleusb. For my own / current application, I am pursuing an IBM ThinkPad laptop Intel Dual core ~ 1.8GHz proc' which, I believe should work out fine. Cheers, Ramesh. 2182 / 2424 down due to (yet another) zapped SATA controller in an IBM Think Centre 9210. _______________________________________________ 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 jrorke at cogeco.ca Tue Aug 13 12:06:14 2013 From: jrorke at cogeco.ca (Jon Rorke) Date: Tue, 13 Aug 2013 08:06:14 -0400 Subject: [App_rpt-users] ACID on a Netbook? In-Reply-To: <52099546.3030907@va3uv.com> References: <52097CF0.3020608@va3uv.com> <520982F7.1030808@va3uv.com> <1376355742.6263.74.camel@benjamin-dell> <52099546.3030907@va3uv.com> Message-ID: <520A2136.5010908@cogeco.ca> HI Ramesh, Just about all the IBM/Lenovo PCs I used had failed in similar fashion. I have had much more luck with used HP Compaq boxes. I cant see why not an atom net book couldnt do the job. The only problem is loading Centos/asterisk on it as there is no cd rom. I have not been able to access any pc with out a standard CD Rom. I have tried usb external CD rom but no dice. Still would be nice to load from USB stick too. It would make install real easy too. The Xipper distro (Redhat Fidora) can be loaded from USB stick so why cant ACID? Jon VA3RQ On 8/12/2013 10:09 PM, Ramesh Dhami (VA3UV) wrote: > On 12/08/2013 9:02 PM, Benjamin Naber wrote: >> Ramesh, >> >> Please explain test conditions, standards expected, and actual results. >> >> I'm running Limey Linux on a thin client. I am using >> usbradio.conf/chan_usbradio and I've experience zero >> hangs/freezes/drop-outs/you-name-it. >> >> DSP = CPU intensive? Unless you are running many nodes on one machine >> that use DSP functions, then I don't think so. >> > > <-- Hi Benjamin; I was using ACID on a HP T5710 (~1.2GHz proc with > 256MB of RAM, IIRC). I just tested with one node - if I used > chan_simpleusb and half-duplex, the repeater worked fine (using an > external controller of course). > > If I switched to chan_usbradio, dsp, full duplex (removing the > external controller), I found that the repeater would remain keyed > after the input signal was removed. I tried this a few times, got the > same results. So, since the HP worked fine with an external > controller, I used chan_simpleusb. > > For my own / current application, I am pursuing an IBM ThinkPad laptop > Intel Dual core ~ 1.8GHz proc' which, I believe should work out fine. > > Cheers, > > Ramesh. > > 2182 / 2424 down due to (yet another) zapped SATA controller in an IBM > Think Centre 9210. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > From n3fe at repeater.net Tue Aug 13 12:10:57 2013 From: n3fe at repeater.net (Corey Dean) Date: Tue, 13 Aug 2013 08:10:57 -0400 Subject: [App_rpt-users] RTCM Like Setup In-Reply-To: References: , Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E04833C76C758@exchange.mail.repeater.net> I do that now with Xipar and the voting receivers... Corey N3FE ________________________________________ From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Robert Garcia [robert at n5qm.com] Sent: Monday, August 12, 2013 12:29 AM To: Michael Hebert Cc: APP_RPT Subject: Re: [App_rpt-users] RTCM Like Setup Yes sir, I get that, I'm just trying to emulate that with the URI and PC that I already have at the remotes. I guess what I am looking for is a software package that I can install on the PC that emulates the datastream that a RTCM would send and receive from the app_rpt PC. Robert N5QM On Sun, Aug 11, 2013 at 11:27 PM, Michael Hebert wrote: > Think of the RTCM like a URI that uses a network and/or internet you can put > anywhere instead of a USB cable. > > > On Sun, Aug 11, 2013 at 11:23 PM, Robert Garcia wrote: >> >> All, >> >> Is there a method to emulate the RTCM functionality, not from a voting >> perspective, but from the perspective that it is essentially a network >> based sound card. >> >> More specifically I would like to have a remote system, with a URI and >> PC, forward all of its audio to a central node for processing >> eliminating the need to use private node numbers at the remote and >> have them connect to a hub making issuing any connect or disconnect >> commands to public systems more difficult. >> >> Robert >> N5QM >> _______________________________________________ >> 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 -- 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=55013221A.A9207 From mhebert1975 at gmail.com Tue Aug 13 16:41:37 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 13 Aug 2013 11:41:37 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com> Message-ID: Chuck, Set the buflen to 1000 and both of the rtcms to 3000. still not working. Mike On Mon, Aug 12, 2013 at 12:06 AM, Chuck Henderson < rpt2 at chuck.midlandsnetworking.com> wrote: > in voter.conf, set bufflen higher like this, then reload. After it > is working you can always trim the value down a little at a time till > it quits working, then increase it about 40 from that. Menu 18 should > be 0. works here. > > port = 667 > ; buflen = 120 min value that works at all > buflen = 400 > > > On Sun, Aug 11, 2013 at 11:21 PM, Michael Hebert > wrote: > > I know, really weird. If i just change client 2 rtcm menu item 18=0 it > will > > start transmitting and it is still voting. > > > > > > On Sun, Aug 11, 2013 at 11:16 PM, Tim Sawyer wrote: > >> > >> That's weird, so only the master transmits. Hmmmm... > >> > >> what happens when you do *CLI>voter display 28304? Are they both there? > >> > >> You do have different passwords for each client, right? > >> -- > >> Tim > >> :wq > >> > >> On Aug 11, 2013, at 9:11 PM, Michael Hebert > wrote: > >> > >> Yes, I have 2 clients and the first 1 is transmitting. What is also > >> interesting is client 2 will transmit telemetry. ie CW ID, anything > using > >> rpt fun 28304 like COP 4 > >> > >> [28304] > >> KD5DFB_main=xxx,transmit,master > >> KD5DFB_site1=xxx,transmit > >> > >> > >> On Sun, Aug 11, 2013 at 10:58 PM, Tim Sawyer wrote: > >>> > >>> Are other clients supposed to transmit, and do they? > >>> -- > >>> Tim > >>> :wq > >>> > >>> On Aug 11, 2013, at 8:46 PM, Michael Hebert > >>> wrote: > >>> > >>> I just changed menu 18=0 on both rtcms. I also changed the menu 7 to > >>> 3000. > >>> > >>> No strange messages on level 3. Standard Hungup > 'Zap/pseudo-1855322317' > >>> > >>> No TX on client 2 now > >>> > >>> > >>> On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer > wrote: > >>>> > >>>> Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. > >>>> Leave the TX buffers long - around 2000 or 3000 until you figure out > what is > >>>> wrong. > >>>> > >>>> Are you getting any strange message on the Asterisk console with > verbose > >>>> level 3? > >>>> -- > >>>> Tim > >>>> :wq > >>>> > >>>> On Aug 11, 2013, at 7:58 PM, Michael Hebert > >>>> wrote: > >>>> > >>>> Very interesting. Playing around with the settings on both RTCMs and > >>>> found it works with menu 7 set for 600 and menu 18 set for 1. > >>>> > >>>> If I set menu 18 to 0 the non master client, it will not transmit. > >>>> > >>>> Also, I checked my rpt.conf and duplex=2 > >>>> > >>>> > >>>> On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: > >>>>> > >>>>> This might sound like an odd question, but did chan_voter compile > >>>>> cleanly for you? I just grabbed the latest svn code and it did not > compile > >>>>> for me at all. The error it gave me I would need to check tomorrow, > as I'm > >>>>> currently not at the computer. > >>>>> > >>>>> Matthew Pitts > >>>>> N8OHU > >>>>> > >>>>> Sent from my Verizon Wireless 4G LTE smartphone > >>>>> > >>>>> -------- Original Message -------- > >>>>> Subject:Re: [App_rpt-users] RTCM simulcast help > >>>>> From :Michael Hebert > >>>>> Date :Sun, 11-Aug-2013 21:54 > >>>>> To :Jim Duuuude > >>>>> CC :app_rpt mailing list > >>>>> > >>>>> Just changed both of them to 3000 and rebooted. Also, rebooted the > >>>>> asterisk machine. > >>>>> > >>>>> Still no TX on KD5DFB_site1=xxx,transmit > >>>>> > >>>>> > >>>>> On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude < > telesistant at hotmail.com> > >>>>> wrote: > >>>>>> > >>>>>> well, why dont you try something higher then 480... > >>>>>> > >>>>>> ________________________________ > >>>>>> Date: Sun, 11 Aug 2013 20:37:49 -0500 > >>>>>> Subject: Re: [App_rpt-users] RTCM simulcast help > >>>>>> From: mhebert1975 at gmail.com > >>>>>> To: telesistant at hotmail.com > >>>>>> CC: app_rpt-users at ohnosec.org > >>>>>> > >>>>>> 1) S/W Version: 1.26 08/10/2013 on both of them > >>>>>> > >>>>>> 2) 480 on both of them > >>>>>> > >>>>>> > >>>>>> On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude < > telesistant at hotmail.com> > >>>>>> wrote: > >>>>>> > >>>>>> 1) What version of RTCM firmware are you running? > >>>>>> > >>>>>> 2) What do you have your TxBufferLength set to (in the RTCM) ? > >>>>>> > >>>>>> Jim > >>>>>> > >>>>>> ________________________________ > >>>>>> Date: Sun, 11 Aug 2013 19:43:36 -0500 > >>>>>> From: mhebert1975 at gmail.com > >>>>>> To: app_rpt-users at ohnosec.org > >>>>>> Subject: [App_rpt-users] RTCM simulcast help > >>>>>> > >>>>>> All, > >>>>>> > >>>>>> I am trying to enable simulcast on my system. I have gone into the > >>>>>> voter.conf and added the "transmit" statement. The 2nd repeater is > not > >>>>>> transmitting. I am using menu 98 and do not see the "PTT : 0" > changing to 1 > >>>>>> or the red TX indicator lighting up > >>>>>> > >>>>>> I have done a astres.sh and rebooted both RTCMs > >>>>>> > >>>>>> Here is my voter.conf > >>>>>> > >>>>>> [general] > >>>>>> port = 667 > >>>>>> buflen = 120 > >>>>>> password = xxx > >>>>>> > >>>>>> [28304] > >>>>>> KD5DFB_main=xxx,transmit,master > >>>>>> KD5DFB_site1=xxx,transmit > >>>>>> > >>>>>> > >>>>>> Here is my menu 98 on the RTCM > >>>>>> > >>>>>> GPS Lock: 1 > >>>>>> Connected: 1 > >>>>>> COR: 1 > >>>>>> EXT CTCSS IN: 0 > >>>>>> PTT: 0 > >>>>>> RSSI: 255 > >>>>>> Current Samples / Sec.: 8000 > >>>>>> Current Peak Audio Level: 1496 > >>>>>> Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 > >>>>>> Current Time: Mon Aug 12, 2013 00:40:50.800 > >>>>>> Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec > >>>>>> Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec > >>>>>> Last Rx Pkt index: 0, inbounds: 0 > >>>>>> > >>>>>> > >>>>>> _______________________________________________ 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 mhebert1975 at gmail.com Tue Aug 13 17:03:55 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 13 Aug 2013 12:03:55 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: <5209211C.8070204@att.net> References: <5209211C.8070204@att.net> Message-ID: Geoff, What should I be looking for using Level 4 of verbosity? Mike On Mon, Aug 12, 2013 at 12:53 PM, Geoff wrote: > On 08/11/2013 10:46 PM, Michael Hebert wrote: > > I just changed menu 18=0 on both rtcms. I also changed the menu 7 to > 3000. > > No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' > > No TX on client 2 now > > > On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer wrote: > >> Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. >> Leave the TX buffers long - around 2000 or 3000 until you figure out what >> is wrong. >> >> Are you getting any strange message on the Asterisk console with >> verbose level 3? >> > > > I get more info with calling #> asterisk -Rvvvv > Level 4 of verbosity is fairly complete in what it's doing, without > 'overwhelming' information using level 5 or 6. (Ugh!) > > Just my opinion. > Your mileage may vary. > Use at your own peril. > > 73 = Best Regards, > -Geoff/W5OMR > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From robert at n5qm.com Tue Aug 13 17:20:28 2013 From: robert at n5qm.com (Robert Garcia) Date: Tue, 13 Aug 2013 12:20:28 -0500 Subject: [App_rpt-users] RTCM Like Setup In-Reply-To: <4BCC91CBCFD66C4489B4BD3233140C3E04833C76C758@exchange.mail.repeater.net> References: <4BCC91CBCFD66C4489B4BD3233140C3E04833C76C758@exchange.mail.repeater.net> Message-ID: Corey, Can you point me to some documentation or provide more specifics about what you are doing? Robert N5QM On Tue, Aug 13, 2013 at 7:10 AM, Corey Dean wrote: > I do that now with Xipar and the voting receivers... > > Corey N3FE > ________________________________________ > From: app_rpt-users-bounces at ohnosec.org [app_rpt-users-bounces at ohnosec.org] On Behalf Of Robert Garcia [robert at n5qm.com] > Sent: Monday, August 12, 2013 12:29 AM > To: Michael Hebert > Cc: APP_RPT > Subject: Re: [App_rpt-users] RTCM Like Setup > > Yes sir, I get that, I'm just trying to emulate that with the URI and > PC that I already have at the remotes. > > I guess what I am looking for is a software package that I can install > on the PC that emulates the datastream that a RTCM would send and > receive from the app_rpt PC. > > Robert > N5QM > > On Sun, Aug 11, 2013 at 11:27 PM, Michael Hebert wrote: >> Think of the RTCM like a URI that uses a network and/or internet you can put >> anywhere instead of a USB cable. >> >> >> On Sun, Aug 11, 2013 at 11:23 PM, Robert Garcia wrote: >>> >>> All, >>> >>> Is there a method to emulate the RTCM functionality, not from a voting >>> perspective, but from the perspective that it is essentially a network >>> based sound card. >>> >>> More specifically I would like to have a remote system, with a URI and >>> PC, forward all of its audio to a central node for processing >>> eliminating the need to use private node numbers at the remote and >>> have them connect to a hub making issuing any connect or disconnect >>> commands to public systems more difficult. >>> >>> Robert >>> N5QM >>> _______________________________________________ >>> 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 > > -- > 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=55013221A.A9207 From k0jsc.jeff at gmail.com Tue Aug 13 17:44:33 2013 From: k0jsc.jeff at gmail.com (Jeff Carrier) Date: Tue, 13 Aug 2013 11:44:33 -0600 Subject: [App_rpt-users] GPS Conf Message-ID: Hi all, Extensive googling hasn't turned up any results and that may be telling me this isn't possible. I have a server with 3 nodes (RTCM's) attached, can I specify multiple locations for those 3 nodes in gps.conf somehow? thanks and 73 de K0JSC -------------- next part -------------- An HTML attachment was scrubbed... URL: From buddy at brannan.name Tue Aug 13 17:57:14 2013 From: buddy at brannan.name (Buddy Brannan) Date: Tue, 13 Aug 2013 13:57:14 -0400 Subject: [App_rpt-users] ACID on a Netbook? In-Reply-To: <520A2136.5010908@cogeco.ca> References: <52097CF0.3020608@va3uv.com> <520982F7.1030808@va3uv.com> <1376355742.6263.74.camel@benjamin-dell> <52099546.3030907@va3uv.com> <520A2136.5010908@cogeco.ca> Message-ID: Yep. Loading onto the netbook was definitely an exercise, and it took me several hours to get it right (which involved a lot of manual thingies?) -- Buddy Brannan, KB5ELV - Erie, PA Phone: (814) 860-3194 or 888-75-BUDDY On Aug 13, 2013, at 8:06 AM, Jon Rorke wrote: > HI Ramesh, Just about all the IBM/Lenovo PCs I used had failed in similar fashion. I have had much more luck with used HP Compaq boxes. > > I cant see why not an atom net book couldnt do the job. The only problem is loading Centos/asterisk on it as there is no cd rom. I have not been able to access any pc with out a standard CD Rom. > I have tried usb external CD rom but no dice. > > Still would be nice to load from USB stick too. > > It would make install real easy too. The Xipper distro (Redhat Fidora) can be loaded from USB stick so why cant ACID? > > Jon VA3RQ > > On 8/12/2013 10:09 PM, Ramesh Dhami (VA3UV) wrote: >> On 12/08/2013 9:02 PM, Benjamin Naber wrote: >>> Ramesh, >>> >>> Please explain test conditions, standards expected, and actual results. >>> >>> I'm running Limey Linux on a thin client. I am using >>> usbradio.conf/chan_usbradio and I've experience zero >>> hangs/freezes/drop-outs/you-name-it. >>> >>> DSP = CPU intensive? Unless you are running many nodes on one machine >>> that use DSP functions, then I don't think so. >>> >> >> <-- Hi Benjamin; I was using ACID on a HP T5710 (~1.2GHz proc with 256MB of RAM, IIRC). I just tested with one node - if I used chan_simpleusb and half-duplex, the repeater worked fine (using an external controller of course). >> >> If I switched to chan_usbradio, dsp, full duplex (removing the external controller), I found that the repeater would remain keyed after the input signal was removed. I tried this a few times, got the same results. So, since the HP worked fine with an external controller, I used chan_simpleusb. >> >> For my own / current application, I am pursuing an IBM ThinkPad laptop Intel Dual core ~ 1.8GHz proc' which, I believe should work out fine. >> >> Cheers, >> >> Ramesh. >> >> 2182 / 2424 down due to (yet another) zapped SATA controller in an IBM Think Centre 9210. >> _______________________________________________ >> 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 bob at af6d.com Tue Aug 13 19:05:29 2013 From: bob at af6d.com (Bob - AF6D) Date: Tue, 13 Aug 2013 12:05:29 -0700 Subject: [App_rpt-users] Motorola GPS Message-ID: <1BFA01F2CD784D65B6E38ADB538E6102@desktop> I am wondering if a Motorola ONCORE M12+T timing gps receiver 1pps 100hz will work to provide timing for simulcast. Its specs are located here: http://af6d.com/gps.html I need these for simulcast. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mhebert1975 at gmail.com Tue Aug 13 19:20:27 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 13 Aug 2013 14:20:27 -0500 Subject: [App_rpt-users] Motorola GPS In-Reply-To: <1BFA01F2CD784D65B6E38ADB538E6102@desktop> References: <1BFA01F2CD784D65B6E38ADB538E6102@desktop> Message-ID: Looks good to me. According to the documentation on your link, it will provide you with the 3 required NEMA sentences $GPGSV (to determine satellites in view) $GPRMC (to determine time of day) $GPGGA (to determine position, lock status) Does the repeater or transmitter you are going to use how an input for the 100hz? On Tue, Aug 13, 2013 at 2:05 PM, Bob - AF6D wrote: > I am wondering if a Motorola ONCORE M12+T timing gps receiver 1pps 100hz > will work to provide timing for simulcast.**** > > ** ** > > Its specs are located here: http://af6d.com/gps.html**** > > ** ** > > I need these for simulcast.**** > > _______________________________________________ > 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 mhebert1975 at gmail.com Tue Aug 13 19:33:59 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 13 Aug 2013 14:33:59 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com> References: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com> Message-ID: Still need help with this. Anyone ? On Sun, Aug 11, 2013 at 11:16 PM, Tim Sawyer wrote: > That's weird, so only the master transmits. Hmmmm... > > what happens when you do *CLI>voter display 28304? Are they both there? > > You do have different passwords for each client, right? > -- > Tim > :wq > > On Aug 11, 2013, at 9:11 PM, Michael Hebert wrote: > > Yes, I have 2 clients and the first 1 is transmitting. What is also > interesting is client 2 will transmit telemetry. ie CW ID, anything using > rpt fun 28304 like COP 4 > > [28304] > KD5DFB_main=xxx,transmit,master > KD5DFB_site1=xxx,transmit > > > On Sun, Aug 11, 2013 at 10:58 PM, Tim Sawyer wrote: > >> Are other clients supposed to transmit, and do they? >> -- >> Tim >> :wq >> >> On Aug 11, 2013, at 8:46 PM, Michael Hebert >> wrote: >> >> I just changed menu 18=0 on both rtcms. I also changed the menu 7 to >> 3000. >> >> No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' >> >> No TX on client 2 now >> >> >> On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer wrote: >> >>> Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. >>> Leave the TX buffers long - around 2000 or 3000 until you figure out what >>> is wrong. >>> >>> Are you getting any strange message on the Asterisk console with verbose >>> level 3? >>> -- >>> Tim >>> :wq >>> >>> On Aug 11, 2013, at 7:58 PM, Michael Hebert >>> wrote: >>> >>> Very interesting. Playing around with the settings on both RTCMs and >>> found it works with menu 7 set for 600 and menu 18 set for 1. >>> >>> If I set menu 18 to 0 the non master client, it will not transmit. >>> >>> Also, I checked my rpt.conf and duplex=2 >>> >>> >>> On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: >>> >>>> This might sound like an odd question, but did chan_voter compile >>>> cleanly for you? I just grabbed the latest svn code and it did not compile >>>> for me at all. The error it gave me I would need to check tomorrow, as I'm >>>> currently not at the computer. >>>> >>>> Matthew Pitts >>>> N8OHU >>>> >>>> Sent from my Verizon Wireless 4G LTE smartphone >>>> >>>> -------- Original Message -------- >>>> Subject:Re: [App_rpt-users] RTCM simulcast help >>>> From :Michael Hebert ** >>>> Date :Sun, 11-Aug-2013 21:54 >>>> To :Jim Duuuude ** >>>> CC :app_rpt mailing list ** >>>> >>>> Just changed both of them to 3000 and rebooted. Also, rebooted the >>>> asterisk machine. >>>> >>>> Still no TX on KD5DFB_site1=xxx,transmit >>>> >>>> >>>> On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: >>>> >>>>> well, why dont you try something higher then 480... >>>>> >>>>> ------------------------------ >>>>> Date: Sun, 11 Aug 2013 20:37:49 -0500 >>>>> Subject: Re: [App_rpt-users] RTCM simulcast help >>>>> From: mhebert1975 at gmail.com >>>>> To: telesistant at hotmail.com >>>>> CC: app_rpt-users at ohnosec.org >>>>> >>>>> 1) S/W Version: 1.26 08/10/2013 on both of them >>>>> >>>>> 2) 480 on both of them >>>>> >>>>> >>>>> On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: >>>>> >>>>> 1) What version of RTCM firmware are you running? >>>>> >>>>> 2) What do you have your TxBufferLength set to (in the RTCM) ? >>>>> >>>>> Jim >>>>> >>>>> ------------------------------ >>>>> Date: Sun, 11 Aug 2013 19:43:36 -0500 >>>>> From: mhebert1975 at gmail.com >>>>> To: app_rpt-users at ohnosec.org >>>>> Subject: [App_rpt-users] RTCM simulcast help >>>>> >>>>> All, >>>>> >>>>> I am trying to enable simulcast on my system. I have gone into the >>>>> voter.conf and added the "transmit" statement. The 2nd repeater is not >>>>> transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 >>>>> or the red TX indicator lighting up >>>>> >>>>> I have done a astres.sh and rebooted both RTCMs >>>>> >>>>> *Here is my voter.conf* >>>>> >>>>> [general] >>>>> port = 667 >>>>> buflen = 120 >>>>> password = xxx >>>>> >>>>> [28304] >>>>> KD5DFB_main=xxx,transmit,master >>>>> KD5DFB_site1=xxx,transmit >>>>> >>>>> >>>>> *Here is my menu 98 on the RTCM * >>>>> >>>>> GPS Lock: 1 >>>>> Connected: 1 >>>>> COR: 1 >>>>> EXT CTCSS IN: 0 >>>>> PTT: 0 >>>>> RSSI: 255 >>>>> Current Samples / Sec.: 8000 >>>>> Current Peak Audio Level: 1496 >>>>> Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 >>>>> Current Time: Mon Aug 12, 2013 00:40:50.800 >>>>> Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec >>>>> Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec >>>>> Last Rx Pkt index: 0, inbounds: 0 >>>>> >>>>> >>>>> _______________________________________________ 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 telesistant at hotmail.com Tue Aug 13 23:37:44 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Tue, 13 Aug 2013 16:37:44 -0700 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: , , , , <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com>, , <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com>, Message-ID: I was able to help this dude. And thanks, Michael, for sort of indirectly pointing out the necessity for mentioning this: Every time the Voter/RTCM firmware is "upgraded" (well, at least we *hope* so :-) ), there is a possibility that a "new" setting/feature was added that did not exist in the previous version, and, therefore can cause a situation of there being a "rogue" value in a "new" configuration parameter, since it "lives" in configuration "space" that "did not exist" in the previous version. Therefore, the "best practice" for upgrading the Voter/RTCM is to do a "factory initialization" of configuration parameters every time you upgrade. Obviously, you dont *HAVE* to, but if you dont you run the risk of "something weird going on". Remember the new slogan for this -- "When it doubt, zero it out".. :-) Jim WB6NIL Date: Tue, 13 Aug 2013 14:33:59 -0500 From: mhebert1975 at gmail.com To: tim.sawyer at me.com CC: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] RTCM simulcast help Still need help with this. Anyone ? On Sun, Aug 11, 2013 at 11:16 PM, Tim Sawyer wrote: That's weird, so only the master transmits. Hmmmm... what happens when you do *CLI>voter display 28304? Are they both there? You do have different passwords for each client, right? -- Tim :wq On Aug 11, 2013, at 9:11 PM, Michael Hebert wrote: Yes, I have 2 clients and the first 1 is transmitting. What is also interesting is client 2 will transmit telemetry. ie CW ID, anything using rpt fun 28304 like COP 4 [28304] KD5DFB_main=xxx,transmit,masterKD5DFB_site1=xxx,transmit On Sun, Aug 11, 2013 at 10:58 PM, Tim Sawyer wrote: Are other clients supposed to transmit, and do they? -- Tim :wq On Aug 11, 2013, at 8:46 PM, Michael Hebert wrote: I just changed menu 18=0 on both rtcms. I also changed the menu 7 to 3000. No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' No TX on client 2 now On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer wrote: Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. Leave the TX buffers long - around 2000 or 3000 until you figure out what is wrong. Are you getting any strange message on the Asterisk console with verbose level 3? -- Tim :wq On Aug 11, 2013, at 7:58 PM, Michael Hebert wrote: Very interesting. Playing around with the settings on both RTCMs and found it works with menu 7 set for 600 and menu 18 set for 1. If I set menu 18 to 0 the non master client, it will not transmit. Also, I checked my rpt.conf and duplex=2 On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: This might sound like an odd question, but did chan_voter compile cleanly for you? I just grabbed the latest svn code and it did not compile for me at all. The error it gave me I would need to check tomorrow, as I'm currently not at the computer. Matthew Pitts N8OHU Sent from my Verizon Wireless 4G LTE smartphone -------- Original Message -------- Subject:Re: [App_rpt-users] RTCM simulcast help >From :Michael Hebert Date :Sun, 11-Aug-2013 21:54 To :Jim Duuuude CC :app_rpt mailing list Just changed both of them to 3000 and rebooted. Also, rebooted the asterisk machine. Still no TX on KD5DFB_site1=xxx,transmit On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: well, why dont you try something higher then 480... Date: Sun, 11 Aug 2013 20:37:49 -0500 Subject: Re: [App_rpt-users] RTCM simulcast help From: mhebert1975 at gmail.com To: telesistant at hotmail.com CC: app_rpt-users at ohnosec.org 1) S/W Version: 1.26 08/10/2013 on both of them 2) 480 on both of them On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: 1) What version of RTCM firmware are you running? 2) What do you have your TxBufferLength set to (in the RTCM) ? Jim Date: Sun, 11 Aug 2013 19:43:36 -0500 From: mhebert1975 at gmail.com To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] RTCM simulcast help All, I am trying to enable simulcast on my system. I have gone into the voter.conf and added the "transmit" statement. The 2nd repeater is not transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 or the red TX indicator lighting up I have done a astres.sh and rebooted both RTCMs Here is my voter.conf [general]port = 667buflen = 120password = xxx [28304]KD5DFB_main=xxx,transmit,masterKD5DFB_site1=xxx,transmit Here is my menu 98 on the RTCM GPS Lock: 1 Connected: 1COR: 1EXT CTCSS IN: 0PTT: 0RSSI: 255Current Samples / Sec.: 8000Current Peak Audio Level: 1496Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 Current Time: Mon Aug 12, 2013 00:40:50.800Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msecLast Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msecLast Rx Pkt index: 0, inbounds: 0 _______________________________________________ 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 mhebert1975 at gmail.com Wed Aug 14 00:04:38 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 13 Aug 2013 19:04:38 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com> Message-ID: A BIG THANK YOU TO JIM!!! Voted simulcast up and running! On Tue, Aug 13, 2013 at 6:37 PM, Jim Duuuude wrote: > I was able to help this dude. > > And thanks, Michael, for sort of indirectly pointing out the necessity for > mentioning > this: > > Every time the Voter/RTCM firmware is "upgraded" (well, at least we *hope* > so :-) ), there > is a possibility that a "new" setting/feature was added that did not exist > in the previous > version, and, therefore can cause a situation of there being a "rogue" > value in a "new" configuration > parameter, since it "lives" in configuration "space" that "did not exist" > in the previous version. > > Therefore, the "best practice" for upgrading the Voter/RTCM is to do a > "factory initialization" of > configuration parameters every time you upgrade. Obviously, you dont > *HAVE* to, but if you dont > you run the risk of "something weird going on". > > Remember the new slogan for this -- "When it doubt, zero it out".. > > :-) > > Jim WB6NIL > > > ------------------------------ > Date: Tue, 13 Aug 2013 14:33:59 -0500 > From: mhebert1975 at gmail.com > To: tim.sawyer at me.com > CC: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] RTCM simulcast help > > Still need help with this. Anyone ? > > > On Sun, Aug 11, 2013 at 11:16 PM, Tim Sawyer wrote: > > That's weird, so only the master transmits. Hmmmm... > > what happens when you do *CLI>voter display 28304? Are they both there? > > You do have different passwords for each client, right? > -- > Tim > :wq > > On Aug 11, 2013, at 9:11 PM, Michael Hebert wrote: > > Yes, I have 2 clients and the first 1 is transmitting. What is also > interesting is client 2 will transmit telemetry. ie CW ID, anything using > rpt fun 28304 like COP 4 > > [28304] > KD5DFB_main=xxx,transmit,master > KD5DFB_site1=xxx,transmit > > > On Sun, Aug 11, 2013 at 10:58 PM, Tim Sawyer wrote: > > Are other clients supposed to transmit, and do they? > -- > Tim > :wq > > On Aug 11, 2013, at 8:46 PM, Michael Hebert wrote: > > I just changed menu 18=0 on both rtcms. I also changed the menu 7 to 3000. > > No strange messages on level 3. Standard Hungup 'Zap/pseudo-1855322317' > > No TX on client 2 now > > > On Sun, Aug 11, 2013 at 10:34 PM, Tim Sawyer wrote: > > Menu 18 = 1 will be making local PTT. You want 18 = 0 with duplex=2. Leave > the TX buffers long - around 2000 or 3000 until you figure out what is > wrong. > > Are you getting any strange message on the Asterisk console with verbose > level 3? > -- > Tim > :wq > > On Aug 11, 2013, at 7:58 PM, Michael Hebert wrote: > > Very interesting. Playing around with the settings on both RTCMs and found > it works with menu 7 set for 600 and menu 18 set for 1. > > If I set menu 18 to 0 the non master client, it will not transmit. > > Also, I checked my rpt.conf and duplex=2 > > > On Sun, Aug 11, 2013 at 9:01 PM, Matthew wrote: > > This might sound like an odd question, but did chan_voter compile cleanly > for you? I just grabbed the latest svn code and it did not compile for me > at all. The error it gave me I would need to check tomorrow, as I'm > currently not at the computer. > > Matthew Pitts > N8OHU > > Sent from my Verizon Wireless 4G LTE smartphone > > -------- Original Message -------- > Subject:Re: [App_rpt-users] RTCM simulcast help > From :Michael Hebert ** > Date :Sun, 11-Aug-2013 21:54 > To :Jim Duuuude ** > CC :app_rpt mailing list ** > > Just changed both of them to 3000 and rebooted. Also, rebooted the > asterisk machine. > > Still no TX on KD5DFB_site1=xxx,transmit > > > On Sun, Aug 11, 2013 at 8:39 PM, Jim Duuuude wrote: > > well, why dont you try something higher then 480... > > ------------------------------ > Date: Sun, 11 Aug 2013 20:37:49 -0500 > Subject: Re: [App_rpt-users] RTCM simulcast help > From: mhebert1975 at gmail.com > To: telesistant at hotmail.com > CC: app_rpt-users at ohnosec.org > > 1) S/W Version: 1.26 08/10/2013 on both of them > > 2) 480 on both of them > > > On Sun, Aug 11, 2013 at 8:34 PM, Jim Duuuude wrote: > > 1) What version of RTCM firmware are you running? > > 2) What do you have your TxBufferLength set to (in the RTCM) ? > > Jim > > ------------------------------ > Date: Sun, 11 Aug 2013 19:43:36 -0500 > From: mhebert1975 at gmail.com > To: app_rpt-users at ohnosec.org > Subject: [App_rpt-users] RTCM simulcast help > > All, > > I am trying to enable simulcast on my system. I have gone into the > voter.conf and added the "transmit" statement. The 2nd repeater is not > transmitting. I am using menu 98 and do not see the "PTT : 0" changing to 1 > or the red TX indicator lighting up > > I have done a astres.sh and rebooted both RTCMs > > *Here is my voter.conf* > > [general] > port = 667 > buflen = 120 > password = xxx > > [28304] > KD5DFB_main=xxx,transmit,master > KD5DFB_site1=xxx,transmit > > > *Here is my menu 98 on the RTCM * > > GPS Lock: 1 > Connected: 1 > COR: 1 > EXT CTCSS IN: 0 > PTT: 0 > RSSI: 255 > Current Samples / Sec.: 8000 > Current Peak Audio Level: 1496 > Squelch Noise Gain Value: 21, Diode Cal. Value: 36, SQL pot 134 > Current Time: Mon Aug 12, 2013 00:40:50.800 > Last Rx Pkt System time: 08/12/2013 00:40:50.800, diff: 0 msec > Last Rx Pkt Timestamp time: 08/12/2013 00:40:50.780, diff: 20 msec > Last Rx Pkt index: 0, inbounds: 0 > > > _______________________________________________ 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 w5omr at att.net Wed Aug 14 00:17:26 2013 From: w5omr at att.net (Geoff) Date: Tue, 13 Aug 2013 19:17:26 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: References: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com> Message-ID: <520ACC96.1090807@att.net> On 08/13/2013 07:04 PM, Michael Hebert wrote: > A BIG THANK YOU TO JIM!!! > > Voted simulcast up and running! > > > On Tue, Aug 13, 2013 at 6:37 PM, Jim Duuuude > wrote: > > I was able to help this dude. > > Solutions all around! Sounds like progress was made. Now that the problem has been solved, I wanted to ask, Michael, how are you voting? I'm assuming you've got several receiving locations around your area, and the radios that are connected to those Allstar computing devices, are they just receivers with the audio talking back to the main repeater, or actual repeaters listening on one frequency, and re-transmitting back to the main repeater, using Allstar as the voter? Long question. -Geoff -------------- next part -------------- An HTML attachment was scrubbed... URL: From mhebert1975 at gmail.com Wed Aug 14 00:37:53 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 13 Aug 2013 19:37:53 -0500 Subject: [App_rpt-users] RTCM simulcast help In-Reply-To: <520ACC96.1090807@att.net> References: <10742A1B-062B-47D1-B026-02F3DAF80F1C@me.com> <2FAA7A09-BB46-45B6-93A9-6D0F2B2989AE@me.com> <520ACC96.1090807@att.net> Message-ID: I have a real simple setup right now. Both sites can RX and TX. Of course in voting, ACID is going to use the best RX signal and send that back out to the RTCMs for the TX audio that feeds the repeaters. I am still working on a master clock solution for the transmitters. As of right now at the location I am testing, I am not hearing any heterodyne in the TX audio. Of course this can and will change depending on my location in reference to the sites. Site 1 - master Node running ACID Kenwood TKR-820 repeater RTCM Garmin 18x LVC Site 2 Kenwood TKR-820 repeater RTCM Garmin 18x LVC On Tue, Aug 13, 2013 at 7:17 PM, Geoff wrote: > On 08/13/2013 07:04 PM, Michael Hebert wrote: > > A BIG THANK YOU TO JIM!!! > > Voted simulcast up and running! > > > On Tue, Aug 13, 2013 at 6:37 PM, Jim Duuuude wrote: > >> I was able to help this dude. >> > > > Solutions all around! Sounds like progress was made. > > Now that the problem has been solved, I wanted to ask, Michael, how are > you voting? > I'm assuming you've got several receiving locations around your area, and > the radios that are connected to those Allstar computing devices, are they > just receivers with the audio talking back to the main repeater, or actual > repeaters listening on one frequency, and re-transmitting back to the main > repeater, using Allstar as the voter? > > Long question. > > -Geoff > > > _______________________________________________ > 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 kc7rjk at comcast.net Wed Aug 14 01:05:43 2013 From: kc7rjk at comcast.net (Ross Johnson) Date: Tue, 13 Aug 2013 18:05:43 -0700 Subject: [App_rpt-users] Remote Base commands/operation In-Reply-To: <20130813024312.71befee5dbd13c5325dd1a521b4e73ee.e999e06661.wbe@email06.secureserver.net> References: <20130813024312.71befee5dbd13c5325dd1a521b4e73ee.e999e06661.wbe@email06.secureserver.net> Message-ID: I think my friend Mark saw that post the CIV pl and programming issues but at this point we can?t get a single command other then the first one sent when you connect into HyperTerminal. So as someone mentioned before it?s because of the updated rpt.c file a year or so ago that broke interface. I think... We?re actually testing controlling the rig via Hamsoft rig control software and try to use macros to command the software. But it wont compile so were going to try it on CentOS 6, if it works I will then upgrade the node and go from there making a long list of macro commands. Anyone see any unforeseen issues with this other angle? We were thinking this could be a almost be better solution (if it will play) with more options and commands available. If it will work it could save a lot of time in the code... I don?t see myself in there at all so on with plan B for now. 73 Ross www.kc7rjk.net From: mike at midnighteng.com Sent: Tuesday, August 13, 2013 2:43 AM To: Ross Johnson Subject: RE: [App_rpt-users] Remote Base commands/operation Ross, I think the problem occurs because, according to the source code, the program tries to automaticly set the mode of the rig according to the freq requested. Somewhere in there, there is an error. I spent a lot of time about a year ago to determine that but did not peruse it because I was not using a MKii, just a original 706 and it will not accept some the additional commands. It seems silly to set all the mode & etc info automatically when doing so makes the command set limited to only a 706mkii and if setting just the freq was just setting the freq, and setting the mode was just setting the mode, it would work with a wide range of icom radios with civ interface. I am not going to buy a more expensive radio for my remote as it will most likely be destroyed by lightning within a year. But it would be nice it it was more flexible. Perhaps if you get somewhere on this it will be corrected. When I have time again, I may attempt to re-write the source code myself but the remote base stuff is a bit "messy" in there. Just a little imput and I could be wrong in your instance but that what I think I found some time ago. ...mike/kb8jnm -------- Original Message -------- Subject: Re: [App_rpt-users] Remote Base commands/operation From: "Ross Johnson" Date: Mon, August 12, 2013 8:31 pm To: Hello, I am also having the same trouble as Mark, we?ve been working together on this. It has become very frustration trying to remote base the ic706. We have made good progress, CIV addresses are correct after some google-ing. Turns out the Asterisk/app_rpt how-to?s are not very detailed or even correct. The CIV addr for the ic706MKii is 4e hex, the rpt.conf file needs this in decimal where the how-to does not state this fact and says to enter 88, then it says enter 98 somewhere else on the page. While in reality 4e hex = 78 dec. so that?s what was entered in rpt.conf file and we have ?some? communication with the radio. When you connect to the remote base node we still hear the ?invalid frequency? announcement but the radio will switch from VFO to MEM mode and vise versa depending on what mode its in but that?s all we can get it to do. So has this system EVER worked? All of the google-ing has led me to find 0 working ic706 remote bases, and one other who's in the same exact place as us K0KN. If not why is it advertised on the Asterisk/app_rpt site? I KNOW the node is talking to the radio watching the CIV via a null modem cable in HyperTerminal, when you connect to the node where it switches from or to VFO mode. I can see that command in HyperTerminal but I can?t get any other commands out of the node like the remote-function-stanza commands. What are we doing wrong? How are we supposed to enter the commands? Or better yet, how do you send the remote-function-stanza commands out to the radio? Any help or pointers would be much appreciated. Thanks for reading 73 Ross www.kc7rjk.net From: Mark Johnston Sent: Saturday, August 10, 2013 10:59 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] Remote Base commands/operation Hello everyone, Can anyone explain in better detail how the remote base operates, as far as users are concerned. i.e. What command do you enter to mover the frequency +500 In the documentation it shows adding? This line amongest others to the rpt.conf file. 719=remote,112 ; Bump +500 so does that mean dial 719 or *719 or? Assuming no authentication, and again if you add authentication what does the command look like? Is it *4node then a command like 719? Node is configured as a remote base, shows up with R in the node status page... Everything should be right there.. Also for the rpt.conf do I need all of this or am I missing something? ; Serial port for control ioport = /dev/ttyS0 ; Radio Type remote = ic706 ; Function list from link functions = remote-functions ; Function list from phone phone_functions = remote-functions ; Authorization level authlevel = 0 civaddr=98 duplex=0 erxgain=-3 etxgain=3 ;controlstates=controlstates scheduler=schedule29626 morse=morse29626 macro=macro29626 functions=functions29626 phone_functions=functions29626 link_functions=functions29626 link_functions=functions29626 telemetry=telemetry wait_times=wait-times context = radio callerid = "Repeater" <0000000000> idrecording = |iKC7DMF accountcode=RADIO hangtime=100 althangtime=100 totime=170000 idtime=540000 politeid=3000 etc... Are any of the std lines needed? or just the ones at top? Do I need to have all of these or are they built in? [functions-remote] 0=remote,1 ; Retrieve Memory 1=remote,2 ; Set freq. 2=remote,3 ; Set tx PL tone 3=remote,4 ; Set rx PL tone 40=remote,100 ; Rx PL off 41=remote,101 ; Rx PL on 42=remote,102 ; Tx PL off 43=remote,103 ; Tx PL on 44=remote,104 ; Low Power 45=remote,105 ; Medium Power 46=remote,106 ; High Power 711=remote,107 ; Bump -20 714=remote,108 ; Bump -100 717=remote,109 ; Bump -500 713=remote,110 ; Bump +20 716=remote,111 ; Bump +100 713=remote,110 ; Bump +20 716=remote,111 ; Bump +100 719=remote,112 ; Bump +500 721=remote,113 ; Scan - slow 724=remote,114 ; Scan - quick 727=remote,115 ; Scan - fast 723=remote,116 ; Scan + slow 726=remote,117 ; Scan + quick 729=remote,118 ; Scan + fast 79=remote,119 ; Tune (brief AM transmission for automatic antenna tuner) 51=remote,5 ; Long status query 52=remote,140 ; Short status query 67=remote,210 ; Send a * 69=remote,211 ; Send a # 91=remote,99,kc7dmf,G ; Remote base login. ; Define a different dtmf sequence for each user which is ; authorized to use the remote base to control access to it. ; For examble 9139583=remote,99,WB6NIL,G would grant access to ; the remote base and announce WB6NIL as being logged in. ; Another entry, 9148351=remote,99,WA6ZFT,E would grant access to ; the remote base and announce WA6ZFT as being logged in. ; When the remote base is disconnected from the originating node, the ; user will be logged out. The LICENSETAG parameter can be optionally specified ; to enforce TX band limits. http://www.voip-info.org/wiki/view/Asterisk+config+rpt.conf http://ohnosec.org/drupal/node/44 The second link a bit less clear to me... If anyone has an idea, or knows how this is supposed to work, I would appreciate it. Maybe some real world rpt.conf file you could send me, or other files I need to setup as well. A command example howto... Thanks, Mark KC7DMF ------------------------------------------------------------------------------ _______________________________________________ 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 ka6sox at gmail.com Thu Aug 15 00:46:21 2013 From: ka6sox at gmail.com (Tom King) Date: Wed, 14 Aug 2013 17:46:21 -0700 Subject: [App_rpt-users] How do I get in touch with the Pickle Developers? Message-ID: I have questions about the distro: 1) what is the partitioning scheme for the image? 2) What is it based off of? 3) What Arch is it compiled for? Thanks! Tom KA6SOX -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at w5evh.org Fri Aug 16 03:12:13 2013 From: bob at w5evh.org (Bob Roszkowski) Date: Thu, 15 Aug 2013 22:12:13 -0500 Subject: [App_rpt-users] Mastr II and URI low TX audio Message-ID: I have a Mastr II mobile tuned up in the ham bands. Trying to set the audio levels. RX worked great. Problem with TX audio, I can only get 2KHz deviation max if I set the level to 999 in app_rpt. I am using the URI and have wired it to use the 6db amplifier on board. Anyone else run into this problem? boB - W5EVH -------------- next part -------------- An HTML attachment was scrubbed... URL: From bob at w5evh.org Fri Aug 16 04:53:43 2013 From: bob at w5evh.org (Bob Roszkowski) Date: Thu, 15 Aug 2013 23:53:43 -0500 Subject: [App_rpt-users] Mastr II and URI low TX audio In-Reply-To: References: Message-ID: Hello David, I am guessing the mastr ii radios have a preamp on the mic to get the voltages up. This radio is a VHF High band with the PLL exciter. I did change out the PLL exciter thinking it was bad but I had the same result. I will find out on the GE list to see if anyone there had the same problem. I will report back here with results in case someone else wants to do the same thing. Thanks for the info. boB - W5EVH On Thu, Aug 15, 2013 at 11:08 PM, David McGough wrote: > > Bob, > > I haven't tried directly driving a MastrII TX with a URI. However, I do > know that, depending on how the TX is configured, they may require > substantial audio drive voltage to get sufficent deviation. > > 73, David KB4FXC > > > On Thu, 15 Aug 2013, Bob Roszkowski wrote: > > > I have a Mastr II mobile tuned up in the ham bands. Trying to set the > > audio levels. RX worked great. Problem with TX audio, I can only get > 2KHz > > deviation max if I set the level to 999 in app_rpt. I am using the URI > and > > have wired it to use the 6db amplifier on board. Anyone else run into > this > > problem? > > > > boB - W5EVH > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kc7rjk at comcast.net Fri Aug 16 10:12:55 2013 From: kc7rjk at comcast.net (Ross Johnson) Date: Fri, 16 Aug 2013 03:12:55 -0700 Subject: [App_rpt-users] Mastr II and URI low TX audio In-Reply-To: References: Message-ID: Hey bob Where are you injecting the audio? There should be plenty of headroom. Is the mic still connected? Ross www.kc7rjk.net From: Bob Roszkowski Sent: Thursday, August 15, 2013 8:12 PM To: App_rpt-users at ohnosec.org Subject: [App_rpt-users] Mastr II and URI low TX audio I have a Mastr II mobile tuned up in the ham bands. Trying to set the audio levels. RX worked great. Problem with TX audio, I can only get 2KHz deviation max if I set the level to 999 in app_rpt. I am using the URI and have wired it to use the 6db amplifier on board. Anyone else run into this problem? boB - W5EVH -------------------------------------------------------------------------------- _______________________________________________ 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 mcheavens at usa.net Fri Aug 16 13:20:01 2013 From: mcheavens at usa.net (Mark Cheavens) Date: Fri, 16 Aug 2013 08:20:01 -0500 Subject: [App_rpt-users] Mastr II and URI low TX audio In-Reply-To: References: Message-ID: <7.0.1.0.2.20130816081742.05d17048@usa.net> Same question, But also: How are you adjusting the audio in the radio? The "normal" two places to inject are the MIC input, the second is the PL input. I can "see" the pot in my head, but don't remember the number off my head for the deviation pot. You might be up against the limiter. Mark KC5EVE At 05:12 AM 8/16/2013, Ross Johnson wrote: >Hey bob >Where are you injecting the audio? There should be plenty of >headroom. Is the mic still connected? > >Ross >www.kc7rjk.net > >From: Bob Roszkowski >Sent: Thursday, August 15, 2013 8:12 PM >To: App_rpt-users at ohnosec.org >Subject: [App_rpt-users] Mastr II and URI low TX audio > >I have a Mastr II mobile tuned up in the ham bands. Trying to set >the audio levels. RX worked great. Problem with TX audio, I can >only get 2KHz deviation max if I set the level to 999 in app_rpt. I >am using the URI and have wired it to use the 6db amplifier on >board. Anyone else run into this problem? > >boB - W5EVH > > >---------- >_______________________________________________ >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 Fri Aug 16 13:41:24 2013 From: wb3awj at comcast.net (Robert Poff) Date: Fri, 16 Aug 2013 09:41:24 -0400 Subject: [App_rpt-users] Mastr II and URI low TX audio In-Reply-To: References: Message-ID: <1376660484.7843.12.camel@localhost> I've never used a MII mobile, but in the stations (with only the regulator card in the shelf) I've tagged onto the mic audio line on the backplane. Yes, I did need to use the URI amplifier. I THINK that I had to bring the deviation pot way up. Enough that the exciter was effectively not doing any limiting. Relying on the software DSP. I'm a bit hazy on that point though, it's been a while. The PLL exciter was mentioned. On those you can inject composite (voice and PL) into the exciter CG input. I measured mine to be dead flat in response (no pre-emphasis at all) to at least 8 KC. Which makes sense as from what I've been told, that's where they injected the EDACS data. Yes, the microphone has an amplified cartridge. Hence MIC DC on the mic audio line. But the URI has a 10uf blocker cap on it's inputs and outputs if believe. -- Robert A. Poff Loganville, PA S/V Loon 1983 Hunter 34 Havre de Grace, MD. WB3AWJ - Allstar 27784 Powered by Linux -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Fri Aug 16 13:53:05 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Fri, 16 Aug 2013 09:53:05 -0400 Subject: [App_rpt-users] Mastr II and URI low TX audio In-Reply-To: <1376660484.7843.12.camel@localhost> References: <1376660484.7843.12.camel@localhost> Message-ID: <520E2EC1.8040002@bdboyle.com> On 8/16/2013 9:41 AM, Robert Poff wrote: > Yes, the microphone has an amplified cartridge. Hence MIC DC on the mic > audio line. But the URI has a 10uf blocker cap on it's inputs and > outputs if believe. Actually, has both AC coupled and non-coupled (ie no cap) audio circuits Pin 9 Mic In 10 Left Out 21 Mic In AC 22 Left Out AC It's pretty plain from reading the schematic. BTW, you can use these URI to couple more than just transceivers and radio stuff to the asterisk software. Think outside the bun. Bryan WB0YLE From n3fe at repeater.net Fri Aug 16 14:35:14 2013 From: n3fe at repeater.net (Corey Dean) Date: Fri, 16 Aug 2013 10:35:14 -0400 Subject: [App_rpt-users] Mastr II and URI low TX audio In-Reply-To: References: Message-ID: <4BCC91CBCFD66C4489B4BD3233140C3E04833C78C70E@exchange.mail.repeater.net> That is strange. I have never had a problem with either type of exciter on a master II. I will be interested in what you find out. Corey N3FE From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of Bob Roszkowski Sent: Friday, August 16, 2013 12:54 AM To: David McGough; app_rpt mailing list Subject: Re: [App_rpt-users] Mastr II and URI low TX audio Hello David, I am guessing the mastr ii radios have a preamp on the mic to get the voltages up. This radio is a VHF High band with the PLL exciter. I did change out the PLL exciter thinking it was bad but I had the same result. I will find out on the GE list to see if anyone there had the same problem. I will report back here with results in case someone else wants to do the same thing. Thanks for the info. boB - W5EVH On Thu, Aug 15, 2013 at 11:08 PM, David McGough > wrote: Bob, I haven't tried directly driving a MastrII TX with a URI. However, I do know that, depending on how the TX is configured, they may require substantial audio drive voltage to get sufficent deviation. 73, David KB4FXC On Thu, 15 Aug 2013, Bob Roszkowski wrote: > I have a Mastr II mobile tuned up in the ham bands. Trying to set the > audio levels. RX worked great. Problem with TX audio, I can only get 2KHz > deviation max if I set the level to 999 in app_rpt. I am using the URI and > have wired it to use the 6db amplifier on board. Anyone else run into this > problem? > > boB - W5EVH > -- 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 kj6ko at innercite.com Fri Aug 16 15:53:21 2013 From: kj6ko at innercite.com (KJ6KO) Date: Fri, 16 Aug 2013 08:53:21 -0700 Subject: [App_rpt-users] Mastr II and URI low TX audio References: <7.0.1.0.2.20130816081742.05d17048@usa.net> Message-ID: Seems I remember a jumper in the beginning of the TX string on an MII that activated or deactivated a mic amp?? I run a MII feeding the MIC input and have plenty of TX audio, but it has been many years and I do remember something about that jumper making a HUGE difference in mic input levels. ----- Original Message ----- From: Mark Cheavens To: Ross Johnson Cc: App_rpt-users at ohnosec.org ; Bob Roszkowski Sent: Friday, August 16, 2013 6:20 AM Subject: Re: [App_rpt-users] Mastr II and URI low TX audio Same question, But also: How are you adjusting the audio in the radio? The "normal" two places to inject are the MIC input, the second is the PL input. I can "see" the pot in my head, but don't remember the number off my head for the deviation pot. You might be up against the limiter. Mark KC5EVE At 05:12 AM 8/16/2013, Ross Johnson wrote: Hey bob Where are you injecting the audio? There should be plenty of headroom. Is the mic still connected? Ross www.kc7rjk.net From: Bob Roszkowski Sent: Thursday, August 15, 2013 8:12 PM To: App_rpt-users at ohnosec.org Subject: [App_rpt-users] Mastr II and URI low TX audio I have a Mastr II mobile tuned up in the ham bands. Trying to set the audio levels. RX worked great. Problem with TX audio, I can only get 2KHz deviation max if I set the level to 999 in app_rpt. I am using the URI and have wired it to use the 6db amplifier on board. Anyone else run into this problem? boB - W5EVH ---------------------------------------------------------------------------- _______________________________________________ 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 __________ Information from ESET NOD32 Antivirus, version of virus signature database 8696 (20130816) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com ------------------------------------------------------------------------------ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users __________ Information from ESET NOD32 Antivirus, version of virus signature database 8696 (20130816) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com __________ Information from ESET NOD32 Antivirus, version of virus signature database 8696 (20130816) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6ko at innercite.com Fri Aug 16 16:01:51 2013 From: kj6ko at innercite.com (KJ6KO) Date: Fri, 16 Aug 2013 09:01:51 -0700 Subject: [App_rpt-users] Mastr II and URI low TX audio References: <1376660484.7843.12.camel@localhost> <520E2EC1.8040002@bdboyle.com> Message-ID: <4B4E74AF1BE04D989A57F4E72FA1E828@KJ6KO> That was the jumper I remember removing in the MII. It removed DC from the mic and I believe increased the gain of the audio TX stage in the radio when you did it??? ----- Original Message ----- From: "Bryan D. Boyle" To: Sent: Friday, August 16, 2013 6:53 AM Subject: Re: [App_rpt-users] Mastr II and URI low TX audio > On 8/16/2013 9:41 AM, Robert Poff wrote: > >> Yes, the microphone has an amplified cartridge. Hence MIC DC on the mic >> audio line. But the URI has a 10uf blocker cap on it's inputs and >> outputs if believe. > > Actually, has both AC coupled and non-coupled (ie no cap) audio circuits > > Pin 9 Mic In > 10 Left Out > > 21 Mic In AC > 22 Left Out AC > > It's pretty plain from reading the schematic. BTW, you can use these > URI to couple more than just transceivers and radio stuff to the > asterisk software. Think outside the bun. > > > Bryan > WB0YLE > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > __________ Information from ESET NOD32 Antivirus, version of virus > signature database 8696 (20130816) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > > > __________ Information from ESET NOD32 Antivirus, version of virus signature database 8696 (20130816) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com From bob at w5evh.org Fri Aug 16 16:03:47 2013 From: bob at w5evh.org (Bob Roszkowski) Date: Fri, 16 Aug 2013 11:03:47 -0500 Subject: [App_rpt-users] Mastr II and URI low TX audio In-Reply-To: References: Message-ID: Hey Ross, I am connected to Pin 4 (Mic-Hi) of the front connector. No mic and no control head. boB - W5EVH On Fri, Aug 16, 2013 at 5:12 AM, Ross Johnson wrote: > Hey bob > Where are you injecting the audio? There should be plenty of headroom. Is > the mic still connected? > > Ross > www.kc7rjk.net > > *From:* Bob Roszkowski > *Sent:* Thursday, August 15, 2013 8:12 PM > *To:* App_rpt-users at ohnosec.org > *Subject:* [App_rpt-users] Mastr II and URI low TX audio > > I have a Mastr II mobile tuned up in the ham bands. Trying to set the > audio levels. RX worked great. Problem with TX audio, I can only get 2KHz > deviation max if I set the level to 999 in app_rpt. I am using the URI and > have wired it to use the 6db amplifier on board. Anyone else run into this > problem? > > boB - W5EVH > > ------------------------------ > _______________________________________________ > 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 bill.hurlock at cpcomms.com Sat Aug 17 00:33:37 2013 From: bill.hurlock at cpcomms.com (Bill Hurlock) Date: Sat, 17 Aug 2013 00:33:37 +0000 Subject: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 In-Reply-To: References: Message-ID: <8F656C03689E074C9EE70EE3343E4B841658870F@CPNYMAIL2.cpcomm.int> Hi Tim, I tried doing an update to your lastest RTCM firmware. One of my RTCM's took the load OK and is working great. One of my voter RTCM's accepts the load OK but as soon as I key up on channel it starts switching the voter radio in and out of TX. TX lite flashs off and on on the front of the RTCM and the RX lite blinks occasionally. I looked at the RTCM on the good one verses the bad one and the setup looks OK. I reloaded the old Voter-SMT.cry and all is well. Any idea's? Bill Hurlock -----Original Message----- From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of app_rpt-users-request at ohnosec.org Sent: Sunday, August 11, 2013 12:00 PM To: app_rpt-users at ohnosec.org Subject: App_rpt-users Digest, Vol 54, Issue 26 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..." From telesistant at hotmail.com Sat Aug 17 01:05:55 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Fri, 16 Aug 2013 18:05:55 -0700 Subject: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 In-Reply-To: <8F656C03689E074C9EE70EE3343E4B841658870F@CPNYMAIL2.cpcomm.int> References: , <8F656C03689E074C9EE70EE3343E4B841658870F@CPNYMAIL2.cpcomm.int> Message-ID: There are some "custom" settings (that *REALLY* don't apply to more then 1 or 2 users) that are "hidden" parameters. Use the "111" selection on the main menu to view all of them. If any are non-zero set it (the indicated one, by its number/menu selection) to 0. Also, check non-hidden, new menu items for non-zero values (particularly the "18" from the main menu). I just loaded (will be available after 6:15 PDT) a new version of firmware that should make the "upgrade process" a little less poopy. Jim > From: bill.hurlock at cpcomms.com > To: app_rpt-users at ohnosec.org > Date: Sat, 17 Aug 2013 00:33:37 +0000 > Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 > > Hi Tim, > I tried doing an update to your lastest RTCM firmware. One of my RTCM's took the load OK and is working great. One of my voter RTCM's accepts the load OK but as soon as I key up on channel it starts switching the voter radio in and out of TX. TX lite flashs off and on on the front of the RTCM and the RX lite blinks occasionally. I looked at the RTCM on the good one verses the bad one and the setup looks OK. I reloaded the old Voter-SMT.cry and all is well. Any idea's? > > Bill Hurlock > > -----Original Message----- > From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of app_rpt-users-request at ohnosec.org > Sent: Sunday, August 11, 2013 12:00 PM > To: app_rpt-users at ohnosec.org > Subject: App_rpt-users Digest, Vol 54, Issue 26 > > 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..." > _______________________________________________ > 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 bill.hurlock at cpcomms.com Sat Aug 17 01:45:42 2013 From: bill.hurlock at cpcomms.com (Bill Hurlock) Date: Sat, 17 Aug 2013 01:45:42 +0000 Subject: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 In-Reply-To: References: , <8F656C03689E074C9EE70EE3343E4B841658870F@CPNYMAIL2.cpcomm.int> Message-ID: <8F656C03689E074C9EE70EE3343E4B8416588776@CPNYMAIL2.cpcomm.int> Thanks what got me was 18 not being at 0. I entered 111 and it gives Elkes (11730) : 0, Glasers (1103) : 65535, Sawyer (1170) : 255 but can't change any of that. Next line says Press The Any Key (Enter) To Continue Bill Hurlock From: Jim Duuuude [mailto:telesistant at hotmail.com] Sent: Friday, August 16, 2013 9:06 PM To: Bill Hurlock; app_rpt mailing list Subject: RE: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 There are some "custom" settings (that *REALLY* don't apply to more then 1 or 2 users) that are "hidden" parameters. Use the "111" selection on the main menu to view all of them. If any are non-zero set it (the indicated one, by its number/menu selection) to 0. Also, check non-hidden, new menu items for non-zero values (particularly the "18" from the main menu). I just loaded (will be available after 6:15 PDT) a new version of firmware that should make the "upgrade process" a little less poopy. Jim > From: bill.hurlock at cpcomms.com > To: app_rpt-users at ohnosec.org > Date: Sat, 17 Aug 2013 00:33:37 +0000 > Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 > > Hi Tim, > I tried doing an update to your lastest RTCM firmware. One of my RTCM's took the load OK and is working great. One of my voter RTCM's accepts the load OK but as soon as I key up on channel it starts switching the voter radio in and out of TX. TX lite flashs off and on on the front of the RTCM and the RX lite blinks occasionally. I looked at the RTCM on the good one verses the bad one and the setup looks OK. I reloaded the old Voter-SMT.cry and all is well. Any idea's? > > Bill Hurlock > > -----Original Message----- > From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of app_rpt-users-request at ohnosec.org > Sent: Sunday, August 11, 2013 12:00 PM > To: app_rpt-users at ohnosec.org > Subject: App_rpt-users Digest, Vol 54, Issue 26 > > 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..." > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Sat Aug 17 05:06:54 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Fri, 16 Aug 2013 22:06:54 -0700 Subject: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 In-Reply-To: <8F656C03689E074C9EE70EE3343E4B8416588776@CPNYMAIL2.cpcomm.int> References: <8F656C03689E074C9EE70EE3343E4B841658870F@CPNYMAIL2.cpcomm.int> <8F656C03689E074C9EE70EE3343E4B8416588776@CPNYMAIL2.cpcomm.int> Message-ID: enter 1170 to change Sawyer, for example. -- Tim :wq On Aug 16, 2013, at 6:45 PM, Bill Hurlock wrote: > Thanks what got me was 18 not being at 0. I entered 111 and it gives Elkes (11730) : 0, Glasers (1103) : 65535, Sawyer (1170) : 255 but can?t change any of that. Next line says Press The Any Key (Enter) To Continue > > Bill Hurlock > > From: Jim Duuuude [mailto:telesistant at hotmail.com] > Sent: Friday, August 16, 2013 9:06 PM > To: Bill Hurlock; app_rpt mailing list > Subject: RE: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 > > There are some "custom" settings (that *REALLY* don't apply to more then 1 or 2 users) > that are "hidden" parameters. Use the "111" selection on the main menu to view all of them. > If any are non-zero set it (the indicated one, by its number/menu selection) to 0. > > Also, check non-hidden, new menu items for non-zero values (particularly the "18" from > the main menu). > > I just loaded (will be available after 6:15 PDT) a new version of firmware that should make the > "upgrade process" a little less poopy. > > Jim > > > From: bill.hurlock at cpcomms.com > > To: app_rpt-users at ohnosec.org > > Date: Sat, 17 Aug 2013 00:33:37 +0000 > > Subject: Re: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 > > > > Hi Tim, > > I tried doing an update to your lastest RTCM firmware. One of my RTCM's took the load OK and is working great. One of my voter RTCM's accepts the load OK but as soon as I key up on channel it starts switching the voter radio in and out of TX. TX lite flashs off and on on the front of the RTCM and the RX lite blinks occasionally. I looked at the RTCM on the good one verses the bad one and the setup looks OK. I reloaded the old Voter-SMT.cry and all is well. Any idea's? > > > > Bill Hurlock > > > > -----Original Message----- > > From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of app_rpt-users-request at ohnosec.org > > Sent: Sunday, August 11, 2013 12:00 PM > > To: app_rpt-users at ohnosec.org > > Subject: App_rpt-users Digest, Vol 54, Issue 26 > > > > 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..." > > _______________________________________________ > > 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 hammin75 at gmail.com Sat Aug 17 05:31:14 2013 From: hammin75 at gmail.com (Bradley Haney) Date: Sat, 17 Aug 2013 00:31:14 -0500 Subject: [App_rpt-users] Auto patch and reverse autopatch Message-ID: Anyonebhave good extensions example to accomplish thesr usingbyour own sip provide r? I am as far as seeing my sip provider registered -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Sat Aug 17 14:15:46 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Sat, 17 Aug 2013 10:15:46 -0400 Subject: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 In-Reply-To: References: <8F656C03689E074C9EE70EE3343E4B841658870F@CPNYMAIL2.cpcomm.int> <8F656C03689E074C9EE70EE3343E4B8416588776@CPNYMAIL2.cpcomm.int> Message-ID: <520F8592.5070206@bdboyle.com> On 8/17/2013 1:06 AM, Tim Sawyer wrote: > enter 1170 to change Sawyer, for example. And if we do that...what do you change to? *ducking* BB From tim.sawyer at me.com Sat Aug 17 14:45:20 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sat, 17 Aug 2013 07:45:20 -0700 Subject: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 26 In-Reply-To: <520F8592.5070206@bdboyle.com> References: <8F656C03689E074C9EE70EE3343E4B841658870F@CPNYMAIL2.cpcomm.int> <8F656C03689E074C9EE70EE3343E4B8416588776@CPNYMAIL2.cpcomm.int> <520F8592.5070206@bdboyle.com> Message-ID: <954518F1-54CB-415B-90B0-AC7DA3242FC4@me.com> All three of those should be 0 (zero). -- Tim :wq On Aug 17, 2013, at 7:15 AM, Bryan D. Boyle wrote: > On 8/17/2013 1:06 AM, Tim Sawyer wrote: >> enter 1170 to change Sawyer, for example. > > And if we do that...what do you change to? > > *ducking* > > BB > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From cypresstower at yahoo.com Sat Aug 17 14:51:11 2013 From: cypresstower at yahoo.com (Johnny Keeker) Date: Sat, 17 Aug 2013 07:51:11 -0700 (PDT) Subject: [App_rpt-users] Using 200 Thru 215 Message-ID: <1376751071.33170.YahooMailNeo@web163604.mail.gq1.yahoo.com> Can anyone provide a explaination of the following and a posible example? 200 thru 215 - (Send DTMF 0-9,*,#,A-D) (200=0, 201=1, 210=*, etc) -------------- next part -------------- An HTML attachment was scrubbed... URL: From harvard5362 at yahoo.com Sat Aug 17 23:22:13 2013 From: harvard5362 at yahoo.com (C B) Date: Sat, 17 Aug 2013 16:22:13 -0700 (PDT) Subject: [App_rpt-users] getting Pickle running on Beagleboard xm ver c Message-ID: <1376781733.66673.YahooMailNeo@web124504.mail.ne1.yahoo.com> Hi sorry if this has been covered before. I am new to both beagle-board and all-star. I am also new to Linux. I have a beagle-board-xm ver c and a lox board. the beagle board booted fine with the operating system it came with. I purchased a new card so I could keep the original o.s. intact. I downloaded what I believe to be the latest version of Pickle from the allstar website. I used z-zip extracted the IMG file and placed it on the micro sd card (new) with win32diskimiger the Beagle board seems to at least partially boot as I get the Penguin in the upper left of the monitor. then all I get is a blinking curser in the left hand corner of the monitor. it gets a IP address from my router, and I can use putty to open a SSH connection to port 222. As I do not know how to log in this is as far as I have gotten. I have not found much information on the web beyond what I have done so far. please can anyone tell me either what I have done wrong or what steps I need to follow next. thank you in advance for your help. Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From bill.hurlock at cpcomms.com Sun Aug 18 00:37:15 2013 From: bill.hurlock at cpcomms.com (Bill Hurlock) Date: Sun, 18 Aug 2013 00:37:15 +0000 Subject: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 45 In-Reply-To: References: Message-ID: <8F656C03689E074C9EE70EE3343E4B8416588AC3@CPNYMAIL2.cpcomm.int> All set on everything. thanks Bill Hurlock -----Original Message----- From: app_rpt-users-bounces at ohnosec.org [mailto:app_rpt-users-bounces at ohnosec.org] On Behalf Of app_rpt-users-request at ohnosec.org Sent: Saturday, August 17, 2013 12:00 PM To: app_rpt-users at ohnosec.org Subject: App_rpt-users Digest, Vol 54, Issue 45 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..." From telesistant at hotmail.com Sun Aug 18 01:51:57 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Sat, 17 Aug 2013 18:51:57 -0700 Subject: [App_rpt-users] getting Pickle running on Beagleboard xm ver c In-Reply-To: <1376781733.66673.YahooMailNeo@web124504.mail.ne1.yahoo.com> References: <1376781733.66673.YahooMailNeo@web124504.mail.ne1.yahoo.com> Message-ID: *WHATEVER* you do, don't tell anyone.. its a HUGE secret, but the root password to a "stock" pickle install is "pickle". :-) :-) :-) Jim WB6NIL Date: Sat, 17 Aug 2013 16:22:13 -0700 From: harvard5362 at yahoo.com To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] getting Pickle running on Beagleboard xm ver c Hi sorry if this has been covered before. I am new to both beagle-board and all-star. I am also new to Linux. I have a beagle-board-xm ver c and a lox board. the beagle board booted fine with the operating system it came with. I purchased a new card so I could keep the original o.s. intact. I downloaded what I believe to be the latest version of Pickle from the allstar website. I used z-zip extracted the IMG file and placed it on the micro sd card (new) with win32diskimiger the Beagle board seems to at least partially boot as I get the Penguin in the upper left of the monitor. then all I get is a blinking curser in the left hand corner of the monitor. it gets a IP address from my router, and I can use putty to open a SSH connection to port 222. As I do not know how to log in this is as far as I have gotten. I have not found much information on the web beyond what I have done so far. please can anyone tell me either what I have done wrong or what steps I need to follow next. thank you in advance for your help. Chris _______________________________________________ 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 w5omr at att.net Sun Aug 18 04:08:46 2013 From: w5omr at att.net (Geoff) Date: Sat, 17 Aug 2013 23:08:46 -0500 Subject: [App_rpt-users] iax and iaxRPT client Message-ID: <521048CE.2020704@att.net> I've got a few stanzas in /etc/asterisk/custom/iax.conf that allow a few of us to connect via smart phones. They look like: [friend1] type=friend context=radio-w5omr-r auth=md5 secret=noneya host=dynamic disallow=all allow=gsm allow=ulaw notransfer=yes [friend2] type=friend ; context=radio-w5omr-r auth=md5 secret=noneya host=dynamic disallow=all allow=gsm allow=ulaw notransfer=yes One more, that looks identical to [friend1] that works for me, and -my- smartphone. [friend2] looks different, because that's the user that using iaxRPT as the client (he's got a windows phone and, as far as I know, there's no app for that phone) The call was rejected from his windows based client, citing first that there was some improper configuration for radio-w5omr-r at radio-w5omr-r. hmmm... So, comment out that line, and it said there some improper configuration for @radio-w5omr-r Where's it sending the '@radio-w5omr-r' line? How do I modify the /custom/iax.conf file to all that client to connect? -Geoff/W5OMR From w5omr at att.net Sun Aug 18 15:42:22 2013 From: w5omr at att.net (Geoff) Date: Sun, 18 Aug 2013 10:42:22 -0500 Subject: [App_rpt-users] iax and iaxRPT client In-Reply-To: <521048CE.2020704@att.net> References: <521048CE.2020704@att.net> Message-ID: <5210EB5E.903@att.net> On 08/17/2013 11:08 PM, Geoff wrote: > I've got a few stanzas in /etc/asterisk/custom/iax.conf that allow a > few of us to connect via smart phones. I've searched ohnosec for the server settings for iaxRPT client. *~~~~~~~~~~~~~~~~~~~~~~~~~ Setup of Asterisk Server for iaxRPT Connections* If you properly answered the questions at install time, the Asterisk/EVB w/app_rpt installer automatically enters the necessary information in the configuration files "iax_rpt_custom.conf" and "extensions_rpt_custom.conf" for your node . Otherwise you will have to edit or create and include these files manually into your dialplan along the lines of the example link below. ~~~~~~~~~~~~~~~~~~~~~~~~~~ This seems a bit vague. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wb3awj at comcast.net Sun Aug 18 16:25:19 2013 From: wb3awj at comcast.net (Robert A. Poff) Date: Sun, 18 Aug 2013 12:25:19 -0400 Subject: [App_rpt-users] iax and iaxRPT client In-Reply-To: <5210EB5E.903@att.net> References: <521048CE.2020704@att.net> <5210EB5E.903@att.net> Message-ID: <4e7da5ca-70a8-4ab3-9c01-400251aeaf88@email.android.com> Take a look here http://www.allstarnode.com/viewtopic.php?f=5&t=25 The setup between Acid and XIPAR is pretty much the same. Geoff wrote: >On 08/17/2013 11:08 PM, Geoff wrote: >> I've got a few stanzas in /etc/asterisk/custom/iax.conf that allow a >> few of us to connect via smart phones. > >I've searched ohnosec for the server settings for iaxRPT client. > >*~~~~~~~~~~~~~~~~~~~~~~~~~ >Setup of Asterisk Server for iaxRPT Connections* > >If you properly answered the questions at install time, the >Asterisk/EVB >w/app_rpt installer automatically enters the necessary information in >the configuration files "iax_rpt_custom.conf" and >"extensions_rpt_custom.conf" for your node . Otherwise you will have to > >edit or create and include these files manually into your dialplan >along >the lines of the example link below. >~~~~~~~~~~~~~~~~~~~~~~~~~~ > > >This seems a bit vague. > > > > > >------------------------------------------------------------------------ > >_______________________________________________ >App_rpt-users mailing list >App_rpt-users at ohnosec.org >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- Sent from my Android phone with K-9 Mail. Please excuse my brevity and typing errors. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wb3awj at comcast.net Sun Aug 18 16:47:18 2013 From: wb3awj at comcast.net (Robert A. Poff) Date: Sun, 18 Aug 2013 12:47:18 -0400 Subject: [App_rpt-users] iax and iaxRPT client In-Reply-To: <5210EB5E.903@att.net> References: <521048CE.2020704@att.net> <5210EB5E.903@att.net> Message-ID: <22484a3f-503b-4fc8-ac73-4f7cb737eb6b@email.android.com> Better yet look here http://www.xelatec.com/xipar/node/89 Geoff wrote: >On 08/17/2013 11:08 PM, Geoff wrote: >> I've got a few stanzas in /etc/asterisk/custom/iax.conf that allow a >> few of us to connect via smart phones. > >I've searched ohnosec for the server settings for iaxRPT client. > >*~~~~~~~~~~~~~~~~~~~~~~~~~ >Setup of Asterisk Server for iaxRPT Connections* > >If you properly answered the questions at install time, the >Asterisk/EVB >w/app_rpt installer automatically enters the necessary information in >the configuration files "iax_rpt_custom.conf" and >"extensions_rpt_custom.conf" for your node . Otherwise you will have to > >edit or create and include these files manually into your dialplan >along >the lines of the example link below. >~~~~~~~~~~~~~~~~~~~~~~~~~~ > > >This seems a bit vague. > > > > > >------------------------------------------------------------------------ > >_______________________________________________ >App_rpt-users mailing list >App_rpt-users at ohnosec.org >http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- Sent from my Android phone with K-9 Mail. Please excuse my brevity and typing errors. -------------- next part -------------- An HTML attachment was scrubbed... URL: From nessenj at jimsoffice.org Sun Aug 18 20:40:24 2013 From: nessenj at jimsoffice.org (James Nessen) Date: Sun, 18 Aug 2013 13:40:24 -0700 Subject: [App_rpt-users] echolink issues Message-ID: I am trying to get echolink going for a buddy of mine and running into a few snags.. I noticed that his station doesn't appear online, nor does it have the echolink directory stored, looking at his logs, I see: [Aug 18 13:33:03] ERROR[19489] chan_echolink.c: Error in parsing header on nawest.echolink.org [Aug 18 13:33:08] ERROR[19489] chan_echolink.c: Error in parsing header on servers.echolink.org I have tried some other servers (that I got from the Windows program) and regardless of what server I use, I am getting the errors above. Few things I have checked so far: 1. Login information - I was able to login successfully via the Windows program using the callsign and password that I have stored in echolink.conf 2. Update - I just updated and rebuild the astsrc tree (I thought maybe I had an outdated version of chan_echolink). Here is his echolink.conf (password hidden to protect the innocent): [el0] confmode=no call=WU7Q-R ; Change this! pwd= ; Change this! name=Mike qth=Elk Grove, CA email=wmflud at yahoo.com maxstns=20 rtcptimeout=10 node=3590 ; Change this! recfile=/tmp/recorded.gsm astnode=2336 ; Change this to your active Allstar node number! context=radio-secure server1=nawest.echolink.org server2=servers.echolink.org server3=backup.echolink.org Any pointers would be much appreciated. Thanks! Jim, K6JWN/AG Nodes 2165, 27137 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ve3elb at yahoo.com Sun Aug 18 21:52:47 2013 From: ve3elb at yahoo.com (Vince P) Date: Sun, 18 Aug 2013 17:52:47 -0400 Subject: [App_rpt-users] echolink issues In-Reply-To: References: Message-ID: <9975C39F-6092-4B27-BCF5-6FE3C6FD0646@yahoo.com> You may want to double check your router settings and by sure that the ports are enabled for Echolink to work. Ports: UDP 5198,5199 TCP 5200 73, Vince VE3ELB On 2013-08-18, at 4:40 PM, James Nessen wrote: > I am trying to get echolink going for a buddy of mine and running into a few snags.. > > I noticed that his station doesn't appear online, nor does it have the echolink directory stored, looking at his logs, I see: > > [Aug 18 13:33:03] ERROR[19489] chan_echolink.c: Error in parsing header on nawest.echolink.org > [Aug 18 13:33:08] ERROR[19489] chan_echolink.c: Error in parsing header on servers.echolink.org > > I have tried some other servers (that I got from the Windows program) and regardless of what server I use, I am getting the errors above. > > Few things I have checked so far: > > 1. Login information - I was able to login successfully via the Windows program using the callsign and password that I have stored in echolink.conf > 2. Update - I just updated and rebuild the astsrc tree (I thought maybe I had an outdated version of chan_echolink). > > Here is his echolink.conf (password hidden to protect the innocent): > > [el0] > confmode=no > call=WU7Q-R ; Change this! > pwd= ; Change this! > name=Mike > qth=Elk Grove, CA > email=wmflud at yahoo.com > maxstns=20 > rtcptimeout=10 > node=3590 ; Change this! > recfile=/tmp/recorded.gsm > astnode=2336 ; Change this to your active Allstar node number! > context=radio-secure > server1=nawest.echolink.org > server2=servers.echolink.org > server3=backup.echolink.org > Any pointers would be much appreciated. > > Thanks! > > Jim, K6JWN/AG > Nodes 2165, 27137 > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From cypresstower at yahoo.com Mon Aug 19 02:03:58 2013 From: cypresstower at yahoo.com (Johnny Keeker) Date: Sun, 18 Aug 2013 19:03:58 -0700 (PDT) Subject: [App_rpt-users] echolink issues In-Reply-To: References: Message-ID: <1376877838.870.YahooMailNeo@web163601.mail.gq1.yahoo.com> Try this out too.? Don't forget to forward your ports to the linux box IP... ? [el0] confmode=no call=YOURCALL ; must be in capital letters?or your node won't allow connections?? ;change pwd=your echolink password??? ;change name=node name??? ;change qth=your qth??? ;change email=your e-mail?? ; change maxstns=4 rtcptimeout=10 node=echolink node number??? ;change recfile=/tmp/recorded.gsm astnode=your allstar node number?? ; change context=radio-secure server1=nasouth.echolink.org server2=naeast.echolink.org server3=servers.echolink.org server3=backup.echolink.org freq=your frequency?? ; change tone=your ctcss tone?? ; change lat=23.12647?? ; change lon=-81.67739?? ; change power=6 ; 0=0W, 1=1W, 2=4W, 3=9W, 4=16W, 5=25W, 6=36W, 7=49W, 8=64W, 9=81W (Power in Watts)??? ;change height=5 ; 0=10' ,1=20',2=40',3=80' ,4=160' ,5=320' ,6=640' ,7=1280',8=2560',9=5120' (AMSL in Feet)?? ?;change gain=9 ;change antenna gain dir=0 ; 0=omni, 1=45deg, 2=90deg, 3=135deg, 4=180deg, 5=225deg, 6=270deg, 7=315deg, 8=360deg (Direction)??? ;change ;deny=w6xxx permit=wiaw,w5yi??? ; add up to 29 nodes. no one seem to know why there is a limit on the number of allowed nodes? permit=*-* ; permit statement must be last line ________________________________ From: James Nessen To: App_rpt-users at ohnosec.org Sent: Sunday, August 18, 2013 4:40 PM Subject: [App_rpt-users] echolink issues I am trying to get echolink going for a buddy of mine and running into a few snags.. I noticed that his station doesn't appear online, nor does it have the echolink directory stored, looking at his logs, I see: [Aug 18 13:33:03] ERROR[19489] chan_echolink.c: Error in parsing header on nawest.echolink.org [Aug 18 13:33:08] ERROR[19489] chan_echolink.c: Error in parsing header on servers.echolink.org I have tried some other servers (that I got from the Windows program) and regardless of what server I use, I am getting the errors above. Few things I have checked so far: 1. Login information - I was able to login successfully via the Windows program using the callsign and password that I have stored in echolink.conf 2. Update - I just updated and rebuild the astsrc tree (I thought maybe I had an outdated version of chan_echolink). Here is his echolink.conf (password hidden to protect the innocent): [el0] confmode=no call=WU7Q-R??? ; Change this! pwd=??? ; Change this! name=Mike qth=Elk Grove, CA email=wmflud at yahoo.com maxstns=20 rtcptimeout=10 node=3590 ; Change this! recfile=/tmp/recorded.gsm astnode=2336 ; Change this to your active Allstar node number! context=radio-secure server1=nawest.echolink.org server2=servers.echolink.org server3=backup.echolink.org Any pointers would be much appreciated. Thanks! Jim, K6JWN/AG Nodes 2165, 27137 _______________________________________________ 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 harvard5362 at yahoo.com Mon Aug 19 20:55:59 2013 From: harvard5362 at yahoo.com (C B) Date: Mon, 19 Aug 2013 13:55:59 -0700 (PDT) Subject: [App_rpt-users] Audio level test tone with Beagleboard xm and LOX board. Message-ID: <1376945759.53723.YahooMailNeo@web124504.mail.ne1.yahoo.com> ? Hi ? Tried to get the test tone as per some of the instructions I have read thus far. ? I have looked at the rpt.conf file and it looks like it is set up to use *99 as it has the line in it *99=cop,6. ? The line with *989=cop,4 had a ; (semicolon) in for of it so I assume it is disabled. ? When I type on the CLI rpt fun 29876 *99 it does not send tone. ? Please tell me what I have done wrong. ? Thank you in advance for your help. ? Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Mon Aug 19 22:45:30 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Mon, 19 Aug 2013 15:45:30 -0700 Subject: [App_rpt-users] Audio level test tone with Beagleboard xm and LOX board. In-Reply-To: <1376945759.53723.YahooMailNeo@web124504.mail.ne1.yahoo.com> References: <1376945759.53723.YahooMailNeo@web124504.mail.ne1.yahoo.com> Message-ID: Take the semicolon off the *989 line, restart asterisk and you'll be able to make tone. -- Tim :wq On Aug 19, 2013, at 1:55 PM, C B wrote: > > Hi > > Tried to get the test tone as per some of the instructions I have read thus far. > > I have looked at the rpt.conf file and it looks like it is set up to use *99 as it has the line in it *99=cop,6. > > The line with *989=cop,4 had a ; (semicolon) in for of it so I assume it is disabled. > > When I type on the CLI rpt fun 29876 *99 it does not send tone. > > Please tell me what I have done wrong. > > Thank you in advance for your help. > > Chris > > > > > _______________________________________________ > 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 harvard5362 at yahoo.com Mon Aug 19 23:24:22 2013 From: harvard5362 at yahoo.com (C B) Date: Mon, 19 Aug 2013 16:24:22 -0700 (PDT) Subject: [App_rpt-users] Audio level test tone with Beagleboard xm and LOX board. In-Reply-To: References: <1376945759.53723.YahooMailNeo@web124504.mail.ne1.yahoo.com> Message-ID: <1376954662.84367.YahooMailNeo@web124504.mail.ne1.yahoo.com> Hi ? I made the edit to the file, however it still did not work. ? Here is the response I got. ? Perhaps I am not executing it from the correct place? ? root at N6LXX-1:~# rpt fun 29876 *989 -bash: rpt: command not found ? thank you ? Chris ________________________________ From: Tim Sawyer To: C B Cc: "app_rpt-users at ohnosec.org" Sent: Monday, August 19, 2013 3:45 PM Subject: Re: [App_rpt-users] Audio level test tone with Beagleboard xm and LOX board. Take the semicolon off the *989 line, restart asterisk and you'll be able to make tone. -- Tim :wq On Aug 19, 2013, at 1:55 PM, C B wrote: > >Hi > >Tried to get the test tone as per some of the instructions I have read thus far. > >I have looked at the rpt.conf file and it looks like it is set up to use *99 as it has the line in it *99=cop,6. > >The line with *989=cop,4 had a ; (semicolon) in for of it so I assume it is disabled. > >When I type on the CLI rpt fun 29876 *99 it does not send tone. > >Please tell me what I have done wrong. > >Thank you in advance for your help. > >Chris > > > >_______________________________________________ >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 Aug 19 23:33:17 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Mon, 19 Aug 2013 16:33:17 -0700 Subject: [App_rpt-users] Audio level test tone with Beagleboard xm and LOX board. In-Reply-To: <1376954662.84367.YahooMailNeo@web124504.mail.ne1.yahoo.com> References: <1376945759.53723.YahooMailNeo@web124504.mail.ne1.yahoo.com>, , <1376954662.84367.YahooMailNeo@web124504.mail.ne1.yahoo.com> Message-ID: Why dont you try that from the Asterisk CLI??? (do "asterisk -r" from the Linux command line) Jim Date: Mon, 19 Aug 2013 16:24:22 -0700 From: harvard5362 at yahoo.com To: tim.sawyer at me.com CC: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Audio level test tone with Beagleboard xm and LOX board. Hi I made the edit to the file, however it still did not work. Here is the response I got. Perhaps I am not executing it from the correct place? root at N6LXX-1:~# rpt fun 29876 *989 -bash: rpt: command not found thank you Chris From: Tim Sawyer To: C B Cc: "app_rpt-users at ohnosec.org" Sent: Monday, August 19, 2013 3:45 PM Subject: Re: [App_rpt-users] Audio level test tone with Beagleboard xm and LOX board. Take the semicolon off the *989 line, restart asterisk and you'll be able to make tone. --Tim:wq On Aug 19, 2013, at 1:55 PM, C B wrote: Hi Tried to get the test tone as per some of the instructions I have read thus far. I have looked at the rpt.conf file and it looks like it is set up to use *99 as it has the line in it *99=cop,6. The line with *989=cop,4 had a ; (semicolon) in for of it so I assume it is disabled. When I type on the CLI rpt fun 29876 *99 it does not send tone. Please tell me what I have done wrong. Thank you in advance for your help. Chris _______________________________________________ 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 kj6qfs at gmail.com Sat Aug 24 03:00:18 2013 From: kj6qfs at gmail.com (Sam Skolfield) Date: Fri, 23 Aug 2013 20:00:18 -0700 Subject: [App_rpt-users] Looking for weatherproof outdoor cabinets Message-ID: Hello Group, By any chance does anybody in the a) Los Angeles county b) Ventura County c) Orange County d) San Bernardino County or e) Riverside County areas have an extra Motorola J series (or equivalent manufacturer) outdoor cabinet available that's in usable shape to use for a repeater installation at a residential location? Or, better yet, two? I can pick up on a mutually agreeable schedule. Thanks! -- KJ6QFS Sam Skolfield -------------- next part -------------- An HTML attachment was scrubbed... URL: From Benjamin at kb9lfz.com Sat Aug 24 04:46:19 2013 From: Benjamin at kb9lfz.com (Benjamin L. Naber) Date: Sat, 24 Aug 2013 00:46:19 -0400 Subject: [App_rpt-users] DTMF commands Message-ID: <1377319579.1839.47.camel@benjamin-hp> Greetings All, I would like to know if it is 1.) Possible, and 2.) what file(s) need to be modified to change how DTMF commands are interpreted by the system. I'm working on a system in which the users do not have the * or # DTMF commands available on their radios. At this time, the users only options will be: connect to and disconnect from a node. The node numbers may be 2XXXX an above. In under for a user to connect to a node, the dial plan must see five digits as a valid node number, starting with the correct node number start. For this case, we'll use 20000 as the first node. So I thought of the users using '1(X)(..)' for commands. '1' followed by the node number to connect, and '12' to disconnect, for example. Could asterisk be made to recognize single or double digit DTMF tones as commands without using * ? ~Benjamin, KB9LFZ allstar node 28569 From harvard5362 at yahoo.com Sat Aug 24 13:31:14 2013 From: harvard5362 at yahoo.com (C B) Date: Sat, 24 Aug 2013 06:31:14 -0700 (PDT) Subject: [App_rpt-users] keeping connections permanent Message-ID: <1377351074.7330.YahooMailNeo@web124505.mail.ne1.yahoo.com> Hi ? how do I make my connections between my nodes permanent. ? they seem to drop from time to time. ? Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From robert at n5qm.com Sat Aug 24 14:19:40 2013 From: robert at n5qm.com (Robert Garcia) Date: Sat, 24 Aug 2013 09:19:40 -0500 Subject: [App_rpt-users] DTMF commands In-Reply-To: <1377319579.1839.47.camel@benjamin-hp> References: <1377319579.1839.47.camel@benjamin-hp> Message-ID: Ben, You may want to take a look at this config options to change the * used to designate the beginning of a function to some other digit. http://ohnosec.org/drupal/node/112 Robert N5QM On Fri, Aug 23, 2013 at 11:46 PM, Benjamin L. Naber wrote: > Greetings All, > > I would like to know if it is 1.) Possible, and 2.) what file(s) need to > be modified to change how DTMF commands are interpreted by the system. > > I'm working on a system in which the users do not have the * or # DTMF > commands available on their radios. At this time, the users only options > will be: connect to and disconnect from a node. The node numbers may be > 2XXXX an above. > > In under for a user to connect to a node, the dial plan must see five > digits as a valid node number, starting with the correct node number > start. For this case, we'll use 20000 as the first node. > > So I thought of the users using '1(X)(..)' for commands. '1' followed by > the node number to connect, and '12' to disconnect, for example. > > Could asterisk be made to recognize single or double digit DTMF tones as > commands without using * ? > > ~Benjamin, KB9LFZ > allstar node 28569 > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From ke2n at cs.com Sat Aug 24 17:59:38 2013 From: ke2n at cs.com (Ken) Date: Sat, 24 Aug 2013 13:59:38 -0400 Subject: [App_rpt-users] keeping connections permanent In-Reply-To: <1377351074.7330.YahooMailNeo@web124505.mail.ne1.yahoo.com> References: <1377351074.7330.YahooMailNeo@web124505.mail.ne1.yahoo.com> Message-ID: <006d01cea0f3$b38ad3c0$1aa07b40$@cs.com> You need to use the so-called permalink type of linking This are ilink 11,12 and 13 The function numbers may be different on your system 71=ilink,11 ; permalink disconnect 72=ilink,12 ; permalink connect monitor only 73=ilink,13 ; permalink connect transceive Regards Ken From: C B [mailto:harvard5362 at yahoo.com] Sent: Saturday, August 24, 2013 9:31 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] keeping connections permanent Hi how do I make my connections between my nodes permanent. they seem to drop from time to time. Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From chris.andrist at gmail.com Sat Aug 24 19:12:47 2013 From: chris.andrist at gmail.com (Chris Andrist) Date: Sat, 24 Aug 2013 13:12:47 -0600 Subject: [App_rpt-users] Kenwood TKR-720 COS Interfacing Message-ID: I am having problems interfacing my TKR-720 to app_rpt with a URIx. It does not detect a signal on pin 13 of the repeater. I am using COS so letting the URIx do the work for me will not work. Has anybody interfaced one before? If so, did you have to do anything special? Regards, Chris Andrist, KC7WSU -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6ko at innercite.com Sat Aug 24 20:09:58 2013 From: kj6ko at innercite.com (KJ6KO) Date: Sat, 24 Aug 2013 13:09:58 -0700 Subject: [App_rpt-users] keeping connections permanent References: <1377351074.7330.YahooMailNeo@web124505.mail.ne1.yahoo.com> <006d01cea0f3$b38ad3c0$1aa07b40$@cs.com> Message-ID: <1EBC72CED7EC40B0A750393CB2264BCC@KJ6KO> Do you need to do it to both ends of the link or only one? ----- Original Message ----- From: Ken To: 'C B' ; app_rpt-users at ohnosec.org Sent: Saturday, August 24, 2013 10:59 AM Subject: Re: [App_rpt-users] keeping connections permanent You need to use the so-called permalink type of linking This are ilink 11,12 and 13 The function numbers may be different on your system 71=ilink,11 ; permalink disconnect 72=ilink,12 ; permalink connect monitor only 73=ilink,13 ; permalink connect transceive Regards Ken From: C B [mailto:harvard5362 at yahoo.com] Sent: Saturday, August 24, 2013 9:31 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] keeping connections permanent Hi how do I make my connections between my nodes permanent. they seem to drop from time to time. Chris __________ Information from ESET NOD32 Antivirus, version of virus signature database 8724 (20130824) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com ------------------------------------------------------------------------------ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users __________ Information from ESET NOD32 Antivirus, version of virus signature database 8724 (20130824) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com __________ Information from ESET NOD32 Antivirus, version of virus signature database 8724 (20130824) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From bbrown at byrg.net Sat Aug 24 20:40:40 2013 From: bbrown at byrg.net (=?ISO-8859-1?Q?Bob_Brown_=2D_W=D8NQX?=) Date: Sat, 24 Aug 2013 15:40:40 -0500 Subject: [App_rpt-users] Kenwood TKR-720 COS Interfacing In-Reply-To: References: Message-ID: In order for the rear panel connections on the 15 pin molex to function you have to have pins 1 & 2 shorted together. also make sure the take over button is out and no LED lit. if your using external controller the the repeat button is out . if your using DSP to derive your ctcss pull the serial eprom(93c24) from the CTCSS board this places the radio in CSQ mode. gud luck -- Thanks in Advance Bob Brown, W?NQX Kansas City Metro Area http://drsm0ke.net http://byrg.net http://sm0kenet.net http://kcdstar.byrg.net Quis custodiet ipsos custodes? -- On Sat, Aug 24, 2013 at 2:12 PM, Chris Andrist wrote: > I am having problems interfacing my TKR-720 to app_rpt with a URIx. It does > not detect a signal on pin 13 of the repeater. I am using COS so letting the > URIx do the work for me will not work. > > Has anybody interfaced one before? If so, did you have to do anything > special? > > > Regards, > > Chris Andrist, KC7WSU > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > From bdboyle at bdboyle.com Sat Aug 24 21:40:15 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Sat, 24 Aug 2013 17:40:15 -0400 Subject: [App_rpt-users] keeping connections permanent In-Reply-To: <1EBC72CED7EC40B0A750393CB2264BCC@KJ6KO> References: <1377351074.7330.YahooMailNeo@web124505.mail.ne1.yahoo.com> <006d01cea0f3$b38ad3c0$1aa07b40$@cs.com> <1EBC72CED7EC40B0A750393CB2264BCC@KJ6KO> Message-ID: <5219283F.2020600@bdboyle.com> On 8/24/2013 4:09 PM, KJ6KO wrote: > Do you need to do it to both ends of the link or only one? Only one. One thing you may want to consider as you build multiple systems is the concept of a hub (or reflector) and spoke arrangement where you have one allstar node configured as a hub, and use that as the center of your repeater network, where the machines are located on the spokes. This allows you to centralize management of your repeaters as well as ease the consistency and stand-up process (not to mention the flexibility). If you place it on a separate computer, you also reduce the processing overhead; a hub node does no DSP, only routing of the digital signals which is less intensive than decoding, de/pre-emphasizing, and all the attendant folderol to get the signals in and out. It also means, in a well-architected system, that you have one place to go to manage x systems; the repeater nodes do what they have to, and the hub manages who is connected to whom through its own features, capabilities, scripting, and so forth. Asterisk: thinking outside the box for lots of years. And Real Programmers don't write Pascal. Bryan Allstar 27294, 27295, 27673, 27710, 27774, 28254, 28868, etc. From bdboyle at bdboyle.com Sat Aug 24 23:13:20 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Sat, 24 Aug 2013 19:13:20 -0400 Subject: [App_rpt-users] keeping connections permanent In-Reply-To: References: <1377351074.7330.YahooMailNeo@web124505.mail.ne1.yahoo.com><006d01cea0f3$b38ad3c0$1aa07b40$@cs.com><1EBC72CED7EC40B0A750393CB2264BCC@KJ6KO> <5219283F.2020600@bdboyle.com> Message-ID: <52193E10.5080708@bdboyle.com> On 8/24/2013 6:43 PM, KJ6KO wrote: > Thanks...Exactly what I am planning! Have the HUB and am adding more > nodes slowly! > Would it be best to set the HUB up for the perm links or the outlying > nodes? I assume the hub, but we all know what happens when you > "assume". hi hi My own opinion is worth what it'll cost you (0), since there are probably as many thoughts regarding this as subs to the list and variety of networks built with the software, from the simplest 4 or radio interconnection schemes to the borg-like WAN system (said with affection, ok?)...however, that being said, from a risk analysis and continuity of operations standpoint...I'd initiate the permalink from the hub out. One less thing for the spokes to worry about, and since the hub is the hub (how's that for a redundant statement) or core of the net...makes sense to have it do what it's doing (interconnecting N+1 repeaters) and let the leaves do what they do: managing the radio interfaces and forwarding the audio back to the mother ship. I'm sure others will agree, disagree, or want to discuss for discussion and clarification of thought purposes...and at least with the flexibility of the system, there is no 100% right or 100% wrong answer. :) B From harvard5362 at yahoo.com Sat Aug 24 23:23:31 2013 From: harvard5362 at yahoo.com (C B) Date: Sat, 24 Aug 2013 16:23:31 -0700 (PDT) Subject: [App_rpt-users] Asterisk ended with exit status 1 Message-ID: <1377386611.75060.YahooMailNeo@web124506.mail.ne1.yahoo.com> Hi ? I am attempting to build a ACID node. ? After several attempts of reinstalling the ACID with the same results I am asking for some help. ? All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. ? mpg123: no process killed Asterisk ended with exit status 1 Asterisk died with code 1 Automatically restarting Asterisk ? Computer is a HPdc5700 small form factor 1 GIG memory 500 GB SATA HDD ? than you in advance for any help ? Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From Sysman at Xceptions.COM Sat Aug 24 23:46:30 2013 From: Sysman at Xceptions.COM (Paul J. Agamata) Date: Sat, 24 Aug 2013 23:46:30 +0000 Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: <1377386611.75060.YahooMailNeo@web124506.mail.ne1.yahoo.com> Message-ID: This is indicative of the zaptel drivers not in your kernel. Compile/Install then reboot and all should be well. The 'zaptel' directory is in the 'asterisk' source directory. Be aware that if you update your kernel you will need to re-install the zaptel modules. Regards, Paul _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Date: Saturday, August 24, 2013 1:23 PM To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] Asterisk ended with exit status 1 Hi I am attempting to build a ACID node. After several attempts of reinstalling the ACID with the same results I am asking for some help. All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. mpg123: no process killed Asterisk ended with exit status 1 Asterisk died with code 1 Automatically restarting Asterisk Computer is a HPdc5700 small form factor 1 GIG memory 500 GB SATA HDD than you in advance for any help Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2786 bytes Desc: not available URL: From ke2n at cs.com Sat Aug 24 23:54:42 2013 From: ke2n at cs.com (Ken) Date: Sat, 24 Aug 2013 19:54:42 -0400 Subject: [App_rpt-users] keeping connections permanent In-Reply-To: <1EBC72CED7EC40B0A750393CB2264BCC@KJ6KO> References: <1377351074.7330.YahooMailNeo@web124505.mail.ne1.yahoo.com> <006d01cea0f3$b38ad3c0$1aa07b40$@cs.com> <1EBC72CED7EC40B0A750393CB2264BCC@KJ6KO> Message-ID: <008901cea125$4d97a9d0$e8c6fd70$@cs.com> You can do it from EITHER of the two ends. Of course, the two nodes need to be unlinked to start with, or you will probably get an error message. When you link a pair of nodes with the permalink command, you need to use the corresponding permalink disconnect command, not the standard one, to disconnect. GL Ken From: KJ6KO [mailto:kj6ko at innercite.com] Sent: Saturday, August 24, 2013 4:10 PM To: Ken; 'C B'; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] keeping connections permanent Do you need to do it to both ends of the link or only one? ----- Original Message ----- From: Ken To: 'C B' ; app_rpt-users at ohnosec.org Sent: Saturday, August 24, 2013 10:59 AM Subject: Re: [App_rpt-users] keeping connections permanent You need to use the so-called permalink type of linking This are ilink 11,12 and 13 The function numbers may be different on your system 71=ilink,11 ; permalink disconnect 72=ilink,12 ; permalink connect monitor only 73=ilink,13 ; permalink connect transceive Regards Ken From: C B [mailto:harvard5362 at yahoo.com] Sent: Saturday, August 24, 2013 9:31 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] keeping connections permanent Hi how do I make my connections between my nodes permanent. they seem to drop from time to time. Chris __________ Information from ESET NOD32 Antivirus, version of virus signature database 8724 (20130824) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com _____ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users __________ Information from ESET NOD32 Antivirus, version of virus signature database 8724 (20130824) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com __________ Information from ESET NOD32 Antivirus, version of virus signature database 8724 (20130824) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From Ramesh at va3uv.com Sun Aug 25 13:05:57 2013 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Sun, 25 Aug 2013 09:05:57 -0400 Subject: [App_rpt-users] PC Engines Alix 3d3 Message-ID: <521A0135.9040402@va3uv.com> Hi All; Wonder if anyone has some long-term success (~ 1 year +) using the PC Engines Alix 3d3 board with app_rpt? Interested in knowing whether you are using it in a full duplex application (chan_usbradio) with DSP, etc., or in a half-duplex / simplex application (chan_simpleusb)? Centos (ACID), Limey or other? Cheers! Ramesh. From cypresstower at yahoo.com Sun Aug 25 17:08:57 2013 From: cypresstower at yahoo.com (Johnny Keeker) Date: Sun, 25 Aug 2013 10:08:57 -0700 (PDT) Subject: [App_rpt-users] keeping connections permanent In-Reply-To: <006d01cea0f3$b38ad3c0$1aa07b40$@cs.com> References: <1377351074.7330.YahooMailNeo@web124505.mail.ne1.yahoo.com> <006d01cea0f3$b38ad3c0$1aa07b40$@cs.com> Message-ID: <1377450537.6416.YahooMailNeo@web163603.mail.gq1.yahoo.com> As Ken pointed out you must use the ilink commands.? you can also change the 71 to something like 01 as long as it doesn't start with a number that's already used in your ilink list. Place the ilink commands under the node stanza your?wanting to use the permamemt link commands with.? Don't forget to reload your configuration files after you edit the stanza.? I commented out the ;0=autopatchdn ; Autopatch down because it starts with 0.[functions] 01=ilink,11 02=ilink,12 03=ilink,13 1=ilink,1 2=ilink,2 3=ilink,3 4=ilink,4 5=macro,1 70=ilink,5 71=ilink,6 72=ilink,7 73=ilink,15 74=ilink,16 75=ilink,8 80=status,1 81=status,2 6=autopatchup,noct=1,farenddisconnect=1,dialtime=20000 ; Autopatch up ;0=autopatchdn ; Autopatch down ;989=cop,4 980=status,3 99=cop,6 ________________________________ From: Ken To: 'C B' ; app_rpt-users at ohnosec.org Sent: Saturday, August 24, 2013 1:59 PM Subject: Re: [App_rpt-users] keeping connections permanent You need to use the so-called permalink type of linking This are ilink 11,12 and 13 The function numbers may be different on your system ? 71=ilink,11??????????????????????? ; permalink disconnect 72=ilink,12??????????????????????? ; permalink connect monitor only 73=ilink,13??????????????????????? ; permalink connect transceive ? Regards ? Ken ? ? From:C B [mailto:harvard5362 at yahoo.com] Sent: Saturday, August 24, 2013 9:31 AM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] keeping connections permanent ? Hi ? how do I make my connections between my nodes permanent. ? they seem to drop from time to time. ? Chris _______________________________________________ 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 harvard5362 at yahoo.com Sun Aug 25 18:10:59 2013 From: harvard5362 at yahoo.com (C B) Date: Sun, 25 Aug 2013 11:10:59 -0700 (PDT) Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: References: <1377388441.95992.YahooMailNeo@web124506.mail.ne1.yahoo.com> Message-ID: <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> Hi ? I did what you suggested and it seems to complete without error. ? However it did not resolve the problem. ? I ran the same commands for Asterisk, still the same issue. ? Reran the Zaptel compile / install again and still no luck. ? I re-downloaded for the allstarlink.org the ISO for ACID in case what I downloaded originally was corrupt. ? after reinstalling I looked at the /root/acid?install.log and I did not see anything that looked like an error. ? Am I forgetting something or could my hardware not be combatable? ? As part of this project I did install this successfully on a different computer. ? Any help greatly appreciated. ? Chris ________________________________ From: Paul J. Agamata To: C B Sent: Saturday, August 24, 2013 4:57 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Log into your 'root' account and navigate to the 'zaptel' directory. When your in there type the following: ./configure make make install Then reboot your computer and everything should be fine. _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Reply-To: C B Date: Saturday, August 24, 2013 1:54 PM To: Paul Agamata Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Paul ? Please excuse my lack knowledge here, I am very unsure of the compile / install procedure you are speaking of. ? is there anything you can refer me to that will contain instructions on how to do this? ? Is it something I did wrong? ? Sorry for not having a lot of experience. ? And thank you for your help. ? Chris ________________________________ From: Paul J. Agamata To: C B ; "app_rpt-users at ohnosec.org" Sent: Saturday, August 24, 2013 4:46 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 This is indicative of the zaptel drivers not in your kernel. ?Compile/Install then reboot and all should be well. ?The 'zaptel' directory is in the 'asterisk' source directory. Be aware that if you update your kernel you will need to re-install the zaptel modules. Regards, Paul _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Date: Saturday, August 24, 2013 1:23 PM To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] Asterisk ended with exit status 1 Hi I am attempting to build a ACID node. After several attempts of reinstalling the ACID with the same results I am asking for some help. All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. mpg123: no process killed Asterisk ended with exit status 1 Asterisk died with code 1 Automatically restarting Asterisk Computer is a HPdc5700 small form factor 1 GIG memory 500 GB SATA HDD than you in advance for any help Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image[1].jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: From markjohnston73 at gmail.com Sun Aug 25 18:26:25 2013 From: markjohnston73 at gmail.com (Mark Johnston) Date: Sun, 25 Aug 2013 11:26:25 -0700 Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> References: <1377388441.95992.YahooMailNeo@web124506.mail.ne1.yahoo.com> <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> Message-ID: I had the same errors on my 64 bit computer, seems it was simply a matter of using simpleusb instead of usbradio.conf in /etc/asterisk Someone here may have an example config ... On Aug 25, 2013 11:17 AM, "C B" wrote: > Hi > > I did what you suggested and it seems to complete without error. > > However it did not resolve the problem. > > I ran the same commands for Asterisk, still the same issue. > > Reran the Zaptel compile / install again and still no luck. > > I re-downloaded for the allstarlink.org the ISO for ACID in case what I > downloaded originally was corrupt. > > after reinstalling I looked at the /root/acid?install.log and I did not > see anything that looked like an error. > > Am I forgetting something or could my hardware not be combatable? > > As part of this project I did install this successfully on a different > computer. > > Any help greatly appreciated. > > Chris > > *From:* Paul J. Agamata > *To:* C B > *Sent:* Saturday, August 24, 2013 4:57 PM > *Subject:* Re: [App_rpt-users] Asterisk ended with exit status 1 > > Log into your 'root' account and navigate to the 'zaptel' directory. > > When your in there type the following: > > ./configure > make > make install > > Then reboot your computer and everything should be fine. > > _______________________________ > *Paul J. Agamata* > *WH6FM* > Sysman at Xceptions.COM > Hilo, Hawaii > > > From: C B > Reply-To: C B > Date: Saturday, August 24, 2013 1:54 PM > To: Paul Agamata > Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 > > Paul > > Please excuse my lack knowledge here, I am very unsure of the compile / > install procedure you are speaking of. > > is there anything you can refer me to that will contain instructions on > how to do this? > > Is it something I did wrong? > > Sorry for not having a lot of experience. > > And thank you for your help. > > Chris > > *From:* Paul J. Agamata > *To:* C B ; "app_rpt-users at ohnosec.org" < > app_rpt-users at ohnosec.org> > *Sent:* Saturday, August 24, 2013 4:46 PM > *Subject:* Re: [App_rpt-users] Asterisk ended with exit status 1 > > This is indicative of the zaptel drivers not in your kernel. > Compile/Install then reboot and all should be well. The 'zaptel' > directory is in the 'asterisk' source directory. > > Be aware that if you update your kernel you will need to re-install the > zaptel modules. > > Regards, > Paul > > > _______________________________ > *Paul J. Agamata* > *WH6FM* > Sysman at Xceptions.COM > Hilo, Hawaii > > > From: C B > Date: Saturday, August 24, 2013 1:23 PM > To: "app_rpt-users at ohnosec.org" > Subject: [App_rpt-users] Asterisk ended with exit status 1 > > Hi > > I am attempting to build a ACID node. > > After several attempts of reinstalling the ACID with the same results I am > asking for some help. > > All seems to complete normally, I download the configuration, reboot and > the following error message keeps repeating. > > mpg123: no process killed > Asterisk ended with exit status 1 > Asterisk died with code 1 > Automatically restarting Asterisk > > Computer is a HPdc5700 small form factor > 1 GIG memory > 500 GB SATA HDD > > than you in advance for any help > > Chris > > > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image[1].jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: From ke2n at cs.com Sun Aug 25 18:27:25 2013 From: ke2n at cs.com (Ken) Date: Sun, 25 Aug 2013 14:27:25 -0400 Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> References: <1377388441.95992.YahooMailNeo@web124506.mail.ne1.yahoo.com> <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> Message-ID: <00be01cea1c0$bf96d8d0$3ec48a70$@cs.com> Maybe your PC needs a BIOS update . http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?prodSeriesId=3 249646 &objectID=c01039267 Not saying you have this *particular* issue, but if yours is an older one, it might be worth a try. 73 Ken From: C B [mailto:harvard5362 at yahoo.com] Sent: Sunday, August 25, 2013 2:11 PM To: Paul J. Agamata; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Hi I did what you suggested and it seems to complete without error. However it did not resolve the problem. I ran the same commands for Asterisk, still the same issue. Reran the Zaptel compile / install again and still no luck. I re-downloaded for the allstarlink.org the ISO for ACID in case what I downloaded originally was corrupt. after reinstalling I looked at the /root/acid-install.log and I did not see anything that looked like an error. Am I forgetting something or could my hardware not be combatable? As part of this project I did install this successfully on a different computer. Any help greatly appreciated. Chris From: Paul J. Agamata To: C B Sent: Saturday, August 24, 2013 4:57 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Log into your 'root' account and navigate to the 'zaptel' directory. When your in there type the following: ./configure make make install Then reboot your computer and everything should be fine. _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Reply-To: C B Date: Saturday, August 24, 2013 1:54 PM To: Paul Agamata Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Paul Please excuse my lack knowledge here, I am very unsure of the compile / install procedure you are speaking of. is there anything you can refer me to that will contain instructions on how to do this? Is it something I did wrong? Sorry for not having a lot of experience. And thank you for your help. Chris From: Paul J. Agamata To: C B ; "app_rpt-users at ohnosec.org" Sent: Saturday, August 24, 2013 4:46 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 This is indicative of the zaptel drivers not in your kernel. Compile/Install then reboot and all should be well. The 'zaptel' directory is in the 'asterisk' source directory. Be aware that if you update your kernel you will need to re-install the zaptel modules. Regards, Paul _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Date: Saturday, August 24, 2013 1:23 PM To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] Asterisk ended with exit status 1 Hi I am attempting to build a ACID node. After several attempts of reinstalling the ACID with the same results I am asking for some help. All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. mpg123: no process killed Asterisk ended with exit status 1 Asterisk died with code 1 Automatically restarting Asterisk Computer is a HPdc5700 small form factor 1 GIG memory 500 GB SATA HDD than you in advance for any help Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: From harvard5362 at yahoo.com Sun Aug 25 21:40:05 2013 From: harvard5362 at yahoo.com (C B) Date: Sun, 25 Aug 2013 14:40:05 -0700 (PDT) Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: References: <1377388441.95992.YahooMailNeo@web124506.mail.ne1.yahoo.com> <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> Message-ID: <1377466805.70034.YahooMailNeo@web124504.mail.ne1.yahoo.com> Hi ? I believe I only enabled the COR. ? it would seem that I should find a older computer perhaps. ? Chris ________________________________ From: Pierre Martel To: C B Sent: Sunday, August 25, 2013 1:37 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 I had the same problem and was suspecting dsp. I did un update to latest svn. and was stillg etting same thing. Are you using any dsp on your node? ctcss decoding, cor, ect? From: C B Sent: Sunday, August 25, 2013 2:10 PM To: Paul J. Agamata ; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Hi ? I did what you suggested and it seems to complete without error. ? However it did not resolve the problem. ? I ran the same commands for Asterisk, still the same issue. ? Reran the Zaptel compile / install again and still no luck. ? I re-downloaded for the allstarlink.org the ISO for ACID in case what I downloaded originally was corrupt. ? after reinstalling I looked at the /root/acid?install.log and I did not see anything that looked like an error. ? Am I forgetting something or could my hardware not be combatable? ? As part of this project I did install this successfully on a different computer. ? Any help greatly appreciated. ? Chris ________________________________ From: Paul J. Agamata To: C B Sent: Saturday, August 24, 2013 4:57 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Log into your 'root' account and navigate to the 'zaptel' directory. When your in there type the following: ./configure make make install Then reboot your computer and everything should be fine. _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Reply-To: C B Date: Saturday, August 24, 2013 1:54 PM To: Paul Agamata Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Paul ? Please excuse my lack knowledge here, I am very unsure of the compile / install procedure you are speaking of. ? is there anything you can refer me to that will contain instructions on how to do this? ? Is it something I did wrong? ? Sorry for not having a lot of experience. ? And thank you for your help. ? Chris ________________________________ From: Paul J. Agamata To: C B ; "app_rpt-users at ohnosec.org" Sent: Saturday, August 24, 2013 4:46 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 This is indicative of the zaptel drivers not in your kernel.? Compile/Install then reboot and all should be well.? The 'zaptel' directory is in the 'asterisk' source directory. Be aware that if you update your kernel you will need to re-install the zaptel modules. Regards, Paul _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Date: Saturday, August 24, 2013 1:23 PM To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] Asterisk ended with exit status 1 Hi I am attempting to build a ACID node. After several attempts of reinstalling the ACID with the same results I am asking for some help. All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. mpg123: no process killed Asterisk ended with exit status 1 Asterisk died with code 1 Automatically restarting Asterisk Computer is a HPdc5700 small form factor 1 GIG memory 500 GB SATA HDD than you in advance for any help Chris ________________________________ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image Type: image/jpeg Size: 33234 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: From harvard5362 at yahoo.com Sun Aug 25 21:50:39 2013 From: harvard5362 at yahoo.com (C B) Date: Sun, 25 Aug 2013 14:50:39 -0700 (PDT) Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: References: <1377388441.95992.YahooMailNeo@web124506.mail.ne1.yahoo.com> <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> Message-ID: <1377467439.32494.YahooMailNeo@web124506.mail.ne1.yahoo.com> Hi ? tried this and no luck. ? I updated the BIOS no luck. ? I am lost. ? thank you ? Chris ________________________________ From: Jeff Carrier To: C B Sent: Sunday, August 25, 2013 11:20 AM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 I normally do this when I see this issue.? I have a node that has the error frequently.? 1. Remove the old source tree, grab the source tarball and uncompress into a new source tree, build it, and install it: cd /usr/src rm -rf astsrc-old mv astsrc astsrc-old wget http://x.allstarlink.org/svn-trunk.tar.gz -O- | tar xzv mv trunk astsrc cd astsrc make upgrade-acid 2. Restart asterisk astres.sh 73 de K0JSC On Sun, Aug 25, 2013 at 12:10 PM, C B wrote: Hi >? >I did what you suggested and it seems to complete without error. >? >However it did not resolve the problem. >? >I ran the same commands for Asterisk, still the same issue. >? >Reran the Zaptel compile / install again and still no luck. >? >I re-downloaded for the allstarlink.org the ISO for ACID in case what I downloaded originally was corrupt. >? >after reinstalling I looked at the /root/acid?install.log and I did not see anything that looked like an error. >? >Am I forgetting something or could my hardware not be combatable? >? >As part of this project I did install this successfully on a different computer. >? >Any help greatly appreciated. >? >Chris > > >From: Paul J. Agamata >To: C B >Sent: Saturday, August 24, 2013 4:57 PM >Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 > > > >Log into your 'root' account and navigate to the 'zaptel' directory. > > >When your in there type the following: > > >./configure >make >make install > > >Then reboot your computer and everything should be fine. >_______________________________ >Paul J. Agamata >WH6FM >Sysman at Xceptions.COM >Hilo, Hawaii > > > >From: C B >Reply-To: C B >Date: Saturday, August 24, 2013 1:54 PM >To: Paul Agamata >Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 > > > >Paul >? >Please excuse my lack knowledge here, I am very unsure of the compile / install procedure you are speaking of. >? >is there anything you can refer me to that will contain instructions on how to do this? >? >Is it something I did wrong? >? >Sorry for not having a lot of experience. >? >And thank you for your help. >? >Chris > > >From: Paul J. Agamata >To: C B ; "app_rpt-users at ohnosec.org" >Sent: Saturday, August 24, 2013 4:46 PM >Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 > > > >This is indicative of the zaptel drivers not in your kernel. ?Compile/Install then reboot and all should be well. ?The 'zaptel' directory is in the 'asterisk' source directory. > > >Be aware that if you update your kernel you will need to re-install the zaptel modules. > > >Regards, >Paul > > >_______________________________ >Paul J. Agamata >WH6FM >Sysman at Xceptions.COM >Hilo, Hawaii > > > >From: C B >Date: Saturday, August 24, 2013 1:23 PM >To: "app_rpt-users at ohnosec.org" >Subject: [App_rpt-users] Asterisk ended with exit status 1 > > > >Hi > >I am attempting to build a ACID node. > >After several attempts of reinstalling the ACID with the same results I am asking for some help. > >All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. > >mpg123: no process killed >Asterisk ended with exit status 1 >Asterisk died with code 1 >Automatically restarting Asterisk > >Computer is a HPdc5700 small form factor >1 GIG memory >500 GB SATA HDD > >than you in advance for any help > >Chris > > > > > >_______________________________________________ >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 harvard5362 at yahoo.com Sun Aug 25 21:52:03 2013 From: harvard5362 at yahoo.com (C B) Date: Sun, 25 Aug 2013 14:52:03 -0700 (PDT) Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: <00be01cea1c0$bf96d8d0$3ec48a70$@cs.com> References: <1377388441.95992.YahooMailNeo@web124506.mail.ne1.yahoo.com> <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> <00be01cea1c0$bf96d8d0$3ec48a70$@cs.com> Message-ID: <1377467523.19917.YahooMailNeo@web124502.mail.ne1.yahoo.com> Hi ? Updated BIOS to latest and no help. ? Chris ________________________________ From: Ken To: 'C B' ; 'Paul J. Agamata' ; app_rpt-users at ohnosec.org Sent: Sunday, August 25, 2013 11:27 AM Subject: RE: [App_rpt-users] Asterisk ended with exit status 1 Maybe your PC needs a BIOS update ? ? http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?prodSeriesId=3249646&objectID=c01039267 ? Not saying you have this *particular* issue, but if yours is an older one, it might be worth a try? ? 73 Ken ? ? From:C B [mailto:harvard5362 at yahoo.com] Sent: Sunday, August 25, 2013 2:11 PM To: Paul J. Agamata; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 ? Hi ? I did what you suggested and it seems to complete without error. ? However it did not resolve the problem. ? I ran the same commands for Asterisk, still the same issue. ? Reran the Zaptel compile / install again and still no luck. ? I re-downloaded for the allstarlink.org the ISO for ACID in case what I downloaded originally was corrupt. ? after reinstalling I looked at the /root/acid?install.log and I did not see anything that looked like an error. ? Am I forgetting something or could my hardware not be combatable? ? As part of this project I did install this successfully on a different computer. ? Any help greatly appreciated. ? Chris ? From:Paul J. Agamata To: C B Sent: Saturday, August 24, 2013 4:57 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 ? Log into your 'root' account and navigate to the 'zaptel' directory. ? When your in there type the following: ? ./configure make make install ? Then reboot your computer and everything should be fine. _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii ? From: C B Reply-To: C B Date: Saturday, August 24, 2013 1:54 PM To: Paul Agamata Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 ? Paul ? Please excuse my lack knowledge here, I am very unsure of the compile / install procedure you are speaking of. ? is there anything you can refer me to that will contain instructions on how to do this? ? Is it something I did wrong? ? Sorry for not having a lot of experience. ? And thank you for your help. ? Chris ? From:Paul J. Agamata To: C B ; "app_rpt-users at ohnosec.org" Sent: Saturday, August 24, 2013 4:46 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 ? This is indicative of the zaptel drivers not in your kernel. ?Compile/Install then reboot and all should be well. ?The 'zaptel' directory is in the 'asterisk' source directory. ? Be aware that if you update your kernel you will need to re-install the zaptel modules. ? Regards, Paul ? _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii ? From: C B Date: Saturday, August 24, 2013 1:23 PM To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] Asterisk ended with exit status 1 ? Hi ? I am attempting to build a ACID node. ? After several attempts of reinstalling the ACID with the same results I am asking for some help. ? All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. ? mpg123: no process killed Asterisk ended with exit status 1 Asterisk died with code 1 Automatically restarting Asterisk ? Computer is a HPdc5700 small form factor 1 GIG memory 500 GB SATA HDD ? than you in advance for any help ? Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: From harvard5362 at yahoo.com Sun Aug 25 21:54:38 2013 From: harvard5362 at yahoo.com (C B) Date: Sun, 25 Aug 2013 14:54:38 -0700 (PDT) Subject: [App_rpt-users] Beagleboard LOX audio levels Message-ID: <1377467678.7491.YahooMailNeo@web124501.mail.ne1.yahoo.com> Hi ? Is there anyway to change the levels that the beagleboard / LOX put out and take in? ? Is there a conf file that can be edited? ? Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From harvard5362 at yahoo.com Sun Aug 25 22:07:53 2013 From: harvard5362 at yahoo.com (C B) Date: Sun, 25 Aug 2013 15:07:53 -0700 (PDT) Subject: [App_rpt-users] recomindations for motherboards for Limey Message-ID: <1377468473.19231.YahooMailNeo@web124501.mail.ne1.yahoo.com> Hi ? is there a standard or recommended motherboard for the Limey Linux? ? The ones listed on the Limey page seem to be End Of Life. ? Thank you ? Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From harvard5362 at yahoo.com Sun Aug 25 22:53:52 2013 From: harvard5362 at yahoo.com (C B) Date: Sun, 25 Aug 2013 15:53:52 -0700 (PDT) Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: References: <1377388441.95992.YahooMailNeo@web124506.mail.ne1.yahoo.com> <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> <1377466805.70034.YahooMailNeo@web124504.mail.ne1.yahoo.com> Message-ID: <1377471232.24644.YahooMailNeo@web124504.mail.ne1.yahoo.com> Hi ? I tried it with the settings to be a hub?and it still does it. ? I also tried a HP DC 5800 with he same results. ? Last week when I built my HUB I had a HP XW8200 and it worked fine. ? Chris ________________________________ From: Pierre Martel To: C B Sent: Sunday, August 25, 2013 3:30 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 try using input only no dsp and restart asterisk From: C B Sent: Sunday, August 25, 2013 5:40 PM To: Pierre Martel ; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Hi ? I believe I only enabled the COR. ? it would seem that I should find a older computer perhaps. ? Chris ________________________________ From: Pierre Martel To: C B Sent: Sunday, August 25, 2013 1:37 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 I had the same problem and was suspecting dsp. I did un update to latest svn. and was stillg etting same thing. Are you using any dsp on your node? ctcss decoding, cor, ect? From: C B Sent: Sunday, August 25, 2013 2:10 PM To: Paul J. Agamata ; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Hi ? I did what you suggested and it seems to complete without error. ? However it did not resolve the problem. ? I ran the same commands for Asterisk, still the same issue. ? Reran the Zaptel compile / install again and still no luck. ? I re-downloaded for the allstarlink.org the ISO for ACID in case what I downloaded originally was corrupt. ? after reinstalling I looked at the /root/acid?install.log and I did not see anything that looked like an error. ? Am I forgetting something or could my hardware not be combatable? ? As part of this project I did install this successfully on a different computer. ? Any help greatly appreciated. ? Chris ________________________________ From: Paul J. Agamata To: C B Sent: Saturday, August 24, 2013 4:57 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Log into your 'root' account and navigate to the 'zaptel' directory. When your in there type the following: ./configure make make install Then reboot your computer and everything should be fine. _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Reply-To: C B Date: Saturday, August 24, 2013 1:54 PM To: Paul Agamata Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Paul ? Please excuse my lack knowledge here, I am very unsure of the compile / install procedure you are speaking of. ? is there anything you can refer me to that will contain instructions on how to do this? ? Is it something I did wrong? ? Sorry for not having a lot of experience. ? And thank you for your help. ? Chris ________________________________ From: Paul J. Agamata To: C B ; "app_rpt-users at ohnosec.org" Sent: Saturday, August 24, 2013 4:46 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 This is indicative of the zaptel drivers not in your kernel.? Compile/Install then reboot and all should be well.? The 'zaptel' directory is in the 'asterisk' source directory. Be aware that if you update your kernel you will need to re-install the zaptel modules. Regards, Paul _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Date: Saturday, August 24, 2013 1:23 PM To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] Asterisk ended with exit status 1 Hi I am attempting to build a ACID node. After several attempts of reinstalling the ACID with the same results I am asking for some help. All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. mpg123: no process killed Asterisk ended with exit status 1 Asterisk died with code 1 Automatically restarting Asterisk Computer is a HPdc5700 small form factor 1 GIG memory 500 GB SATA HDD than you in advance for any help Chris ________________________________ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image Type: image/jpeg Size: 33234 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: From techdude07 at yahoo.com Sun Aug 25 23:08:24 2013 From: techdude07 at yahoo.com (Techdude) Date: Sun, 25 Aug 2013 16:08:24 -0700 Subject: [App_rpt-users] Beagleboard LOX audio levels In-Reply-To: <1377467678.7491.YahooMailNeo@web124501.mail.ne1.yahoo.com> References: <1377467678.7491.YahooMailNeo@web124501.mail.ne1.yahoo.com> Message-ID: <7A85BE70-E9EB-4EE4-B5DE-FE6CD6805CB2@yahoo.com> The file is beagle_tune_1.conf Where 1 is name of interface... Or do this 1) Use putty to login then type asterisk -r 2) type beagle tune hit enter You will get which interface and the rx & tx value. 3) type beagle tune rx (0-999) hit enter it should show the new setting... 4) Important type beagle tune save and hit enter otherwise it won't take new setting. 5) type beagle tune tx (0-999) hit enter it should show the new setting.... 6) repeat no. 4 above 7) type beagle tune rxdisplay hit enter and you'll get 3-5khz dev meter that will respond to RX audio... for adjusting or monitoring... Very cool. That's my story and I'm stickin to it... You could type help hit enter and you'll see all this listed Good luck with the little doggie Scott Kj6nro Allstar 29262 Tuolumne Calif temp down because of the fire :-( Allstar 29263 simplex Sonora Calif On Aug 25, 2013, at 2:54 PM, C B wrote: > Hi > > Is there anyway to change the levels that the beagleboard / LOX put out and take in? > > Is there a conf file that can be edited? > > Chris > _______________________________________________ > 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 harvard5362 at yahoo.com Mon Aug 26 00:55:23 2013 From: harvard5362 at yahoo.com (C B) Date: Sun, 25 Aug 2013 17:55:23 -0700 (PDT) Subject: [App_rpt-users] Beagleboard LOX audio levels In-Reply-To: <7A85BE70-E9EB-4EE4-B5DE-FE6CD6805CB2@yahoo.com> References: <1377467678.7491.YahooMailNeo@web124501.mail.ne1.yahoo.com> <7A85BE70-E9EB-4EE4-B5DE-FE6CD6805CB2@yahoo.com> Message-ID: <1377478523.42641.YahooMailNeo@web124502.mail.ne1.yahoo.com> Thank you that was very helpful ? Chris ________________________________ From: Techdude To: C B Cc: "app_rpt-users at ohnosec.org" Sent: Sunday, August 25, 2013 4:08 PM Subject: Re: [App_rpt-users] Beagleboard LOX audio levels The file is beagle_tune_1.conf Where 1 is name of interface... Or do this 1) Use putty to login then type asterisk -r? 2) type beagle tune hit enter You will get which interface and the rx & tx value. 3) type beagle tune rx (0-999) hit enter it should show the new setting...? 4) Important type beagle tune save and hit enter otherwise it won't take new setting. 5) type beagle tune tx (0-999) hit enter it should show the new setting.... 6) repeat no. 4 above 7) type beagle tune rxdisplay hit enter and you'll get 3-5khz dev meter that will respond to RX audio... for adjusting or monitoring... Very cool. That's my story and I'm stickin to it... You could type help hit enter and you'll see all this listed Good luck with the little doggie Scott Kj6nro Allstar 29262 Tuolumne Calif temp down because of the fire :-( Allstar 29263 simplex Sonora Calif On Aug 25, 2013, at 2:54 PM, C B wrote: Hi > >Is there anyway to change the levels that the beagleboard / LOX put out and take in? > >Is there a conf file that can be edited? > >Chris _______________________________________________ >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 vk3jed at vkradio.com Mon Aug 26 03:34:59 2013 From: vk3jed at vkradio.com (Tony Langdon) Date: Mon, 26 Aug 2013 13:34:59 +1000 Subject: [App_rpt-users] PC Engines Alix 3d3 In-Reply-To: <521A0135.9040402@va3uv.com> References: <521A0135.9040402@va3uv.com> Message-ID: <521ACCE3.8090701@vkradio.com> On 25/08/13 11:05 PM, Ramesh Dhami (VA3UV) wrote: > Hi All; > > Wonder if anyone has some long-term success (~ 1 year +) using the PC > Engines Alix 3d3 board with app_rpt? > > Interested in knowing whether you are using it in a full duplex > application (chan_usbradio) with DSP, etc., or in a half-duplex / > simplex application (chan_simpleusb)? > > Centos (ACID), Limey or other? > I'd be interested in answers to this as well, as I have one of these boards too. -- 73 de Tony VK3JED/VK3IRL http://vkradio.com From ke2n at cs.com Mon Aug 26 11:42:59 2013 From: ke2n at cs.com (Ken) Date: Mon, 26 Aug 2013 07:42:59 -0400 Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: <1377467523.19917.YahooMailNeo@web124502.mail.ne1.yahoo.com> References: <1377388441.95992.YahooMailNeo@web124506.mail.ne1.yahoo.com> <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> <00be01cea1c0$bf96d8d0$3ec48a70$@cs.com> <1377467523.19917.YahooMailNeo@web124502.mail.ne1.yahoo.com> Message-ID: <002d01cea251$6a1d5140$3e57f3c0$@cs.com> Can you configure it to use the ?pseudo? channel? In your rpt.conf file change the rxchannel statement from Radio/something to: rxchannel = Zap/pseudo Do this for all nodes if you have more than one. If this works, then the problem may still be some hardware/firmware issue having to do with the USB ports. If it continues to fail, then it probably is some strange software issue. I wonder if something interesting shows up in /var/log/asterisk/messages GL Ken From: C B [mailto:harvard5362 at yahoo.com] Sent: Sunday, August 25, 2013 5:52 PM To: Ken; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Hi Updated BIOS to latest and no help. Chris From: Ken To: 'C B' ; 'Paul J. Agamata' ; app_rpt-users at ohnosec.org Sent: Sunday, August 25, 2013 11:27 AM Subject: RE: [App_rpt-users] Asterisk ended with exit status 1 Maybe your PC needs a BIOS update ? http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?prodSeriesId=3249646 &objectID=c01039267 Not saying you have this *particular* issue, but if yours is an older one, it might be worth a try? 73 Ken From: C B [mailto:harvard5362 at yahoo.com] Sent: Sunday, August 25, 2013 2:11 PM To: Paul J. Agamata; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Hi I did what you suggested and it seems to complete without error. However it did not resolve the problem. I ran the same commands for Asterisk, still the same issue. Reran the Zaptel compile / install again and still no luck. I re-downloaded for the allstarlink.org the ISO for ACID in case what I downloaded originally was corrupt. after reinstalling I looked at the /root/acid?install.log and I did not see anything that looked like an error. Am I forgetting something or could my hardware not be combatable? As part of this project I did install this successfully on a different computer. Any help greatly appreciated. Chris From: Paul J. Agamata To: C B Sent: Saturday, August 24, 2013 4:57 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Log into your 'root' account and navigate to the 'zaptel' directory. When your in there type the following: ./configure make make install Then reboot your computer and everything should be fine. _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Reply-To: C B Date: Saturday, August 24, 2013 1:54 PM To: Paul Agamata Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Paul Please excuse my lack knowledge here, I am very unsure of the compile / install procedure you are speaking of. is there anything you can refer me to that will contain instructions on how to do this? Is it something I did wrong? Sorry for not having a lot of experience. And thank you for your help. Chris From: Paul J. Agamata To: C B ; "app_rpt-users at ohnosec.org" Sent: Saturday, August 24, 2013 4:46 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 This is indicative of the zaptel drivers not in your kernel. Compile/Install then reboot and all should be well. The 'zaptel' directory is in the 'asterisk' source directory. Be aware that if you update your kernel you will need to re-install the zaptel modules. Regards, Paul _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii From: C B Date: Saturday, August 24, 2013 1:23 PM To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] Asterisk ended with exit status 1 Hi I am attempting to build a ACID node. After several attempts of reinstalling the ACID with the same results I am asking for some help. All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. mpg123: no process killed Asterisk ended with exit status 1 Asterisk died with code 1 Automatically restarting Asterisk Computer is a HPdc5700 small form factor 1 GIG memory 500 GB SATA HDD than you in advance for any help Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: From n5uxt at hotmail.com Mon Aug 26 14:01:47 2013 From: n5uxt at hotmail.com (Angelo Glorioso) Date: Mon, 26 Aug 2013 09:01:47 -0500 Subject: [App_rpt-users] Manual Configurations References: <1377467678.7491.YahooMailNeo@web124501.mail.ne1.yahoo.com><7A85BE70-E9EB-4EE4-B5DE-FE6CD6805CB2@yahoo.com> <1377478523.42641.YahooMailNeo@web124502.mail.ne1.yahoo.com> Message-ID: Can someone tell me the command to prevent the system from updating the config files from online??? Thanks, Angelo -------------- next part -------------- An HTML attachment was scrubbed... URL: From harvard5362 at yahoo.com Mon Aug 26 16:14:59 2013 From: harvard5362 at yahoo.com (C B) Date: Mon, 26 Aug 2013 09:14:59 -0700 (PDT) Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: <002d01cea251$6a1d5140$3e57f3c0$@cs.com> References: <1377388441.95992.YahooMailNeo@web124506.mail.ne1.yahoo.com> <1377454259.68054.YahooMailNeo@web124502.mail.ne1.yahoo.com> <00be01cea1c0$bf96d8d0$3ec48a70$@cs.com> <1377467523.19917.YahooMailNeo@web124502.mail.ne1.yahoo.com> <002d01cea251$6a1d5140$3e57f3c0$@cs.com> Message-ID: <1377533699.90866.YahooMailNeo@web124502.mail.ne1.yahoo.com> Hi ? I think the when it told the online config that I was a node only it changed that to the requested ? rxchannel = Zap/pseudo ? ?there repeating error messages in the "messages file" ? ? ? [Aug 25 10:43:26] ERROR[2458] asterisk.c: Asterisk has detected a problem with your Zaptel configuration and will shutdown for your protection.? You have options: ??????? 1. You only have to compile Zaptel support into Asterisk if you need it.? One option is to recompile without Zaptel support. ??????? 2. You only have to load Zaptel drivers if you want to take advantage of Zaptel services.? One option is to unload zaptel modules if you don't need them. ??????? 3. If you need Zaptel services, you must correctly configure Zaptel. [Aug 25 10:43:31] ERROR[2568] asterisk.c: Asterisk has detected a problem with your Zaptel configuration and will shutdown for your protection.? You have options: ??????? 1. You only have to compile Zaptel support into Asterisk if you need it.? One option is to recompile without Zaptel support. ??????? 2. You only have to load Zaptel drivers if you want to take advantage of Zaptel services.? One option is to unload zaptel modules if you don't need them. ??????? 3. If you need Zaptel services, you must correctly configure Zaptel. [Aug 25 10:43:35] ERROR[2574] asterisk.c: Asterisk has detected a problem with your Zaptel configuration and will shutdown for your protection.? You have options: ? After recompiling again the same problem exists ? [Aug 25 10:43:26] ERROR[2458] asterisk.c: Asterisk has detected a problem with your Zaptel configuration and will shutdown for your protection.? You have options: ??????? 1. You only have to compile Zaptel support into Asterisk if you need it.? One option is to recompile without Zaptel support. ??????? 2. You only have to load Zaptel drivers if you want to take advantage of Zaptel services.? One option is to unload zaptel modules if you don't need them. ??????? 3. If you need Zaptel services, you must correctly configure Zaptel. [Aug 25 10:43:31] ERROR[2568] asterisk.c: Asterisk has detected a problem with your Zaptel configuration and will shutdown for your protection.? You have options: ??????? 1. You only have to compile Zaptel support into Asterisk if you need it.? One option is to recompile without Zaptel support. ??????? 2. You only have to load Zaptel drivers if you want to take advantage of Zaptel services.? One option is to unload zaptel modules if you don't need them. ??????? 3. If you need Zaptel services, you must correctly configure Zaptel. [Aug 25 10:43:35] ERROR[2574] asterisk.c: Asterisk has detected a problem with your Zaptel configuration and will shutdown for your protection.? You have options: I have re-downloaded the ACID ISO twice and re-installed several times. ? Any help appreciated. ? Chris ? ? ? From: Ken To: 'C B' ; app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 4:42 AM Subject: RE: [App_rpt-users] Asterisk ended with exit status 1 Can you configure it to use the ?pseudo? channel? ? In your rpt.conf file change the rxchannel statement from Radio/something to: ? rxchannel = Zap/pseudo ? Do this for all nodes if you have more than one. ? If this works, then the problem may still be some hardware/firmware issue having to do with the USB ports. If it continues to fail, then it probably is some strange software issue. ? I wonder if something interesting shows up in /var/log/asterisk/messages ? GL ? Ken ? ? From:C B [mailto:harvard5362 at yahoo.com] Sent: Sunday, August 25, 2013 5:52 PM To: Ken; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 ? Hi ? Updated BIOS to latest and no help. ? Chris ? From:Ken To: 'C B' ; 'Paul J. Agamata' ; app_rpt-users at ohnosec.org Sent: Sunday, August 25, 2013 11:27 AM Subject: RE: [App_rpt-users] Asterisk ended with exit status 1 ? Maybe your PC needs a BIOS update ? ? http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?prodSeriesId=3249646&objectID=c01039267 ? Not saying you have this *particular* issue, but if yours is an older one, it might be worth a try? ? 73 Ken ? ? From:C B [mailto:harvard5362 at yahoo.com] Sent: Sunday, August 25, 2013 2:11 PM To: Paul J. Agamata; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 ? Hi ? I did what you suggested and it seems to complete without error. ? However it did not resolve the problem. ? I ran the same commands for Asterisk, still the same issue. ? Reran the Zaptel compile / install again and still no luck. ? I re-downloaded for the allstarlink.org the ISO for ACID in case what I downloaded originally was corrupt. ? after reinstalling I looked at the /root/acid?install.log and I did not see anything that looked like an error. ? Am I forgetting something or could my hardware not be combatable? ? As part of this project I did install this successfully on a different computer. ? Any help greatly appreciated. ? Chris ? From:Paul J. Agamata To: C B Sent: Saturday, August 24, 2013 4:57 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 ? Log into your 'root' account and navigate to the 'zaptel' directory. ? When your in there type the following: ? ./configure make make install ? Then reboot your computer and everything should be fine. _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii ? From: C B Reply-To: C B Date: Saturday, August 24, 2013 1:54 PM To: Paul Agamata Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 ? Paul ? Please excuse my lack knowledge here, I am very unsure of the compile / install procedure you are speaking of. ? is there anything you can refer me to that will contain instructions on how to do this? ? Is it something I did wrong? ? Sorry for not having a lot of experience. ? And thank you for your help. ? Chris ? From:Paul J. Agamata To: C B ; "app_rpt-users at ohnosec.org" Sent: Saturday, August 24, 2013 4:46 PM Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 ? This is indicative of the zaptel drivers not in your kernel. ?Compile/Install then reboot and all should be well. ?The 'zaptel' directory is in the 'asterisk' source directory. ? Be aware that if you update your kernel you will need to re-install the zaptel modules. ? Regards, Paul ? _______________________________ Paul J. Agamata WH6FM Sysman at Xceptions.COM Hilo, Hawaii ? From: C B Date: Saturday, August 24, 2013 1:23 PM To: "app_rpt-users at ohnosec.org" Subject: [App_rpt-users] Asterisk ended with exit status 1 ? Hi ? I am attempting to build a ACID node. ? After several attempts of reinstalling the ACID with the same results I am asking for some help. ? All seems to complete normally, I download the configuration, reboot and the following error message keeps repeating. ? mpg123: no process killed Asterisk ended with exit status 1 Asterisk died with code 1 Automatically restarting Asterisk ? Computer is a HPdc5700 small form factor 1 GIG memory 500 GB SATA HDD ? than you in advance for any help ? Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 33234 bytes Desc: not available URL: From tim.sawyer at me.com Mon Aug 26 16:21:09 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Mon, 26 Aug 2013 09:21:09 -0700 Subject: [App_rpt-users] Manual Configurations In-Reply-To: References: <1377467678.7491.YahooMailNeo@web124501.mail.ne1.yahoo.com> <7A85BE70-E9EB-4EE4-B5DE-FE6CD6805CB2@yahoo.com> <1377478523.42641.YahooMailNeo@web124502.mail.ne1.yahoo.com> Message-ID: <9853A250-5653-442A-83D1-8ED8ACB21D2B@me.com> I don't use the online configuration, but don't you have to click a download button or something to get it to update. I mean, it's not automatic, is it? -- Tim :wq On Aug 26, 2013, at 7:01 AM, Angelo Glorioso wrote: > > Can someone tell me the command to prevent the system from updating the config files from online??? > > > Thanks, > Angelo > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Mon Aug 26 16:32:05 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Mon, 26 Aug 2013 09:32:05 -0700 Subject: [App_rpt-users] Manual Configurations In-Reply-To: References: <1377467678.7491.YahooMailNeo@web124501.mail.ne1.yahoo.com> <7A85BE70-E9EB-4EE4-B5DE-FE6CD6805CB2@yahoo.com> <1377478523.42641.YahooMailNeo@web124502.mail.ne1.yahoo.com> <9853A250-5653-442A-83D1-8ED8ACB21D2B@me.com> Message-ID: <91D359EA-2B71-4CF9-9780-D4A3B8A65D52@me.com> I'm pretty sure that's not the case. I think you have to invoke the download from the Web site or your server. -- Tim :wq On Aug 26, 2013, at 9:28 AM, Angelo Glorioso wrote: > Tim, > > I think once you use the on line configuration,the node/nodes updates everyday from the server. I am trying to stop this. > > > ----- Original Message ----- > From: Tim Sawyer > To: Angelo Glorioso > Cc: app_rpt-users at ohnosec.org > Sent: Monday, August 26, 2013 11:21 AM > Subject: Re: [App_rpt-users] Manual Configurations > > I don't use the online configuration, but don't you have to click a download button or something to get it to update. I mean, it's not automatic, is it? > -- > Tim > :wq > > On Aug 26, 2013, at 7:01 AM, Angelo Glorioso wrote: > >> >> Can someone tell me the command to prevent the system from updating the config files from online??? >> >> >> Thanks, >> Angelo >> >> >> _______________________________________________ >> 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 jrorke at cogeco.ca Mon Aug 26 17:06:05 2013 From: jrorke at cogeco.ca (Jon Rorke) Date: Mon, 26 Aug 2013 13:06:05 -0400 Subject: [App_rpt-users] Manual Configurations In-Reply-To: <91D359EA-2B71-4CF9-9780-D4A3B8A65D52@me.com> References: <1377467678.7491.YahooMailNeo@web124501.mail.ne1.yahoo.com> <7A85BE70-E9EB-4EE4-B5DE-FE6CD6805CB2@yahoo.com> <1377478523.42641.YahooMailNeo@web124502.mail.ne1.yahoo.com> <9853A250-5653-442A-83D1-8ED8ACB21D2B@me.com> <91D359EA-2B71-4CF9-9780-D4A3B8A65D52@me.com> Message-ID: <521B8AFD.8010809@cogeco.ca> I'm not aware of any function that updates nodes every day. The only thing I can think of is the external nodes list file that is sent out every 5 or 10 minutes. I know IRLP sends out node updates over night but I dont think App Rpt does. If you config files are getting over written for some reason from the Allstar Server then log on to the Alstar site and disable node update in the node/server configs for your node. Again, this should not be happening unless you force it from the web site or use the download script on you node to load you default node settings from the website. Jon RQ On 8/26/2013 12:32 PM, Tim Sawyer wrote: > I'm pretty sure that's not the case. I think you have to invoke the > download from the Web site or your server. > -- > Tim > :wq > > On Aug 26, 2013, at 9:28 AM, Angelo Glorioso > wrote: > >> Tim, >> I think once you use the on line configuration,the node/nodes >> updates everyday from the server. I am trying to stop this. >> >> ----- Original Message ----- >> *From:*Tim Sawyer >> *To:*Angelo Glorioso >> *Cc:*app_rpt-users at ohnosec.org >> *Sent:*Monday, August 26, 2013 11:21 AM >> *Subject:*Re: [App_rpt-users] Manual Configurations >> >> I don't use the online configuration, but don't you have to click >> a download button or something to get it to update. I mean, it's >> not automatic, is it? >> -- >> Tim >> :wq >> >> On Aug 26, 2013, at 7:01 AM, Angelo Glorioso > > wrote: >> >>> Can someone tell me the command to prevent the system from >>> updating the config files from online??? >>> Thanks, >>> Angelo >>> _______________________________________________ >>> 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 david.osborn at manx.net Mon Aug 26 17:10:56 2013 From: david.osborn at manx.net (David Osborn) Date: Mon, 26 Aug 2013 18:10:56 +0100 Subject: [App_rpt-users] Asterisk ended with exit status 1 Message-ID: <002001cea27f$3ad97840$b08c68c0$@manx.net> I claim no expert knowledge here but I was mucking around trying to get Acid running on a thin client - just for the heck of it really. Anyway, I got this error message, along with the log messages about a problem with the Zaptel Configuration, and I found a reference to this issue here: http://www.easyasterisk.org/modules/smartfaq/faq.php?faqid=1 Booting the thin client with ACPI disabled cured the problem with Zaptel, but then the LAN port wouldn't come up L so I was still stymied! Anyway I don't know if this will help, but it might be worth a go. David Osborn GD4HOZ -------------- next part -------------- An HTML attachment was scrubbed... URL: From buddy at brannan.name Mon Aug 26 17:30:46 2013 From: buddy at brannan.name (Buddy Brannan) Date: Mon, 26 Aug 2013 13:30:46 -0400 Subject: [App_rpt-users] Manual Configurations In-Reply-To: <521B8AFD.8010809@cogeco.ca> References: <1377467678.7491.YahooMailNeo@web124501.mail.ne1.yahoo.com> <7A85BE70-E9EB-4EE4-B5DE-FE6CD6805CB2@yahoo.com> <1377478523.42641.YahooMailNeo@web124502.mail.ne1.yahoo.com> <9853A250-5653-442A-83D1-8ED8ACB21D2B@me.com> <91D359EA-2B71-4CF9-9780-D4A3B8A65D52@me.com> <521B8AFD.8010809@cogeco.ca> Message-ID: <71558978-2761-44EA-A1B4-265B9364BB44@brannan.name> In fact, John and Tim are correct. I have an auto generated config, in case something blows up, which I can request to be sent if ever I want/need it, but now my rpt.conf is very custom as compared to the auto generated one. So customize away, keep your auto generated stuff as a backup just in case. -- Buddy Brannan, KB5ELV - Erie, PA Phone: (814) 860-3194 or 888-75-BUDDY On Aug 26, 2013, at 1:06 PM, Jon Rorke wrote: > I'm not aware of any function that updates nodes every day. > The only thing I can think of is the external nodes list file that is sent out every 5 or 10 minutes. > > I know IRLP sends out node updates over night but I dont think App Rpt does. > > If you config files are getting over written for some reason from the Allstar Server then log on to the Alstar site and disable node update in the node/server configs for your node. > > Again, this should not be happening unless you force it from the web site or use the download script on you node to load you default node settings from the website. > > Jon RQ > > On 8/26/2013 12:32 PM, Tim Sawyer wrote: >> I'm pretty sure that's not the case. I think you have to invoke the download from the Web site or your server. >> -- >> Tim >> :wq >> >> On Aug 26, 2013, at 9:28 AM, Angelo Glorioso wrote: >> >>> Tim, >>> >>> I think once you use the on line configuration,the node/nodes updates everyday from the server. I am trying to stop this. >>> >>> >>> ----- Original Message ----- >>> From: Tim Sawyer >>> To: Angelo Glorioso >>> Cc: app_rpt-users at ohnosec.org >>> Sent: Monday, August 26, 2013 11:21 AM >>> Subject: Re: [App_rpt-users] Manual Configurations >>> >>> I don't use the online configuration, but don't you have to click a download button or something to get it to update. I mean, it's not automatic, is it? >>> -- >>> Tim >>> :wq >>> >>> On Aug 26, 2013, at 7:01 AM, Angelo Glorioso wrote: >>> >>>> >>>> Can someone tell me the command to prevent the system from updating the config files from online??? >>>> >>>> >>>> Thanks, >>>> Angelo >>>> >>>> >>>> _______________________________________________ >>>> App_rpt-users mailing list >>>> App_rpt-users at ohnosec.org >>>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> >> >> >> >> _______________________________________________ >> App_rpt-users mailing list >> >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From harvard5362 at yahoo.com Mon Aug 26 18:54:48 2013 From: harvard5362 at yahoo.com (C B) Date: Mon, 26 Aug 2013 11:54:48 -0700 (PDT) Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: <002001cea27f$3ad97840$b08c68c0$@manx.net> References: <002001cea27f$3ad97840$b08c68c0$@manx.net> Message-ID: <1377543288.19476.YahooMailNeo@web124505.mail.ne1.yahoo.com> Hi ? I tried the following and it did stop the error massages. ? - Disable ACPI and reboot your system. You need to edit /boot/grub/grub.conf and modify kernel parameters as follows: kernel /vmlinuz-2.6.18-53.1.4.el5 ro root=LABEL=/ vga=0x314 acpi=off ? However I am not sure what ACPI does for the allstar link. ? will this have any negative impacts? ? or does this tell anyone what the problem may be? ? Chris ________________________________ From: David Osborn To: app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 10:10 AM Subject: [App_rpt-users] Asterisk ended with exit status 1 ? I claim no expert knowledge here but I was mucking around trying to get Acid running on a thin client ? just for the heck of it really. Anyway, I got this error message, along with the log messages about a problem with the Zaptel Configuration, and I found a reference to this issue here: http://www.easyasterisk.org/modules/smartfaq/faq.php?faqid=1 ? Booting the thin client with ACPI disabled cured the problem with Zaptel, but then the LAN port wouldn?t come up L so I was still stymied! ? Anyway I don?t know if this will help, but it might be worth a go. ? David Osborn ? GD4HOZ ? _______________________________________________ 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 david.osborn at manx.net Mon Aug 26 19:18:11 2013 From: david.osborn at manx.net (David Osborn) Date: Mon, 26 Aug 2013 20:18:11 +0100 Subject: [App_rpt-users] Asterisk ended with exit status 1 Message-ID: <201308261918.EKP19992@manxnetsf06.manx.net> Best thing is to try it :-) As I understand it, ACPI looks after power management. You may be able to run without it. I'm glad it had an effect as it helps to localise the problem. Does your LAN adapter come up? If so you could be well on the way. David -----Original Message----- From: C B Sent: 26/08/2013 19:54 To: David Osborn; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Asterisk ended with exit status 1 Hi I tried the following and it did stop the error massages. - Disable ACPI and reboot your system. You need to edit /boot/grub/grub.conf and modify kernel parameters as follows: kernel /vmlinuz-2.6.18-53.1.4.el5 ro root=LABEL=/ vga=0x314 acpi=off However I am not sure what ACPI does for the allstar link. will this have any negative impacts? or does this tell anyone what the problem may be? Chris From: David Osborn To: app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 10:10 AM Subject: [App_rpt-users] Asterisk ended with exit status 1 I claim no expert knowledge here but I was mucking around trying to get Acid running on a thin client ? just for the heck of it really. Anyway, I got this error message, along with the log messages about a problem with the Zaptel Configuration, and I found a reference to this issue here: http://www.easyasterisk.org/modules/smartfaq/faq.php?faqid=1 Booting the thin client with ACPI disabled cured the problem with Zaptel, but then the LAN port wouldn?t come up L so I was still stymied! Anyway I don?t know if this will help, but it might be worth a go. David Osborn GD4HOZ _______________________________________________ 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 Mon Aug 26 20:48:21 2013 From: petem001 at hotmail.com (pete M) Date: Mon, 26 Aug 2013 16:48:21 -0400 Subject: [App_rpt-users] =?iso-8859-1?q?Re=A0=3A_Re=3A__Asterisk_ended_wit?= =?iso-8859-1?q?h_exit_status_1?= Message-ID: acpi is power management... Without acpi you have full power all the time. No powee saving stuff. I think it is used to monitor fan speed bur not sure. --- Message initial --- De : "C B" Envoy? : 26 ao?t 2013 15:04 A : "David Osborn" , app_rpt-users at ohnosec.org Objet : Re: [App_rpt-users] Asterisk ended with exit status 1 Hi I tried the following and it did stop the error massages. - Disable ACPI and reboot your system. You need to edit /boot/grub/grub.conf and modify kernel parameters as follows: kernel /vmlinuz-2.6.18-53.1.4.el5 ro root=LABEL=/ vga=0x314 acpi=off However I am not sure what ACPI does for the allstar link. will this have any negative impacts? or does this tell anyone what the problem may be? Chris ________________________________ From: David Osborn To: app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 10:10 AM Subject: [App_rpt-users] Asterisk ended with exit status 1 I claim no expert knowledge here but I was mucking around trying to get Acid running on a thin client ? just for the heck of it really. Anyway, I got this error message, along with the log messages about a problem with the Zaptel Configuration, and I found a reference to this issue here: http://www.easyasterisk.org/modules/smartfaq/faq.php?faqid=1 Booting the thin client with ACPI disabled cured the problem with Zaptel, but then the LAN port wouldn?t come up L so I was still stymied! Anyway I don?t know if this will help, but it might be worth a go. David Osborn GD4HOZ _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From harvard5362 at yahoo.com Mon Aug 26 21:01:19 2013 From: harvard5362 at yahoo.com (C B) Date: Mon, 26 Aug 2013 14:01:19 -0700 (PDT) Subject: [App_rpt-users] =?utf-8?q?Re=C2=A0=3A_Re=3A__Asterisk_ended_with_?= =?utf-8?q?exit_status_1?= In-Reply-To: References: Message-ID: <1377550879.91566.YahooMailNeo@web124502.mail.ne1.yahoo.com> Thank you ? Sounds like I should be?ok running that way as I do not think I need any power control. ? Could a BIOS setting in power management ?somehow conflict with ACPI, perhaps a dumb question however I thought I would ask it. ? Chris ________________________________ From: pete M To: C B ; David Osborn ; app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 1:48 PM Subject: Re?: Re: [App_rpt-users] Asterisk ended with exit status 1 acpi is power management... Without acpi you have full power all the time. No powee saving stuff. I think it is used to monitor fan speed bur not sure. --- Message initial --- De?: "C B" Envoy? : 26 ao?t 2013 15:04 A?: "David Osborn" , app_rpt-users at ohnosec.org Objet?: Re: [App_rpt-users] Asterisk ended with exit status 1 Hi ? I tried the following and it did stop the error massages. ? - Disable ACPI and reboot your system. You need to edit /boot/grub/grub.conf and modify kernel parameters as follows: kernel /vmlinuz-2.6.18-53.1.4.el5 ro root=LABEL=/ vga=0x314 acpi=off ? However I am not sure what ACPI does for the allstar link. ? will this have any negative impacts? ? or does this tell anyone what the problem may be? ? Chris ________________________________ From: David Osborn To: app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 10:10 AM Subject: [App_rpt-users] Asterisk ended with exit status 1 I claim no expert knowledge here but I was mucking around trying to get Acid running on a thin client ? just for the heck of it really. Anyway, I got this error message, along with the log messages about a problem with the Zaptel Configuration, and I found a reference to this issue here: http://www.easyasterisk.org/modules/smartfaq/faq.php?faqid=1 Booting the thin client with ACPI disabled cured the problem with Zaptel, but then the LAN port wouldn?t come up L so I was still stymied! Anyway I don?t know if this will help, but it might be worth a go. David Osborn GD4HOZ _______________________________________________ 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 harvard5362 at yahoo.com Mon Aug 26 21:01:33 2013 From: harvard5362 at yahoo.com (C B) Date: Mon, 26 Aug 2013 14:01:33 -0700 (PDT) Subject: [App_rpt-users] Asterisk ended with exit status 1 In-Reply-To: <201308261918.EKP19992@manxnetsf06.manx.net> References: <201308261918.EKP19992@manxnetsf06.manx.net> Message-ID: <1377550893.65394.YahooMailNeo@web124501.mail.ne1.yahoo.com> Thank you ? Yes the?LAN works, and it shows up on the Allstar?list as active ? Cool as I am leaving in a few hours to Texas, I will try it over the weekend when I return. ? Chris ________________________________ From: David Osborn To: C B ; "app_rpt-users at ohnosec.org" Sent: Monday, August 26, 2013 12:18 PM Subject: RE: [App_rpt-users] Asterisk ended with exit status 1 Best thing is to try it :-) As I understand it, ACPI looks after power management. You may be able to run without it. I'm glad it had an effect as it helps to localise the problem. Does your LAN adapter come up? If so you could be well on the way. David ________________________________ From: C B Sent: 26/08/2013 19:54 To: David Osborn; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users]? Asterisk ended with exit status 1 Hi ? I tried the following and it did stop the error massages. ? - Disable ACPI and reboot your system. You need to edit /boot/grub/grub.conf and modify kernel parameters as follows: kernel /vmlinuz-2.6.18-53.1.4.el5 ro root=LABEL=/ vga=0x314 acpi=off ? However I am not sure what ACPI does for the allstar link. ? will this have any negative impacts? ? or does this tell anyone what the problem may be? ? Chris ________________________________ From: David Osborn To: app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 10:10 AM Subject: [App_rpt-users] Asterisk ended with exit status 1 I claim no expert knowledge here but I was mucking around trying to get Acid running on a thin client ? just for the heck of it really. Anyway, I got this error message, along with the log messages about a problem with the Zaptel Configuration, and I found a reference to this issue here: http://www.easyasterisk.org/modules/smartfaq/faq.php?faqid=1 ? Booting the thin client with ACPI disabled cured the problem with Zaptel, but then the LAN port wouldn?t come up L so I was still stymied! ? Anyway I don?t know if this will help, but it might be worth a go. ? David Osborn ? GD4HOZ ? _______________________________________________ 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 Mon Aug 26 21:05:35 2013 From: petem001 at hotmail.com (pete M) Date: Mon, 26 Aug 2013 17:05:35 -0400 Subject: [App_rpt-users] =?iso-8859-1?q?Re=A0=3A_Re=3A_Re=A0=3A_Re=3A__Ast?= =?iso-8859-1?q?erisk_ended_with_exit_status_1?= Message-ID: On some bios you csn shut acpi. Jusr check in the power settings. --- Message initial --- De : "C B" Envoy? : 26 ao?t 2013 17:01 A : "pete M" , "David Osborn" , app_rpt-users at ohnosec.org Objet : Re: Re : Re: [App_rpt-users] Asterisk ended with exit status 1 Thank you Sounds like I should be ok running that way as I do not think I need any power control. Could a BIOS setting in power management somehow conflict with ACPI, perhaps a dumb question however I thought I would ask it. Chris ________________________________ From: pete M To: C B ; David Osborn ; app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 1:48 PM Subject: Re : Re: [App_rpt-users] Asterisk ended with exit status 1 acpi is power management... Without acpi you have full power all the time. No powee saving stuff. I think it is used to monitor fan speed bur not sure. --- Message initial --- De : "C B" Envoy? : 26 ao?t 2013 15:04 A : "David Osborn" , app_rpt-users at ohnosec.org Objet : Re: [App_rpt-users] Asterisk ended with exit status 1 Hi I tried the following and it did stop the error massages. - Disable ACPI and reboot your system. You need to edit /boot/grub/grub.conf and modify kernel parameters as follows: kernel /vmlinuz-2.6.18-53.1.4.el5 ro root=LABEL=/ vga=0x314 acpi=off However I am not sure what ACPI does for the allstar link. will this have any negative impacts? or does this tell anyone what the problem may be? Chris ________________________________ From: David Osborn To: app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 10:10 AM Subject: [App_rpt-users] Asterisk ended with exit status 1 I claim no expert knowledge here but I was mucking around trying to get Acid running on a thin client ? just for the heck of it really. Anyway, I got this error message, along with the log messages about a problem with the Zaptel Configuration, and I found a reference to this issue here: http://www.easyasterisk.org/modules/smartfaq/faq.php?faqid=1 Booting the thin client with ACPI disabled cured the problem with Zaptel, but then the LAN port wouldn?t come up L so I was still stymied! Anyway I don?t know if this will help, but it might be worth a go. David Osborn GD4HOZ _______________________________________________ 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 petem001 at hotmail.com Mon Aug 26 21:06:46 2013 From: petem001 at hotmail.com (pete M) Date: Mon, 26 Aug 2013 17:06:46 -0400 Subject: [App_rpt-users] =?iso-8859-1?q?Re=A0=3A__Re=A0=3A_Re=3A_Re=A0=3A_?= =?iso-8859-1?q?Re=3A__Asterisk_ended_with_exit_status_1?= Message-ID: Damn cellular keyboard. Large finger small key.. --- Message initial --- De : "pete M" Envoy? : 26 ao?t 2013 17:05 A : "C B" , "David Osborn" , app_rpt-users at ohnosec.org Objet : [App_rpt-users] Re : Re: Re : Re: Asterisk ended with exit status 1 On some bios you csn shut acpi. Jusr check in the power settings. --- Message initial --- De : "C B" Envoy? : 26 ao?t 2013 17:01 A : "pete M" , "David Osborn" , app_rpt-users at ohnosec.org Objet : Re: Re : Re: [App_rpt-users] Asterisk ended with exit status 1 Thank you Sounds like I should be ok running that way as I do not think I need any power control. Could a BIOS setting in power management somehow conflict with ACPI, perhaps a dumb question however I thought I would ask it. Chris ________________________________ From: pete M To: C B ; David Osborn ; app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 1:48 PM Subject: Re : Re: [App_rpt-users] Asterisk ended with exit status 1 acpi is power management... Without acpi you have full power all the time. No powee saving stuff. I think it is used to monitor fan speed bur not sure. --- Message initial --- De : "C B" Envoy? : 26 ao?t 2013 15:04 A : "David Osborn" , app_rpt-users at ohnosec.org Objet : Re: [App_rpt-users] Asterisk ended with exit status 1 Hi I tried the following and it did stop the error massages. - Disable ACPI and reboot your system. You need to edit /boot/grub/grub.conf and modify kernel parameters as follows: kernel /vmlinuz-2.6.18-53.1.4.el5 ro root=LABEL=/ vga=0x314 acpi=off However I am not sure what ACPI does for the allstar link. will this have any negative impacts? or does this tell anyone what the problem may be? Chris ________________________________ From: David Osborn To: app_rpt-users at ohnosec.org Sent: Monday, August 26, 2013 10:10 AM Subject: [App_rpt-users] Asterisk ended with exit status 1 I claim no expert knowledge here but I was mucking around trying to get Acid running on a thin client ? just for the heck of it really. Anyway, I got this error message, along with the log messages about a problem with the Zaptel Configuration, and I found a reference to this issue here: http://www.easyasterisk.org/modules/smartfaq/faq.php?faqid=1 Booting the thin client with ACPI disabled cured the problem with Zaptel, but then the LAN port wouldn?t come up L so I was still stymied! Anyway I don?t know if this will help, but it might be worth a go. David Osborn GD4HOZ _______________________________________________ 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: -------------- next part -------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From jrh at g0fhm.co.uk Mon Aug 26 21:29:39 2013 From: jrh at g0fhm.co.uk (James Hill) Date: Mon, 26 Aug 2013 22:29:39 +0100 Subject: [App_rpt-users] FAO List Admins Message-ID: Hi Guys, Could somebody chop g0fhmuk at gmail from the list? I unsubscribed about 4 weeks ago, and I would appear to no longer be a member.... If I send mail to the list from that address, I get the 'awaiting moderator approval' message in return. But i'm still getting mail from the list to that address! I wouldn't normally complain, but the address is now on forward to this address - and I'm geting duplicate mail! Thanks, James 29681 From ka6sox at gmail.com Tue Aug 27 15:30:02 2013 From: ka6sox at gmail.com (Tom King) Date: Tue, 27 Aug 2013 08:30:02 -0700 Subject: [App_rpt-users] 2 sites, 5 radios Message-ID: Site A: 2 repeaters: 2M, 6M Easier to get to but internet shakey Site B: 3 Repeaters: 2M, 220, 440 Harder to get to but better Internet I can put a wifi link between them (2 mile shot across a saddle) Primary use is Standalone repeaters but Cross connecting and linking to buildings without good visibility to the sites very likely. They are only 7 and 9 miles away but take at least 2hrs to get to. (I've inherited these in the last 48hrs and want to unify control and linking) I just started with allstar about 3 weeks ago so I'm not fully up on what can be done So I guess the questions are: 1. What (relatively) Cost Effective way to do this? 2. if I have good power for the computers (run them off of a 12v battery) and reasonable computer hardware would Limey work? (I don't like spinning things on mountaintops if I can avoid them as they fail at the most inopportune times) 3. a bunch of URI's or use PCI radio cards? Thanks Tom KA6SOX -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Tue Aug 27 16:12:37 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Tue, 27 Aug 2013 09:12:37 -0700 Subject: [App_rpt-users] Autopatch Subscriptions with PayPal Message-ID: For some reason, a number of users that had Autopatch Subscriptions with PayPal were in some sort of a "hung" state where somehow PayPal force-suspended their subscriptions, without any way of un-suspending them. For those of you in this "condition", your subscriptions have been "cancelled" in the PayPal system (being the only option it would allow), and if you wish to have working Autopatch service, please re-sign up. As far as I understand all of you in this "condition" have not had working service, nor have you been billed in some time. If, for some reason, my assessment of any of this has been inaccurate, please let me know and I will do whatever I need to fix it. Thanks. Jim WB6NIL -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Tue Aug 27 16:24:04 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Tue, 27 Aug 2013 09:24:04 -0700 Subject: [App_rpt-users] 2 sites, 5 radios In-Reply-To: References: Message-ID: <36DFEF73-26C0-47C2-A1C6-9D7BCBF78649@me.com> The Ubiquiti WiFi stuff is inexpensive and good. A couple of NanoStations could do your 2 mile hop, for the 9 mile go with AirGrids or NanoBridges. I hear the HP Thin Clients on eBay for around $20 have no fans, no hard drive, and they have a sold state memory that takes a dd load of Limey. Friends don't let friends do USB on a hilltop. If you can find PCI radio cards use them. Or go with RTCMs. -- Tim :wq On Aug 27, 2013, at 8:30 AM, Tom King wrote: > Site A: > > 2 repeaters: 2M, 6M > Easier to get to but internet shakey > > Site B: > > 3 Repeaters: 2M, 220, 440 > Harder to get to but better Internet > > I can put a wifi link between them (2 mile shot across a saddle) > > Primary use is Standalone repeaters but Cross connecting and linking to buildings without good visibility to the sites very likely. > > They are only 7 and 9 miles away but take at least 2hrs to get to. > > (I've inherited these in the last 48hrs and want to unify control and linking) > > I just started with allstar about 3 weeks ago so I'm not fully up on what can be done > > So I guess the questions are: > > 1. What (relatively) Cost Effective way to do this? > > 2. if I have good power for the computers (run them off of a 12v battery) and reasonable computer hardware would Limey work? > (I don't like spinning things on mountaintops if I can avoid them as they fail at the most inopportune times) > > 3. a bunch of URI's or use PCI radio cards? > > > Thanks > > Tom > KA6SOX > > > > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From jonathan.weirmeir at gmail.com Tue Aug 27 23:52:22 2013 From: jonathan.weirmeir at gmail.com (Jonathan Weirmeir) Date: Tue, 27 Aug 2013 19:52:22 -0400 Subject: [App_rpt-users] System ideas for a first install Message-ID: A while back, I asked for tips with virtualization. However, since it's my first time, I'd like to use a dedicated box for app_rpt. I'm interested in a system solution that's fairly low profile, but most importantly, that's low in power consumption and heat generaton (which rules out the spare Pentium 4 space heater I have sitting around). I've read that some have repurposed thin clients for app_rpt, with different levels of success. Anyone have any suggestions for systems that have enough horsepower to run up to four nodes on a single box, and around say $100 or less? I'm using URIx's and USB sound fobs. Thanks, can't wait to get going with app_rpt. Jonathan -------------- next part -------------- An HTML attachment was scrubbed... URL: From Ramesh at va3uv.com Wed Aug 28 00:49:50 2013 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Tue, 27 Aug 2013 20:49:50 -0400 Subject: [App_rpt-users] allmon.ini - not resolving hostnames? Message-ID: <521D492E.20602@va3uv.com> Hi All; I have allmon running on a couple of my systems. On one of my reflectors, I show activity from a remote system (where the remote is also running allmon). Recently, I discovered that on my reflector, the activity from the remote is no longer being displayed. After a bit of digging, I found that if I specify an IP address for 'host=x.x.x.x' then it works fine. However, if I enter a hostname, allmon doesn't seem to resolve the hostname and I get an 'unable to connect' error message. If I ping or telnet the hostname from a shell command, it resolves to the correct address, confirming that DNS resolution is working fine. Any ideas? Thanks! Ramesh. From mhebert1975 at gmail.com Wed Aug 28 00:57:07 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 27 Aug 2013 19:57:07 -0500 Subject: [App_rpt-users] System ideas for a first install In-Reply-To: References: Message-ID: Check out ebay and/or tigerdirect http://www.tigerdirect.com/applications/category/category_slc.asp?CatId=2628&Lprice=50&Hprice=99.99&MobileOptOut=1 On Aug 27, 2013 6:59 PM, "Jonathan Weirmeir" wrote: > A while back, I asked for tips with virtualization. However, since it's my > first time, I'd like to use a dedicated box for app_rpt. > > I'm interested in a system solution that's fairly low profile, but most > importantly, that's low in power consumption and heat generaton (which > rules out the spare Pentium 4 space heater I have sitting around). > > I've read that some have repurposed thin clients for app_rpt, with > different levels of success. > > Anyone have any suggestions for systems that have enough horsepower to run > up to four nodes on a single box, and around say $100 or less? I'm using > URIx's and USB sound fobs. > > Thanks, can't wait to get going with app_rpt. > > Jonathan > > _______________________________________________ > 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 mhebert1975 at gmail.com Wed Aug 28 00:59:14 2013 From: mhebert1975 at gmail.com (Michael Hebert) Date: Tue, 27 Aug 2013 19:59:14 -0500 Subject: [App_rpt-users] 2 sites, 5 radios In-Reply-To: <36DFEF73-26C0-47C2-A1C6-9D7BCBF78649@me.com> References: <36DFEF73-26C0-47C2-A1C6-9D7BCBF78649@me.com> Message-ID: I would look at the rtcm. No moving parts can run off the radio power. On Aug 27, 2013 11:24 AM, "Tim Sawyer" wrote: > The Ubiquiti WiFi stuff is inexpensive and good. A couple of NanoStations > could do your 2 mile hop, for the 9 mile go with AirGrids or NanoBridges. > > I hear the HP Thin Clients on eBay for around $20 have no fans, no hard > drive, and they have a sold state memory that takes a dd load of Limey. > > Friends don't let friends do USB on a hilltop. If you can find PCI radio > cards use them. Or go with RTCMs. > -- > Tim > :wq > > On Aug 27, 2013, at 8:30 AM, Tom King wrote: > > > Site A: > > > > 2 repeaters: 2M, 6M > > Easier to get to but internet shakey > > > > Site B: > > > > 3 Repeaters: 2M, 220, 440 > > Harder to get to but better Internet > > > > I can put a wifi link between them (2 mile shot across a saddle) > > > > Primary use is Standalone repeaters but Cross connecting and linking to > buildings without good visibility to the sites very likely. > > > > They are only 7 and 9 miles away but take at least 2hrs to get to. > > > > (I've inherited these in the last 48hrs and want to unify control and > linking) > > > > I just started with allstar about 3 weeks ago so I'm not fully up on > what can be done > > > > So I guess the questions are: > > > > 1. What (relatively) Cost Effective way to do this? > > > > 2. if I have good power for the computers (run them off of a 12v > battery) and reasonable computer hardware would Limey work? > > (I don't like spinning things on mountaintops if I can avoid them > as they fail at the most inopportune times) > > > > 3. a bunch of URI's or use PCI radio cards? > > > > > > Thanks > > > > Tom > > KA6SOX > > > > > > > > > > > > _______________________________________________ > > 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 petem001 at hotmail.com Wed Aug 28 01:25:06 2013 From: petem001 at hotmail.com (Pierre Martel) Date: Tue, 27 Aug 2013 21:25:06 -0400 Subject: [App_rpt-users] System ideas for a first install In-Reply-To: References: Message-ID: Using a t5700 from HP I was able to do 2 thing, one was a homebrew dstar repeater with 2 Kenwood LMR radios, Then I did the same thing with Allstar on a MSR2000 vhf repeater, exact same harware, but the interface, one was a URI for the allstar box, the other was a dvrptr. I had to replace the 1gb flas drive (44 pin ide) inside the Thin client to a small 4 gb hard disk that look exactly like a compact flash memory card.. http://www.ebay.ca/itm/Hitachi-HMS360404D5CF00-4GB-3-6K-CF-Type-II-1-MicroDrive-Hard-Drive-/360713127001?pt=LH_DefaultDomain_0&hash=item53fc2d8459&_uhb=1 It was connected to a 44 pin IDE to CF adapter http://www.ebay.ca/itm/Notebook-Hot-Mini-PCI-CF-Compact-Flash-to-2-5-IDE-44-Pin-male-Adapter-Card-ESY1-/121166401267?pt=US_Drive_Cables_dapters&hash=item1c36148ef3&_uhb=1 with an ide 44 pin female female cable to the Thin Client. there are 5 and 6gb drive just like that too.. simple as pie. it had enough horse power to run dsp on ONE node. a second node would brake it. but would run 2 simple usb easy.. I have a small video showing the dstar stuff I did. http://www.youtube.com/watch?v=0Ly5xFGBFXQ From: Jonathan Weirmeir Sent: Tuesday, August 27, 2013 7:52 PM To: app_rpt-users at ohnosec.org Subject: [App_rpt-users] System ideas for a first install A while back, I asked for tips with virtualization. However, since it's my first time, I'd like to use a dedicated box for app_rpt. I'm interested in a system solution that's fairly low profile, but most importantly, that's low in power consumption and heat generaton (which rules out the spare Pentium 4 space heater I have sitting around). I've read that some have repurposed thin clients for app_rpt, with different levels of success. Anyone have any suggestions for systems that have enough horsepower to run up to four nodes on a single box, and around say $100 or less? I'm using URIx's and USB sound fobs. Thanks, can't wait to get going with app_rpt. Jonathan -------------------------------------------------------------------------------- _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From keith at goobie.org Wed Aug 28 01:41:47 2013 From: keith at goobie.org (Keith Goobie) Date: Tue, 27 Aug 2013 21:41:47 -0400 Subject: [App_rpt-users] allmon.ini - not resolving hostnames? In-Reply-To: <521D492E.20602@va3uv.com> Message-ID: Hi Ramesh Some more info is needed here! Allmon runs as code on the web server, which does not have to run on the asterisk server. Where is the web server with the allmon code in relation to the asterisk server. Are they using the same dns? This is important. I did convert one of my allmon entries from an IP address to a hostname and it had no problem. If you do an nslookup on the system with the allmon code, what does it resolve the hostname to? Keith On 8/27/13 8:49 PM, "Ramesh Dhami (VA3UV)" wrote: > Hi All; > > I have allmon running on a couple of my systems. On one of my > reflectors, I show activity from a remote system (where the remote is > also running allmon). > > Recently, I discovered that on my reflector, the activity from the > remote is no longer being displayed. > > After a bit of digging, I found that if I specify an IP address for > 'host=x.x.x.x' then it works fine. However, if I enter a hostname, > allmon doesn't seem to resolve the hostname and I get an 'unable to > connect' error message. > > If I ping or telnet the hostname from a shell command, it resolves to > the correct address, confirming that DNS resolution is working fine. > > Any ideas? > > Thanks! > > Ramesh. > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -- keith at goobie.org Keith Goobie Richmond Hill, ON, CANADA From Ramesh at va3uv.com Wed Aug 28 01:55:08 2013 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Tue, 27 Aug 2013 21:55:08 -0400 Subject: [App_rpt-users] allmon.ini - not resolving hostnames? In-Reply-To: References: Message-ID: <521D587C.3050000@va3uv.com> Hi Keith; See below... On 27/08/2013 9:41 PM, Keith Goobie wrote: > Hi Ramesh > > Some more info is needed here! > > Allmon runs as code on the web server, which does not have to run on the > asterisk server. <-- Yep, I just happen to be running it on both systems - (one my reflector, the webpage is accessible publicly via the web, on my system at home, the webpage is only accessible to me / internally). > > Where is the web server with the allmon code in relation to the asterisk > server. Are they using the same dns? This is important. <-- I have the allmon code (with the publicly accessible webserver) running on node 2248 - at the Hamilton Health Sciences Centre. DNS is as provided by the hospital with the Google public DNS server as the secondary DNS. On the system at home, the DNS is as provided by Ma Bell. > > I did convert one of my allmon entries from an IP address to a hostname and > it had no problem. > > If you do an nslookup on the system with the allmon code, what does it > resolve the hostname to? > <-- nslookup on both systems shows the correct IP address. Cheers! Ramesh. From keith at goobie.org Wed Aug 28 02:56:02 2013 From: keith at goobie.org (Keith Goobie) Date: Tue, 27 Aug 2013 22:56:02 -0400 Subject: [App_rpt-users] allmon.ini - not resolving hostnames? In-Reply-To: <521D587C.3050000@va3uv.com> Message-ID: Based on the comment that you are running the apache web server and the reflector system on the same server, I would assume that in the allmon.ini file, you would be connecting to 127.0.0.1 or localhost. This is more efficient. Now that I know the configuration, I am suspecting that this is not the system with the DNS issue. Some further questions: Is the problem at home or the hospital? Is the host you are having a problem with hhsstipend.hhsc.ca RQ supplied me a host IP to connect to the server to look at allmon (199.21.x.x) which reverse maps to FQDN hostname above, but if you look for an A record for the host name it maps to a different IP. Are you aware of this? Which IP are you trying to connect with? Are you running a web server at home? Not sure where you may have va3uv.com hosted. Is allmon running on that web server? Cheers Keith On 8/27/13 9:55 PM, "Ramesh Dhami (VA3UV)" wrote: > Hi Keith; > > See below... > > On 27/08/2013 9:41 PM, Keith Goobie wrote: >> Hi Ramesh >> >> Some more info is needed here! >> >> Allmon runs as code on the web server, which does not have to run on the >> asterisk server. > > <-- Yep, I just happen to be running it on both systems - (one my > reflector, the webpage is accessible publicly via the web, on my system > at home, the webpage is only accessible to me / internally). >> >> Where is the web server with the allmon code in relation to the asterisk >> server. Are they using the same dns? This is important. > > <-- I have the allmon code (with the publicly accessible webserver) > running on node 2248 - at the Hamilton Health Sciences Centre. DNS is > as provided by the hospital with the Google public DNS server as the > secondary DNS. > > On the system at home, the DNS is as provided by Ma Bell. > >> >> I did convert one of my allmon entries from an IP address to a hostname and >> it had no problem. >> >> If you do an nslookup on the system with the allmon code, what does it >> resolve the hostname to? >> > > <-- nslookup on both systems shows the correct IP address. > > Cheers! > > Ramesh. -- keith at goobie.org Keith Goobie Richmond Hill, ON, CANADA From Ramesh at va3uv.com Wed Aug 28 11:54:31 2013 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Wed, 28 Aug 2013 07:54:31 -0400 Subject: [App_rpt-users] allmon.ini - not resolving hostnames? In-Reply-To: References: Message-ID: <521DE4F7.9080202@va3uv.com> Hi Keith; Since we are now getting into the specifics, I will respond off-list. Cheers, Ramesh. On 27/08/2013 10:56 PM, Keith Goobie wrote: > Based on the comment that you are running the apache web server and the > reflector system on the same server, I would assume that in the allmon.ini > file, you would be connecting to 127.0.0.1 or localhost. This is more > efficient. Now that I know the configuration, I am suspecting that this is > not the system with the DNS issue. > > Some further questions: > > Is the problem at home or the hospital? > Is the host you are having a problem with hhsstipend.hhsc.ca > RQ supplied me a host IP to connect to the server to look at allmon > (199.21.x.x) which reverse maps to FQDN hostname above, but if you look for > an A record for the host name it maps to a different IP. Are you aware of > this? Which IP are you trying to connect with? > > Are you running a web server at home? Not sure where you may have va3uv.com > hosted. Is allmon running on that web server? > > Cheers > Keith > > > > > > > > On 8/27/13 9:55 PM, "Ramesh Dhami (VA3UV)" wrote: > >> Hi Keith; >> >> See below... >> >> On 27/08/2013 9:41 PM, Keith Goobie wrote: >>> Hi Ramesh >>> >>> Some more info is needed here! >>> >>> Allmon runs as code on the web server, which does not have to run on the >>> asterisk server. >> >> <-- Yep, I just happen to be running it on both systems - (one my >> reflector, the webpage is accessible publicly via the web, on my system >> at home, the webpage is only accessible to me / internally). >>> >>> Where is the web server with the allmon code in relation to the asterisk >>> server. Are they using the same dns? This is important. >> >> <-- I have the allmon code (with the publicly accessible webserver) >> running on node 2248 - at the Hamilton Health Sciences Centre. DNS is >> as provided by the hospital with the Google public DNS server as the >> secondary DNS. >> >> On the system at home, the DNS is as provided by Ma Bell. >> >>> >>> I did convert one of my allmon entries from an IP address to a hostname and >>> it had no problem. >>> >>> If you do an nslookup on the system with the allmon code, what does it >>> resolve the hostname to? >>> >> >> <-- nslookup on both systems shows the correct IP address. >> >> Cheers! >> >> Ramesh. > From kj6ko at innercite.com Wed Aug 28 15:15:54 2013 From: kj6ko at innercite.com (KJ6KO) Date: Wed, 28 Aug 2013 08:15:54 -0700 Subject: [App_rpt-users] RXONDELAY not working? Message-ID: simpleusb.conf setting rxondelay=x to any number makes no difference. Does something else need to be set for it to work? Tried it from 2 up to 50 and no change in the actual delay. Anyone? Saw another identical post from 2011 and there was NO reply! Thanks... KJ6KO __________ Information from ESET NOD32 Antivirus, version of virus signature database 8737 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From k0jsc.jeff at gmail.com Wed Aug 28 15:28:19 2013 From: k0jsc.jeff at gmail.com (Jeff Carrier) Date: Wed, 28 Aug 2013 09:28:19 -0600 Subject: [App_rpt-users] RXONDELAY not working? In-Reply-To: References: Message-ID: rxondelay only works with usbradio, it does not work with simpleusb. 73 de K0JSC On Wed, Aug 28, 2013 at 9:15 AM, KJ6KO wrote: > ** > simpleusb.conf > setting* rxondelay=x* to any number makes no difference. Does something > else need to be set for it to work? Tried it from 2 up to 50 and no change > in the actual delay. > > Anyone? Saw another identical post from 2011 and there was NO reply! > > Thanks... > > KJ6KO > > __________ Information from ESET NOD32 Antivirus, version of virus > signature database 8737 (20130828) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6ko at innercite.com Wed Aug 28 15:52:13 2013 From: kj6ko at innercite.com (KJ6KO) Date: Wed, 28 Aug 2013 08:52:13 -0700 Subject: [App_rpt-users] RXONDELAY not working? References: Message-ID: That explains a lot, except why it is even in the simpleusb.conf file in the first place. I have heard that you can use usbradio.conf to drive the DMK URI but have never tried it. Will it work then or is it a DMK thing? Thanks.... ----- Original Message ----- From: Jeff Carrier To: KJ6KO Cc: app_rpt mailing list Sent: Wednesday, August 28, 2013 8:28 AM Subject: Re: [App_rpt-users] RXONDELAY not working? rxondelay only works with usbradio, it does not work with simpleusb. 73 de K0JSC On Wed, Aug 28, 2013 at 9:15 AM, KJ6KO wrote: simpleusb.conf setting rxondelay=x to any number makes no difference. Does something else need to be set for it to work? Tried it from 2 up to 50 and no change in the actual delay. Anyone? Saw another identical post from 2011 and there was NO reply! Thanks... KJ6KO __________ Information from ESET NOD32 Antivirus, version of virus signature database 8737 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users __________ Information from ESET NOD32 Antivirus, version of virus signature database 8737 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Wed Aug 28 15:59:24 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Wed, 28 Aug 2013 11:59:24 -0400 Subject: [App_rpt-users] RXONDELAY not working? In-Reply-To: References: Message-ID: <6D4491A5-81B3-4C5B-A948-E7E1474EF848@bdboyle.com> you SHOULD be using usbradio for the DMK vice simpleusb, if you have the horsepower in the box. lot more capability and flexibility. open to correction if wrong. -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Aug 28, 2013, at 11:52, "KJ6KO" wrote: > That explains a lot, except why it is even in the simpleusb.conf file in the first place. > > I have heard that you can use usbradio.conf to drive the DMK URI but have never tried it. Will it work then or is it a DMK thing? > > Thanks.... > ----- Original Message ----- > From: Jeff Carrier > To: KJ6KO > Cc: app_rpt mailing list > Sent: Wednesday, August 28, 2013 8:28 AM > Subject: Re: [App_rpt-users] RXONDELAY not working? > > rxondelay only works with usbradio, it does not work with simpleusb. > > 73 de K0JSC > > > On Wed, Aug 28, 2013 at 9:15 AM, KJ6KO wrote: >> simpleusb.conf >> setting rxondelay=x to any number makes no difference. Does something else need to be set for it to work? Tried it from 2 up to 50 and no change in the actual delay. >> >> Anyone? Saw another identical post from 2011 and there was NO reply! >> >> Thanks... >> >> KJ6KO >> >> __________ Information from ESET NOD32 Antivirus, version of virus signature database 8737 (20130828) __________ >> >> The message was checked by ESET NOD32 Antivirus. >> >> http://www.eset.com >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users > > > > __________ Information from ESET NOD32 Antivirus, version of virus signature database 8737 (20130828) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From k0jsc.jeff at gmail.com Wed Aug 28 15:59:47 2013 From: k0jsc.jeff at gmail.com (Jeff Carrier) Date: Wed, 28 Aug 2013 09:59:47 -0600 Subject: [App_rpt-users] RXONDELAY not working? In-Reply-To: References: Message-ID: It works with any usb devices as far as I know. Usbradio gives you DSP support and SimpleUSB has no DSP support. As long as the processor in your node has enough horsepower USBRADIO should be fine. see this post to change from simple usb to usb radio. http://ohnosec.org/pipermail/app_rpt-users/2011-October/003235.html On Wed, Aug 28, 2013 at 9:52 AM, KJ6KO wrote: > ** > That explains a lot, except why it is even in the simpleusb.conf file in > the first place. > > I have heard that you can use usbradio.conf to drive the DMK URI but have > never tried it. Will it work then or is it a DMK thing? > > Thanks.... > > ----- Original Message ----- > *From:* Jeff Carrier > *To:* KJ6KO > *Cc:* app_rpt mailing list > *Sent:* Wednesday, August 28, 2013 8:28 AM > *Subject:* Re: [App_rpt-users] RXONDELAY not working? > > rxondelay only works with usbradio, it does not work with simpleusb. > > 73 de K0JSC > > > On Wed, Aug 28, 2013 at 9:15 AM, KJ6KO wrote: > >> ** >> simpleusb.conf >> setting* rxondelay=x* to any number makes no difference. Does something >> else need to be set for it to work? Tried it from 2 up to 50 and no change >> in the actual delay. >> >> Anyone? Saw another identical post from 2011 and there was NO reply! >> >> Thanks... >> >> KJ6KO >> >> __________ Information from ESET NOD32 Antivirus, version of virus >> signature database 8737 (20130828) __________ >> >> The message was checked by ESET NOD32 Antivirus. >> >> http://www.eset.com >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >> >> > > > __________ Information from ESET NOD32 Antivirus, version of virus > signature database 8737 (20130828) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6ko at innercite.com Wed Aug 28 16:03:31 2013 From: kj6ko at innercite.com (KJ6KO) Date: Wed, 28 Aug 2013 09:03:31 -0700 Subject: [App_rpt-users] RXONDELAY not working? References: <20130828084452.71befee5dbd13c5325dd1a521b4e73ee.aaddf063c6.wbe@email06.secureserver.net> Message-ID: <0141A018627D472CB83A3D94038B0477@KJ6KO> Simplex. (duplex=0) Talks directly to and listens to a repeater, but the repeater's TX PL goes away when no input. It gets a quick "glimpse" of it once in a while and causes a "bounceback". 100ms delay or less would cure that. ----- Original Message ----- From: mike at midnighteng.com To: KJ6KO Sent: Wednesday, August 28, 2013 8:44 AM Subject: RE: [App_rpt-users] RXONDELAY not working? I "think" that it's use is dependent on duplex mode ?? What duplex mode are you using in rpt.conf? mike/kb8jnm -------- Original Message -------- Subject: [App_rpt-users] RXONDELAY not working? From: "KJ6KO" Date: Wed, August 28, 2013 11:15 am To: simpleusb.conf setting rxondelay=x to any number makes no difference. Does something else need to be set for it to work? Tried it from 2 up to 50 and no change in the actual delay. Anyone? Saw another identical post from 2011 and there was NO reply! Thanks... KJ6KO __________ Information from ESET NOD32 Antivirus, version of virus signature database 8738 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6ko at innercite.com Wed Aug 28 16:15:46 2013 From: kj6ko at innercite.com (KJ6KO) Date: Wed, 28 Aug 2013 09:15:46 -0700 Subject: [App_rpt-users] RXONDELAY not working? References: Message-ID: What kind of "horsepower" are we talking about? memory or processor or both? Running 2.6G with 1.5G of memory. Was planning on stealing .5G for another box. Would 1G be enough after the robbery? Entire system only seems to use less than 0.4G now. Thanks for the link too! I will look into it! I may be able to drop the rptr's PL sooner also. I like to keep things simple! ----- Original Message ----- From: Jeff Carrier To: KJ6KO Cc: app_rpt mailing list Sent: Wednesday, August 28, 2013 8:59 AM Subject: Re: [App_rpt-users] RXONDELAY not working? It works with any usb devices as far as I know. Usbradio gives you DSP support and SimpleUSB has no DSP support. As long as the processor in your node has enough horsepower USBRADIO should be fine. see this post to change from simple usb to usb radio. http://ohnosec.org/pipermail/app_rpt-users/2011-October/003235.html On Wed, Aug 28, 2013 at 9:52 AM, KJ6KO wrote: That explains a lot, except why it is even in the simpleusb.conf file in the first place. I have heard that you can use usbradio.conf to drive the DMK URI but have never tried it. Will it work then or is it a DMK thing? Thanks.... ----- Original Message ----- From: Jeff Carrier To: KJ6KO Cc: app_rpt mailing list Sent: Wednesday, August 28, 2013 8:28 AM Subject: Re: [App_rpt-users] RXONDELAY not working? rxondelay only works with usbradio, it does not work with simpleusb. 73 de K0JSC On Wed, Aug 28, 2013 at 9:15 AM, KJ6KO wrote: simpleusb.conf setting rxondelay=x to any number makes no difference. Does something else need to be set for it to work? Tried it from 2 up to 50 and no change in the actual delay. Anyone? Saw another identical post from 2011 and there was NO reply! Thanks... KJ6KO __________ Information from ESET NOD32 Antivirus, version of virus signature database 8737 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users __________ Information from ESET NOD32 Antivirus, version of virus signature database 8737 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com __________ Information from ESET NOD32 Antivirus, version of virus signature database 8738 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From k0jsc.jeff at gmail.com Wed Aug 28 16:23:06 2013 From: k0jsc.jeff at gmail.com (Jeff Carrier) Date: Wed, 28 Aug 2013 10:23:06 -0600 Subject: [App_rpt-users] RXONDELAY not working? In-Reply-To: References: Message-ID: I'm running an hp thinclient that has a single core processor at barely over 1 ghz with like 512mb of ram and it's ok. It is not running full duplex audio though. It has two simplex link radios attached. This installation is how I found out RXONDELAY wouldn't work with simple usb. On Wed, Aug 28, 2013 at 10:15 AM, KJ6KO wrote: > ** > What kind of "horsepower" are we talking about? memory or processor or > both? Running 2.6G with 1.5G of memory. Was planning on stealing .5G for > another box. Would 1G be enough after the robbery? Entire system only > seems to use less than 0.4G now. > > Thanks for the link too! I will look into it! I may be able to drop the > rptr's PL sooner also. I like to keep things simple! > > ----- Original Message ----- > *From:* Jeff Carrier > *To:* KJ6KO > *Cc:* app_rpt mailing list > *Sent:* Wednesday, August 28, 2013 8:59 AM > *Subject:* Re: [App_rpt-users] RXONDELAY not working? > > It works with any usb devices as far as I know. Usbradio gives you DSP > support and SimpleUSB has no DSP support. As long as the processor in your > node has enough horsepower USBRADIO should be fine. see this post to > change from simple usb to usb radio. > http://ohnosec.org/pipermail/app_rpt-users/2011-October/003235.html > > > On Wed, Aug 28, 2013 at 9:52 AM, KJ6KO wrote: > >> ** >> That explains a lot, except why it is even in the simpleusb.conf file in >> the first place. >> >> I have heard that you can use usbradio.conf to drive the DMK URI but have >> never tried it. Will it work then or is it a DMK thing? >> >> Thanks.... >> >> ----- Original Message ----- >> *From:* Jeff Carrier >> *To:* KJ6KO >> *Cc:* app_rpt mailing list >> *Sent:* Wednesday, August 28, 2013 8:28 AM >> *Subject:* Re: [App_rpt-users] RXONDELAY not working? >> >> rxondelay only works with usbradio, it does not work with simpleusb. >> >> 73 de K0JSC >> >> >> On Wed, Aug 28, 2013 at 9:15 AM, KJ6KO wrote: >> >>> ** >>> simpleusb.conf >>> setting* rxondelay=x* to any number makes no difference. Does >>> something else need to be set for it to work? Tried it from 2 up to 50 and >>> no change in the actual delay. >>> >>> Anyone? Saw another identical post from 2011 and there was NO reply! >>> >>> Thanks... >>> >>> KJ6KO >>> >>> __________ Information from ESET NOD32 Antivirus, version of virus >>> signature database 8737 (20130828) __________ >>> >>> The message was checked by ESET NOD32 Antivirus. >>> >>> http://www.eset.com >>> >>> _______________________________________________ >>> App_rpt-users mailing list >>> App_rpt-users at ohnosec.org >>> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >>> >>> >> >> >> __________ Information from ESET NOD32 Antivirus, version of virus >> signature database 8737 (20130828) __________ >> >> The message was checked by ESET NOD32 Antivirus. >> >> http://www.eset.com >> > > > > __________ Information from ESET NOD32 Antivirus, version of virus > signature database 8738 (20130828) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: From k5tra at austin.rr.com Wed Aug 28 16:24:14 2013 From: k5tra at austin.rr.com (tom) Date: Wed, 28 Aug 2013 11:24:14 -0500 Subject: [App_rpt-users] RXONDELAY not working? Message-ID: <006201cea40b$0923cde0$1b6b69a0$@rr.com> The chan_simpleusb.c code clearly has the rxondelay parameter. However, I tested it on a couple of half-duplex nodes and didn't see any effect. A bug? Tom / K5TRA -------------- next part -------------- An HTML attachment was scrubbed... URL: From kj6ko at innercite.com Wed Aug 28 16:42:16 2013 From: kj6ko at innercite.com (KJ6KO) Date: Wed, 28 Aug 2013 09:42:16 -0700 Subject: [App_rpt-users] RTCM txprelim? Message-ID: <389467E2BD624001ADA1F2173D89F353@KJ6KO> I am looking into an RTCM. Does it have the capability of driving a modulator directly? May have to use it with an old Palomar controller which is set up for direct modulator input style TX audio (pre-emphasized) txprelim=yes? I know it has the ability to de-emphasize the DISC audio from the Palomar. Thanks.. __________ Information from ESET NOD32 Antivirus, version of virus signature database 8738 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Wed Aug 28 17:26:09 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 28 Aug 2013 10:26:09 -0700 Subject: [App_rpt-users] RTCM txprelim? In-Reply-To: <389467E2BD624001ADA1F2173D89F353@KJ6KO> References: <389467E2BD624001ADA1F2173D89F353@KJ6KO> Message-ID: Absolutely, yes. That is it's normal mode. -- Tim :wq On Aug 28, 2013, at 9:42 AM, KJ6KO wrote: > I am looking into an RTCM. Does it have the capability of driving a modulator directly? May have to use it with an old Palomar controller which is set up for direct modulator input style TX audio (pre-emphasized) > > txprelim=yes? > > I know it has the ability to de-emphasize the DISC audio from the Palomar. > > Thanks.. > > > __________ Information from ESET NOD32 Antivirus, version of virus signature database 8738 (20130828) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From k5tra at austin.rr.com Wed Aug 28 18:11:46 2013 From: k5tra at austin.rr.com (tom) Date: Wed, 28 Aug 2013 13:11:46 -0500 Subject: [App_rpt-users] RXONDELAY not working? Message-ID: <000d01cea41a$0f3f6180$2dbe2480$@rr.com> The chan_simpleusb.c code clearly has the rxondelay parameter. However, I tested it on a couple of half-duplex nodes and didn't see any effect. A bug? Tom / K5TRA -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Wed Aug 28 19:46:18 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 28 Aug 2013 12:46:18 -0700 Subject: [App_rpt-users] RTCM txprelim? In-Reply-To: References: <389467E2BD624001ADA1F2173D89F353@KJ6KO> Message-ID: Sorry, this deserves a better expansion. Sometimes I get in a hurry. Asterisk ships audio around (on the links, etc) as line-level audio (not pre-emphasized and needs no de-epmhasis). This works out great for telephones, computer clients, voice announcements, etc because Asterisk doesn't have to do any filtering. After all Asterisk is a telephone PBX where you would expect audio to be line-level (speaker/mic) audio. This leaves the pre/de-emphasis up to app_rpt channel drivers. Chan_usbradio and chan_voter can add pre-emphasis. Chan_simpleusb cannot pre-emphasise. With chan_voter the DSP pre-emphasis is turned on by setting txctcss = xxx.x in voter.conf. If you want pre-emphasis but no TX P/L set txctcss = to some (any) tone and set txctcsslevel = 0. Hope that helps. -- Tim :wq On Aug 28, 2013, at 10:26 AM, Tim Sawyer wrote: > Absolutely, yes. That is it's normal mode. > -- > Tim > :wq > > On Aug 28, 2013, at 9:42 AM, KJ6KO wrote: > >> I am looking into an RTCM. Does it have the capability of driving a modulator directly? May have to use it with an old Palomar controller which is set up for direct modulator input style TX audio (pre-emphasized) >> >> txprelim=yes? >> >> I know it has the ability to de-emphasize the DISC audio from the Palomar. >> >> Thanks.. >> >> >> __________ Information from ESET NOD32 Antivirus, version of virus signature database 8738 (20130828) __________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From rpt2 at chuck.midlandsnetworking.com Wed Aug 28 21:15:11 2013 From: rpt2 at chuck.midlandsnetworking.com (Chuck Henderson) Date: Wed, 28 Aug 2013 16:15:11 -0500 Subject: [App_rpt-users] System ideas for a first install In-Reply-To: References: Message-ID: I am using a D510MO board with a WD green 1TB hard drive and 2G ram. I did have 2 USB interfaces connected to it using DSP and no problems. But I no longer use USB, now I have 6 voter boards/RTCMs and it works great. The computer uses only 20 to 30 watts of power. The only equipment on site at the radio towers is the RTCM or voter board, the GPS, the network connection, and the radios. The computer is located in air conditioned space at my house. For some of the sites I use MikroTik RBSXT-5HPnD for a 5.7 Ghz network connection and other sites I use cable modem Internet. It all works very well and uses very little power, makes very little heat. Chuck WB9UUS On Tue, Aug 27, 2013 at 6:52 PM, Jonathan Weirmeir < jonathan.weirmeir at gmail.com> wrote: > A while back, I asked for tips with virtualization. However, since it's my > first time, I'd like to use a dedicated box for app_rpt. > > I'm interested in a system solution that's fairly low profile, but most > importantly, that's low in power consumption and heat generaton (which > rules out the spare Pentium 4 space heater I have sitting around). > > I've read that some have repurposed thin clients for app_rpt, with > different levels of success. > > Anyone have any suggestions for systems that have enough horsepower to run > up to four nodes on a single box, and around say $100 or less? I'm using > URIx's and USB sound fobs. > > Thanks, can't wait to get going with app_rpt. > > Jonathan > > _______________________________________________ > 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 kj6ko at innercite.com Wed Aug 28 23:21:36 2013 From: kj6ko at innercite.com (KJ6KO) Date: Wed, 28 Aug 2013 16:21:36 -0700 Subject: [App_rpt-users] RTCM txprelim? References: <389467E2BD624001ADA1F2173D89F353@KJ6KO> Message-ID: <36A21AAC545948DBB6422DBB032BD5EC@KJ6KO> AH! Besides answering another question I had about the "audio standard" on Asterisk being "line level" spkr/mic audio, you are sying the txprelim=yes is not what does it in a RTCM? Does that still need to be set? Sounds like you are basically "fooling" it by telling it to generate a PL, which makes it think it is connected directly to a modulator, hence it will pre-emphasize the audio automatically? Setting the txctcsslevel=0 just kills the tone. Do I have it correct now? ALSO, Since chan_simpleusb will not pre-emph, will a DMK URI do it if you use the chan_usbradio to drive it? Lets see how many other questions I can cram in here..... I assume since I do not have an RTCM yet, that the chan_voter is what is used for the RTCM? Even if it is NOT being used as a voter system, just a radio interface? Thakns for the help Tim!! I'm learnin' 73 de Greg ----- Original Message ----- From: Tim Sawyer To: KJ6KO Cc: App_rpt-users at ohnosec.org Sent: Wednesday, August 28, 2013 12:46 PM Subject: Re: [App_rpt-users] RTCM txprelim? Sorry, this deserves a better expansion. Sometimes I get in a hurry. Asterisk ships audio around (on the links, etc) as line-level audio (not pre-emphasized and needs no de-epmhasis). This works out great for telephones, computer clients, voice announcements, etc because Asterisk doesn't have to do any filtering. After all Asterisk is a telephone PBX where you would expect audio to be line-level (speaker/mic) audio. This leaves the pre/de-emphasis up to app_rpt channel drivers. Chan_usbradio and chan_voter can add pre-emphasis. Chan_simpleusb cannot pre-emphasise. With chan_voter the DSP pre-emphasis is turned on by setting txctcss = xxx.x in voter.conf. If you want pre-emphasis but no TX P/L set txctcss = to some (any) tone and set txctcsslevel = 0. Hope that helps. -- Tim :wq On Aug 28, 2013, at 10:26 AM, Tim Sawyer wrote: Absolutely, yes. That is it's normal mode. -- Tim :wq On Aug 28, 2013, at 9:42 AM, KJ6KO wrote: I am looking into an RTCM. Does it have the capability of driving a modulator directly? May have to use it with an old Palomar controller which is set up for direct modulator input style TX audio (pre-emphasized) txprelim=yes? I know it has the ability to de-emphasize the DISC audio from the Palomar. Thanks.. __________ Information from ESET NOD32 Antivirus, version of virus signature database 8738 (20130828) __________ __________ Information from ESET NOD32 Antivirus, version of virus signature database 8739 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com __________ Information from ESET NOD32 Antivirus, version of virus signature database 8739 (20130828) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tim.sawyer at me.com Thu Aug 29 00:58:10 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Wed, 28 Aug 2013 17:58:10 -0700 Subject: [App_rpt-users] RTCM txprelim? In-Reply-To: <36A21AAC545948DBB6422DBB032BD5EC@KJ6KO> References: <389467E2BD624001ADA1F2173D89F353@KJ6KO> <36A21AAC545948DBB6422DBB032BD5EC@KJ6KO> Message-ID: <133EE80C-4B3D-42B5-A27E-462D1D8AB340@me.com> That's right, there is no txprelem setting for RTCM's. Pre-emphasis is done by setting txctcss which causes chan_voter to turn on DSP pre-emphasis and setting txctcsslevel=0 forces no tone. So yeah, it's sort of a fake out. Chan_usbradio txprelim will generate pre-emphasis when using a DMK URI or any other USB audio FOB. The preemp is none in chan_usbradio not in the USB FOB. That's true, chan_voter and voter.conf is the interface to RTCM's even if not voting. -- Tim :wq On Aug 28, 2013, at 4:21 PM, KJ6KO wrote: > > > AH! Besides answering another question I had about the "audio standard" on Asterisk being "line level" spkr/mic audio, you are sying the txprelim=yes is not what does it in a RTCM? Does that still need to be set? > > Sounds like you are basically "fooling" it by telling it to generate a PL, which makes it think it is connected directly to a modulator, hence it will pre-emphasize the audio automatically? Setting the txctcsslevel=0 just kills the tone. > > Do I have it correct now? > > ALSO, > Since chan_simpleusb will not pre-emph, will a DMK URI do it if you use the chan_usbradio to drive it? > > Lets see how many other questions I can cram in here..... > > I assume since I do not have an RTCM yet, that the chan_voter is what is used for the RTCM? Even if it is NOT being used as a voter system, just a radio interface? > > Thakns for the help Tim!! > > I'm learnin' > > 73 de Greg > ----- Original Message ----- > From: Tim Sawyer > To: KJ6KO > Cc: App_rpt-users at ohnosec.org > Sent: Wednesday, August 28, 2013 12:46 PM > Subject: Re: [App_rpt-users] RTCM txprelim? > > Sorry, this deserves a better expansion. Sometimes I get in a hurry. > > Asterisk ships audio around (on the links, etc) as line-level audio (not pre-emphasized and needs no de-epmhasis). This works out great for telephones, computer clients, voice announcements, etc because Asterisk doesn't have to do any filtering. After all Asterisk is a telephone PBX where you would expect audio to be line-level (speaker/mic) audio. This leaves the pre/de-emphasis up to app_rpt channel drivers. Chan_usbradio and chan_voter can add pre-emphasis. Chan_simpleusb cannot pre-emphasise. > > With chan_voter the DSP pre-emphasis is turned on by setting txctcss = xxx.x in voter.conf. If you want pre-emphasis but no TX P/L set txctcss = to some (any) tone and set txctcsslevel = 0. > > Hope that helps. > -- > Tim > :wq > > On Aug 28, 2013, at 10:26 AM, Tim Sawyer wrote: > >> Absolutely, yes. That is it's normal mode. >> -- >> Tim >> :wq >> >> On Aug 28, 2013, at 9:42 AM, KJ6KO wrote: >> >>> I am looking into an RTCM. Does it have the capability of driving a modulator directly? May have to use it with an old Palomar controller which is set up for direct modulator input style TX audio (pre-emphasized) >>> >>> txprelim=yes? >>> >>> I know it has the ability to de-emphasize the DISC audio from the Palomar. >>> >>> Thanks.. >>> >>> >>> __________ Information from ESET NOD32 Antivirus, version of virus signature database 8738 (20130828) __________ > > > > __________ Information from ESET NOD32 Antivirus, version of virus signature database 8739 (20130828) __________ > > The message was checked by ESET NOD32 Antivirus. > > http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From george at dyb.com Thu Aug 29 01:22:30 2013 From: george at dyb.com (George Csahanin) Date: Wed, 28 Aug 2013 20:22:30 -0500 Subject: [App_rpt-users] RXONDELAY not working? References: <000d01cea41a$0f3f6180$2dbe2480$@rr.com> Message-ID: I'll chime in, I have it on a simplex node with simpleusb and it doesn't work. Made it 10,000 ms and no effect GeorgeC W2DB 2360 ----- Original Message ----- From: tom To: app_rpt-users at ohnosec.org Sent: Wednesday, August 28, 2013 1:11 PM Subject: Re: [App_rpt-users] RXONDELAY not working? The chan_simpleusb.c code clearly has the rxondelay parameter. However, I tested it on a couple of half-duplex nodes and didn't see any effect. A bug? Tom / K5TRA -------------- next part -------------- An HTML attachment was scrubbed... URL: From russellv2 at yahoo.com Thu Aug 29 02:20:58 2013 From: russellv2 at yahoo.com (Russell Van Vlack) Date: Wed, 28 Aug 2013 19:20:58 -0700 (PDT) Subject: [App_rpt-users] Beagleboard with LOX Board Not Starting Asterisk Message-ID: <1377742858.22164.YahooMailNeo@web161204.mail.bf1.yahoo.com> Over the weekend my Allstar Node went down suddenly. ?Had been working fine until then. ?I looked at my Beagleboard and LOX board and Asterisk had stopped running. ?I haven't been able to get it running since. ?Attempts to get it running from the CLI (asterisk -vc) have given me a segfault. Below is the tail of the asterisk/messages log: [Aug 28 22:14:48] NOTICE[1125] cdr.c: CDR simple logging enabled. [Aug 28 22:14:48] NOTICE[1125] loader.c: 148 modules will be loaded. [Aug 28 22:14:48] NOTICE[1125] res_smdi.c: Unable to load config smdi.conf: SMDI disabled [Aug 28 22:14:48] WARNING[1125] res_smdi.c: No SMDI interfaces are available to listen on, not starting SMDI listener. [Aug 28 22:14:48] WARNING[1125] res_musiconhold.c: No music on hold classes configured, disabling music on hold. [Aug 28 22:14:48] NOTICE[1125] app_radbridge.c: Unable to open radio bridging ?configuration rpt.conf. ?Radio Bridging disabled. [Aug 28 22:14:48] WARNING[1125] cdr_csv.c: unable to load config: cdr.conf [Aug 28 22:14:48] WARNING[1125] cdr_custom.c: Failed to load configuration file. Module not activated. [Aug 28 22:14:48] WARNING[1125] app_followme.c: No follow me config file (followme.conf), so no follow me [Aug 28 22:14:48] NOTICE[1125] chan_simpleusb.c: Unable to load config simpleusb.conf [Aug 28 22:14:48] ERROR[1125] chan_tlb.c: Unable to load config tlb.conf [Aug 28 22:14:48] WARNING[1125] app_festival.c: No such configuration file festival.conf [Aug 28 22:14:48] WARNING[1125] app_voicemail.c: Failed to load configuration file. [Aug 28 22:14:48] NOTICE[1125] app_queue.c: No call queueing config file (queues.conf), so no call queues [Aug 28 22:14:48] WARNING[1125] acl.c: ?is not a valid IP Any thoughts? ?Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: From cypresstower at yahoo.com Fri Aug 30 00:57:49 2013 From: cypresstower at yahoo.com (Johnny Keeker) Date: Thu, 29 Aug 2013 17:57:49 -0700 (PDT) Subject: [App_rpt-users] RXONDELAY not working? In-Reply-To: References: <000d01cea41a$0f3f6180$2dbe2480$@rr.com> Message-ID: <1377824269.70113.YahooMailNeo@web163603.mail.gq1.yahoo.com> Conducting an experiment with rxondelay, I set my node at 1000ms and connected to another node on a different server that I'm able to monitor its transmitter.? I applied a signal to the receiver with rxondelay.? The transmitter on the connected node keys up and as I count to 10, No audio was present so I lowered the rxondelay by half, 500ms. Conducting the same test, I found that around the 6 count audio came out the transmitter.? Lowering the rxondelay to 100ms, and got a count of 2 before?hearing audio.? I determined that rxondelay is working. In my case?it stops the ping pong effect.?I find a 15ms delay is ideal for a gm300 receiver.? It would interesting if someone out there could conduct this same test....? I also found using rxsquelchdelay=XXms?is another useful setting to eliminate any squelch tail noise, but it must be used with dsp or flat audio on ACID. ________________________________ From: George Csahanin To: tom ; app_rpt-users at ohnosec.org Sent: Wednesday, August 28, 2013 9:22 PM Subject: Re: [App_rpt-users] RXONDELAY not working? I'll chime in, I have it on a simplex node with simpleusb and it doesn't work. Made it 10,000 ms and no effect ? GeorgeC W2DB 2360 ----- Original Message ----- >From: tom >To: app_rpt-users at ohnosec.org >Sent: Wednesday, August 28, 2013 1:11 PM >Subject: Re: [App_rpt-users] RXONDELAY not working? > > >The chan_simpleusb.c code clearly has the rxondelay parameter. However, I tested it on a couple of half-duplex nodes and didn?t see any effect. A bug? >Tom / K5TRA _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From mike at midnighteng.com Fri Aug 30 01:32:32 2013 From: mike at midnighteng.com (mike at midnighteng.com) Date: Thu, 29 Aug 2013 18:32:32 -0700 Subject: [App_rpt-users] RXONDELAY Message-ID: <20130829183232.71befee5dbd13c5325dd1a521b4e73ee.41cb566ad3.wbe@email06.secureserver.net> An HTML attachment was scrubbed... URL: From k5tra at austin.rr.com Fri Aug 30 02:15:28 2013 From: k5tra at austin.rr.com (tom) Date: Thu, 29 Aug 2013 21:15:28 -0500 Subject: [App_rpt-users] RXONDELAY not working? In-Reply-To: <1377824269.70113.YahooMailNeo@web163603.mail.gq1.yahoo.com> References: <000d01cea41a$0f3f6180$2dbe2480$@rr.com> <1377824269.70113.YahooMailNeo@web163603.mail.gq1.yahoo.com> Message-ID: <000c01cea526$ccf56e60$66e04b20$@rr.com> Johnny, I think you must be using usbradio instead of simpleusb (as we are). Both rxondelay and rxsquelchdelay are parameters in chan_usbradio.c. however, rxondelay is in chan_simpleusb.c while rxsquelchdelay is not. The problem is rxondelay doesn?t seem to work with simpleusb. Tom / K5TRA From: Johnny Keeker [mailto:cypresstower at yahoo.com] Sent: Thursday, August 29, 2013 7:58 PM To: George Csahanin; tom; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] RXONDELAY not working? Conducting an experiment with rxondelay, I set my node at 1000ms and connected to another node on a different server that I'm able to monitor its transmitter. I applied a signal to the receiver with rxondelay. The transmitter on the connected node keys up and as I count to 10, No audio was present so I lowered the rxondelay by half, 500ms. Conducting the same test, I found that around the 6 count audio came out the transmitter. Lowering the rxondelay to 100ms, and got a count of 2 before hearing audio. I determined that rxondelay is working. In my case it stops the ping pong effect. I find a 15ms delay is ideal for a gm300 receiver. It would interesting if someone out there could conduct this same test.... I also found using rxsquelchdelay=XXms is another useful setting to eliminate any squelch tail noise, but it must be used with dsp or flat audio on ACID. From: George Csahanin To: tom ; app_rpt-users at ohnosec.org Sent: Wednesday, August 28, 2013 9:22 PM Subject: Re: [App_rpt-users] RXONDELAY not working? I'll chime in, I have it on a simplex node with simpleusb and it doesn't work. Made it 10,000 ms and no effect GeorgeC W2DB 2360 ----- Original Message ----- From: tom To: app_rpt-users at ohnosec.org Sent: Wednesday, August 28, 2013 1:11 PM Subject: Re: [App_rpt-users] RXONDELAY not working? The chan_simpleusb.c code clearly has the rxondelay parameter. However, I tested it on a couple of half-duplex nodes and didn?t see any effect. A bug? Tom / K5TRA _______________________________________________ App_rpt-users mailing list App_rpt-users at ohnosec.org http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From cypresstower at yahoo.com Fri Aug 30 04:36:08 2013 From: cypresstower at yahoo.com (Johnny Keeker) Date: Thu, 29 Aug 2013 21:36:08 -0700 (PDT) Subject: [App_rpt-users] RXONDELAY not working? In-Reply-To: <000c01cea526$ccf56e60$66e04b20$@rr.com> References: <000d01cea41a$0f3f6180$2dbe2480$@rr.com> <1377824269.70113.YahooMailNeo@web163603.mail.gq1.yahoo.com> <000c01cea526$ccf56e60$66e04b20$@rr.com> Message-ID: <1377837368.26421.YahooMailNeo@web163605.mail.gq1.yahoo.com> Rgr Tom, "I am using usbradio.conf".? Should have realized you were referring to.??I have a mobile node with limey linux and simpleusb.conf.? I owe you one so I'll test it and see what I come up with. Thanks ________________________________ From: tom To: 'Johnny Keeker' ; 'George Csahanin' ; app_rpt-users at ohnosec.org Sent: Thursday, August 29, 2013 10:15 PM Subject: RE: [App_rpt-users] RXONDELAY not working? Johnny, I think you must be using usbradio instead of simpleusb (as we are). Both rxondelay and rxsquelchdelay are parameters in chan_usbradio.c. however, rxondelay is in chan_simpleusb.c while rxsquelchdelay is not. The problem is rxondelay doesn?t seem to work with simpleusb. Tom / K5TRA ? From:Johnny Keeker [mailto:cypresstower at yahoo.com] Sent: Thursday, August 29, 2013 7:58 PM To: George Csahanin; tom; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] RXONDELAY not working? ? Conducting an experiment with rxondelay, I set my node at 1000ms and connected to another node on a different server that I'm able to monitor its transmitter.? I applied a signal to the receiver with rxondelay.? The transmitter on the connected node keys up and as I count to 10, No audio was present so I lowered the rxondelay by half, 500ms. Conducting the same test, I found that around the 6 count audio came out the transmitter.? Lowering the rxondelay to 100ms, and got a count of 2 before?hearing audio.? I determined that rxondelay is working. In my case?it stops the ping pong effect.?I find a 15ms delay is ideal for a gm300 receiver.? It would interesting if someone out there could conduct this same test....? I also found using rxsquelchdelay=XXms?is another useful setting to eliminate any squelch tail noise, but it must be used with dsp or flat audio on ACID. From:George Csahanin To: tom ; app_rpt-users at ohnosec.org Sent: Wednesday, August 28, 2013 9:22 PM Subject: Re: [App_rpt-users] RXONDELAY not working? ? I'll chime in, I have it on a simplex node with simpleusb and it doesn't work. Made it 10,000 ms and no effect ? GeorgeC W2DB 2360 ----- Original Message ----- >From:tom >To:app_rpt-users at ohnosec.org >Sent:Wednesday, August 28, 2013 1:11 PM >Subject:Re: [App_rpt-users] RXONDELAY not working? >? >The chan_simpleusb.c code clearly has the rxondelay parameter. However, I tested it on a couple of half-duplex nodes and didn?t see any effect. A bug? >Tom / K5TRA _______________________________________________ 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 vk3tkk at yahoo.com.au Fri Aug 30 11:46:31 2013 From: vk3tkk at yahoo.com.au (Peter Watkins) Date: Fri, 30 Aug 2013 04:46:31 -0700 (PDT) Subject: [App_rpt-users] OT: Alinco DR-135 tone squelch Message-ID: <1377863191.20015.YahooMailNeo@web161705.mail.bf1.yahoo.com> Can anyone advise on how to activate the tone squelch on an Alinco DR-135? Thanks & 73 Peter VK3TKK -------------- next part -------------- An HTML attachment was scrubbed... URL: From Ramesh at va3uv.com Fri Aug 30 12:08:04 2013 From: Ramesh at va3uv.com (Ramesh Dhami (VA3UV)) Date: Fri, 30 Aug 2013 08:08:04 -0400 Subject: [App_rpt-users] OT: Alinco DR-135 tone squelch In-Reply-To: <1377863191.20015.YahooMailNeo@web161705.mail.bf1.yahoo.com> References: <1377863191.20015.YahooMailNeo@web161705.mail.bf1.yahoo.com> Message-ID: <52208B24.5020007@va3uv.com> On 30/08/2013 7:46 AM, Peter Watkins wrote: > Can anyone advise on how to activate the tone squelch on an Alinco DR-135? > <-- Hi Peter; Press the "TS" button until you see 'TSQ' appear in the display, with some value (representing the TSQ tone), then use the larger VFO knob on the right to select the required tone frequency. HTH.... Ramesh. From david.osborn at manx.net Fri Aug 30 16:06:14 2013 From: david.osborn at manx.net (David Osborn) Date: Fri, 30 Aug 2013 17:06:14 +0100 Subject: [App_rpt-users] Node Blocking Message-ID: <008001cea59a$dafa5ab0$90ef1010$@manx.net> Hi Group, I'm convinced I've seen talk of this before, but having trawled the archives, I'm darned if I can find it. Is there a method of blocking specific AllStar nodes from connecting? I know we're all friends here and wouldn't dream of being unpleasant to each other, but there are occasions when it may be necessary to temporarily stop another node from linking. How would this be achieved? Thanks David -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.osborn at manx.net Fri Aug 30 16:18:05 2013 From: david.osborn at manx.net (David Osborn) Date: Fri, 30 Aug 2013 17:18:05 +0100 Subject: [App_rpt-users] Node Blocking In-Reply-To: <5220C48D.4020802@g0fhm.co.uk> References: <008001cea59a$dafa5ab0$90ef1010$@manx.net> <5220C48D.4020802@g0fhm.co.uk> Message-ID: <008801cea59c$82d4d2f0$887e78d0$@manx.net> Hi James, No, I'm familiar with the EchoLink thing. This is specifically AllStar nodes. It's not something I want to do much, if at all, but it's one for the arsenal lest it be needed. BTW. We see you connected frequently to 2483 et al, but don't often hear any voices J (and, no, you're not going on the blacklist!!) Cheers From: James Hill [mailto:jrh at g0fhm.co.uk] Sent: 30 August 2013 17:13 To: David Osborn Subject: Re: [App_rpt-users] Node Blocking On 30/08/2013 17:06, David Osborn wrote: Hi Group, I'm convinced I've seen talk of this before, but having trawled the archives, I'm darned if I can find it. Is there a method of blocking specific AllStar nodes from connecting? I know we're all friends here and wouldn't dream of being unpleasant to each other, but there are occasions when it may be necessary to temporarily stop another node from linking. How would this be achieved? Thanks David David, If you are talking about the Echolink side, you can put a line in echolink.conf that will allow/or disallow certain callsigns/node types. I have mine set to permit=*-* (ie any RF link) and certain PC users callsigns, seperated by commas. The rest get the "Un Authorised" message and a connection failure! Keeps the kerchunkers away, and the bad PC audio! J -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdboyle at bdboyle.com Fri Aug 30 16:41:04 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Fri, 30 Aug 2013 12:41:04 -0400 Subject: [App_rpt-users] Node Blocking In-Reply-To: <008001cea59a$dafa5ab0$90ef1010$@manx.net> References: <008001cea59a$dafa5ab0$90ef1010$@manx.net> Message-ID: <6A703C0A-F4B6-4BC0-9A82-868302884E2B@bdboyle.com> write an awk (or PERL or ?) script to grok through the nodelist that gets downloaded on a regular basis and remove the node in question. that will, in essence, prevent the node from being listed as a valid node and prevent connection. I assume you are talking about allstar nodes vs individual users via the web transceiver... -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Aug 30, 2013, at 12:06, "David Osborn" wrote: > Hi Group, > > I?m convinced I?ve seen talk of this before, but having trawled the archives, I?m darned if I can find it. > > Is there a method of blocking specific AllStar nodes from connecting? I know we?re all friends here and wouldn?t dream of being unpleasant to each other, but there are occasions when it may be necessary to temporarily stop another node from linking. How would this be achieved? > > Thanks > > David > > _______________________________________________ > 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 david.osborn at manx.net Fri Aug 30 16:47:37 2013 From: david.osborn at manx.net (David Osborn) Date: Fri, 30 Aug 2013 17:47:37 +0100 Subject: [App_rpt-users] Node Blocking In-Reply-To: <6A703C0A-F4B6-4BC0-9A82-868302884E2B@bdboyle.com> References: <008001cea59a$dafa5ab0$90ef1010$@manx.net> <6A703C0A-F4B6-4BC0-9A82-868302884E2B@bdboyle.com> Message-ID: <009b01cea5a0$a302c060$e9084120$@manx.net> Interesting idea. I?ve done a bit of AWK?ing in the past to parse out stats from the log of who connected when and how many times, but I?ve slept since then and will have to learn it all over again J I guess that this will need to run regularly (cron?) in order to prevent a newly downloaded node list from unblocking the user. I?ll look further at that. Thanks From: Bryan D. Boyle [mailto:bdboyle at bdboyle.com] Sent: 30 August 2013 17:41 To: David Osborn Cc: Subject: Re: [App_rpt-users] Node Blocking write an awk (or PERL or ?) script to grok through the nodelist that gets downloaded on a regular basis and remove the node in question. that will, in essence, prevent the node from being listed as a valid node and prevent connection. I assume you are talking about allstar nodes vs individual users via the web transceiver... -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Aug 30, 2013, at 12:06, "David Osborn" wrote: Hi Group, I?m convinced I?ve seen talk of this before, but having trawled the archives, I?m darned if I can find it. Is there a method of blocking specific AllStar nodes from connecting? I know we?re all friends here and wouldn?t dream of being unpleasant to each other, but there are occasions when it may be necessary to temporarily stop another node from linking. How would this be achieved? Thanks David _______________________________________________ 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 Aug 30 17:22:10 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Fri, 30 Aug 2013 10:22:10 -0700 Subject: [App_rpt-users] Node Blocking In-Reply-To: <009b01cea5a0$a302c060$e9084120$@manx.net> References: <008001cea59a$dafa5ab0$90ef1010$@manx.net>, <6A703C0A-F4B6-4BC0-9A82-868302884E2B@bdboyle.com>, <009b01cea5a0$a302c060$e9084120$@manx.net> Message-ID: It is the policy of Allstar Link to require *ALL* Allstar nodes to accept connections from and allow connections to *ALL* Allstar nodes. PERIOD. If someone's node is somehow causing you interference or problems, you are intended to make an "official" complaint, and it *WILL* be dealt with. Jim WB6NIL From: david.osborn at manx.net To: bdboyle at bdboyle.com Date: Fri, 30 Aug 2013 17:47:37 +0100 CC: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Node Blocking Interesting idea. I?ve done a bit of AWK?ing in the past to parse out stats from the log of who connected when and how many times, but I?ve slept since then and will have to learn it all over again J I guess that this will need to run regularly (cron?) in order to prevent a newly downloaded node list from unblocking the user. I?ll look further at that. Thanks From: Bryan D. Boyle [mailto:bdboyle at bdboyle.com] Sent: 30 August 2013 17:41 To: David Osborn Cc: Subject: Re: [App_rpt-users] Node Blocking write an awk (or PERL or ?) script to grok through the nodelist that gets downloaded on a regular basis and remove the node in question. that will, in essence, prevent the node from being listed as a valid node and prevent connection. I assume you are talking about allstar nodes vs individual users via the web transceiver... --BryanSent from my iPhone 5...smallkeyboard, big fingers...pleaseforgive misspellings... On Aug 30, 2013, at 12:06, "David Osborn" wrote:Hi Group, I?m convinced I?ve seen talk of this before, but having trawled the archives, I?m darned if I can find it. Is there a method of blocking specific AllStar nodes from connecting? I know we?re all friends here and wouldn?t dream of being unpleasant to each other, but there are occasions when it may be necessary to temporarily stop another node from linking. How would this be achieved? Thanks David _______________________________________________ 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 david.osborn at manx.net Fri Aug 30 17:28:15 2013 From: david.osborn at manx.net (David Osborn) Date: Fri, 30 Aug 2013 18:28:15 +0100 Subject: [App_rpt-users] Node Blocking In-Reply-To: References: <008001cea59a$dafa5ab0$90ef1010$@manx.net>, <6A703C0A-F4B6-4BC0-9A82-868302884E2B@bdboyle.com>, <009b01cea5a0$a302c060$e9084120$@manx.net> Message-ID: <00b601cea5a6$4fecb470$efc61d50$@manx.net> The duuuude has spoken - gulp. There isn't a problem with interference or naughtiness, just one of traffic management. However, I will abide by the rules and stop trying to break things. I'll go and stand in the corner for a while. From: Jim Duuuude [mailto:telesistant at hotmail.com] Sent: 30 August 2013 18:22 To: David Osborn; Bryan D. Boyle Cc: app_rpt mailing list Subject: RE: [App_rpt-users] Node Blocking It is the policy of Allstar Link to require *ALL* Allstar nodes to accept connections from and allow connections to *ALL* Allstar nodes. PERIOD. If someone's node is somehow causing you interference or problems, you are intended to make an "official" complaint, and it *WILL* be dealt with. Jim WB6NIL _____ From: david.osborn at manx.net To: bdboyle at bdboyle.com Date: Fri, 30 Aug 2013 17:47:37 +0100 CC: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Node Blocking Interesting idea. I've done a bit of AWK'ing in the past to parse out stats from the log of who connected when and how many times, but I've slept since then and will have to learn it all over again J I guess that this will need to run regularly (cron?) in order to prevent a newly downloaded node list from unblocking the user. I'll look further at that. Thanks From: Bryan D. Boyle [mailto:bdboyle at bdboyle.com] Sent: 30 August 2013 17:41 To: David Osborn Cc: Subject: Re: [App_rpt-users] Node Blocking write an awk (or PERL or ?) script to grok through the nodelist that gets downloaded on a regular basis and remove the node in question. that will, in essence, prevent the node from being listed as a valid node and prevent connection. I assume you are talking about allstar nodes vs individual users via the web transceiver... -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Aug 30, 2013, at 12:06, "David Osborn" wrote: Hi Group, I'm convinced I've seen talk of this before, but having trawled the archives, I'm darned if I can find it. Is there a method of blocking specific AllStar nodes from connecting? I know we're all friends here and wouldn't dream of being unpleasant to each other, but there are occasions when it may be necessary to temporarily stop another node from linking. How would this be achieved? Thanks David _______________________________________________ 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 bdboyle at bdboyle.com Fri Aug 30 17:34:33 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Fri, 30 Aug 2013 13:34:33 -0400 Subject: [App_rpt-users] Node Blocking In-Reply-To: <009b01cea5a0$a302c060$e9084120$@manx.net> References: <008001cea59a$dafa5ab0$90ef1010$@manx.net> <6A703C0A-F4B6-4BC0-9A82-868302884E2B@bdboyle.com> <009b01cea5a0$a302c060$e9084120$@manx.net> Message-ID: just real quick, since I'm at a Real Job and haven't access to a system yet to test, fixing is an exercise left to reader...:). IOW, it is probably full of bugs.... where 'other' is the blacklist list 'main' is the nodelist file: #! /bin/bash awk 'FNR==NR { a [$1]; next } !($1 in a)' other main > temp mv main old mv temp main -- Bryan Sent from my iPad On Aug 30, 2013, at 12:47 PM, "David Osborn" wrote: > Interesting idea. > > I?ve done a bit of AWK?ing in the past to parse out stats from the log of who connected when and how many times, but I?ve slept since then and will have to learn it all over again J > > I guess that this will need to run regularly (cron?) in order to prevent a newly downloaded node list from unblocking the user. > > I?ll look further at that. Thanks > > > From: Bryan D. Boyle [mailto:bdboyle at bdboyle.com] > Sent: 30 August 2013 17:41 > To: David Osborn > Cc: > Subject: Re: [App_rpt-users] Node Blocking > > write an awk (or PERL or ?) script to grok through the nodelist that gets downloaded on a regular basis and remove the node in question. > > that will, in essence, prevent the node from being listed as a valid node and prevent connection. > > I assume you are talking about allstar nodes vs individual users via the web transceiver... > > -- > Bryan > Sent from my iPhone 5...small > keyboard, big fingers...please > forgive misspellings... > > > > On Aug 30, 2013, at 12:06, "David Osborn" wrote: > > Hi Group, > > I?m convinced I?ve seen talk of this before, but having trawled the archives, I?m darned if I can find it. > > Is there a method of blocking specific AllStar nodes from connecting? I know we?re all friends here and wouldn?t dream of being unpleasant to each other, but there are occasions when it may be necessary to temporarily stop another node from linking. How would this be achieved? > > Thanks > > David > > _______________________________________________ > 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 k0jsc.jeff at gmail.com Fri Aug 30 17:37:15 2013 From: k0jsc.jeff at gmail.com (Jeff Carrier) Date: Fri, 30 Aug 2013 11:37:15 -0600 Subject: [App_rpt-users] Node Blocking In-Reply-To: <00b601cea5a6$4fecb470$efc61d50$@manx.net> References: <008001cea59a$dafa5ab0$90ef1010$@manx.net> <6A703C0A-F4B6-4BC0-9A82-868302884E2B@bdboyle.com> <009b01cea5a0$a302c060$e9084120$@manx.net> <00b601cea5a6$4fecb470$efc61d50$@manx.net> Message-ID: I can see how traffic management could be an issue. I've had several folks connecting from out of state and just (for lack of a better term) "lurking" because we can be pretty entertaining at times. I put up the radio reference feed to help alleviate some of that, I think its working. 73 de K0JSC On Fri, Aug 30, 2013 at 11:28 AM, David Osborn wrote: > The duuuude has spoken ? gulp.**** > > ** ** > > There isn?t a problem with interference or naughtiness, just one of > traffic management. **** > > ** ** > > However, I will abide by the rules and stop trying to break things.**** > > ** ** > > I?ll go and stand in the corner for a while.**** > > ** ** > > *From:* Jim Duuuude [mailto:telesistant at hotmail.com] > *Sent:* 30 August 2013 18:22 > *To:* David Osborn; Bryan D. Boyle > *Cc:* app_rpt mailing list > *Subject:* RE: [App_rpt-users] Node Blocking**** > > ** ** > > It is the policy of Allstar Link to require *ALL* Allstar nodes to accept > connections from > and allow connections to *ALL* Allstar nodes. PERIOD. > > If someone's node is somehow causing you interference or problems, you are > intended > to make an "official" complaint, and it *WILL* be dealt with. > > Jim WB6NIL > > **** > ------------------------------ > > From: david.osborn at manx.net > To: bdboyle at bdboyle.com > Date: Fri, 30 Aug 2013 17:47:37 +0100 > CC: app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Node Blocking**** > > Interesting idea.**** > > **** > > I?ve done a bit of AWK?ing in the past to parse out stats from the log of > who connected when and how many times, but I?ve slept since then and will > have to learn it all over again J**** > > **** > > I guess that this will need to run regularly (cron?) in order to prevent a > newly downloaded node list from unblocking the user.**** > > **** > > I?ll look further at that. Thanks**** > > **** > > **** > > *From:* Bryan D. Boyle [mailto:bdboyle at bdboyle.com ] > *Sent:* 30 August 2013 17:41 > *To:* David Osborn > *Cc:* > *Subject:* Re: [App_rpt-users] Node Blocking**** > > **** > > write an awk (or PERL or ?) script to grok through the nodelist that gets > downloaded on a regular basis and remove the node in question. **** > > **** > > that will, in essence, prevent the node from being listed as a valid node > and prevent connection.**** > > **** > > I assume you are talking about allstar nodes vs individual users via the > web transceiver... > > --**** > > Bryan**** > > Sent from my iPhone 5...small**** > > keyboard, big fingers...please**** > > forgive misspellings...**** > > **** > > **** > > > On Aug 30, 2013, at 12:06, "David Osborn" wrote:** > ** > > Hi Group,**** > > **** > > I?m convinced I?ve seen talk of this before, but having trawled the > archives, I?m darned if I can find it.**** > > **** > > Is there a method of blocking specific AllStar nodes from connecting? I > know we?re all friends here and wouldn?t dream of being unpleasant to each > other, but there are occasions when it may be necessary to temporarily stop > another node from linking. How would this be achieved?**** > > **** > > Thanks**** > > **** > > David**** > > **** > > _______________________________________________ > 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 bill.hurlock at cpcomms.com Fri Aug 30 21:55:38 2013 From: bill.hurlock at cpcomms.com (Bill Hurlock) Date: Fri, 30 Aug 2013 21:55:38 +0000 Subject: [App_rpt-users] Asterisk ended with exit status 1 Message-ID: <8F656C03689E074C9EE70EE3343E4B841658D57A@CPNYMAIL2.cpcomm.int> I have been noticing a few people having issues with Zaptel configs. I just constructed a new server and updated asterisk to the latest version only to find that Asterisk just sits there and restarts every 45 seconds. The looked at the Astrisk log file and it is complaining about Zaptel not being configed correctly. If I don't need Zaptel how do I take it out of the compile or unload it? I'm not that good with Centos just yet. My other node which I just brought all my asterisk .conf files over and updated the node number within the files will not run on this machine either. My old node runs on a Dell Dimension 4700 with no issues. The new PC is an HP low profile USH81100JM. They are a Core 2 dou Intel processor with 2 Gig of RAM. I use these all over the place at work and never have any issues with them. Anyone have any thoughts on how to solve this? Bill Hurlock CPCommunications 856-234-1661 Office 856-264-1010 Cell www.cpcomms.com WA2TQI -------------- next part -------------- An HTML attachment was scrubbed... URL: From telesistant at hotmail.com Fri Aug 30 23:34:02 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Fri, 30 Aug 2013 16:34:02 -0700 Subject: [App_rpt-users] Node Blocking In-Reply-To: References: <008001cea59a$dafa5ab0$90ef1010$@manx.net>, <6A703C0A-F4B6-4BC0-9A82-868302884E2B@bdboyle.com>, <009b01cea5a0$a302c060$e9084120$@manx.net>, Message-ID: Since some of you are attempting to do some kind of 'stuff' to deal with "traffic issues", I would be very interested in hearing from you what exactly these "issues" are and what exactly you mean/need regarding this. Certainly, there must be a "right" way of dealing with whatever it is. Thanks Jim From: bdboyle at bdboyle.com Date: Fri, 30 Aug 2013 13:34:33 -0400 To: david.osborn at manx.net CC: app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] Node Blocking just real quick, since I'm at a Real Job and haven't access to a system yet to test, fixing is an exercise left to reader...:). IOW, it is probably full of bugs.... where 'other' is the blacklist list'main' is the nodelist file: #! /bin/bashawk 'FNR==NR { a [$1]; next } !($1 in a)' other main > tempmv main oldmv temp main --BryanSent from my iPad On Aug 30, 2013, at 12:47 PM, "David Osborn" wrote: Interesting idea. I?ve done a bit of AWK?ing in the past to parse out stats from the log of who connected when and how many times, but I?ve slept since then and will have to learn it all over again J I guess that this will need to run regularly (cron?) in order to prevent a newly downloaded node list from unblocking the user. I?ll look further at that. Thanks From: Bryan D. Boyle [mailto:bdboyle at bdboyle.com] Sent: 30 August 2013 17:41 To: David Osborn Cc: Subject: Re: [App_rpt-users] Node Blocking write an awk (or PERL or ?) script to grok through the nodelist that gets downloaded on a regular basis and remove the node in question. that will, in essence, prevent the node from being listed as a valid node and prevent connection. I assume you are talking about allstar nodes vs individual users via the web transceiver... --BryanSent from my iPhone 5...smallkeyboard, big fingers...pleaseforgive misspellings... On Aug 30, 2013, at 12:06, "David Osborn" wrote:Hi Group, I?m convinced I?ve seen talk of this before, but having trawled the archives, I?m darned if I can find it. Is there a method of blocking specific AllStar nodes from connecting? I know we?re all friends here and wouldn?t dream of being unpleasant to each other, but there are occasions when it may be necessary to temporarily stop another node from linking. How would this be achieved? Thanks David _______________________________________________ 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 kilo7AlphaZulu at verizon.net Sat Aug 31 00:44:48 2013 From: kilo7AlphaZulu at verizon.net (Chris K7AZ) Date: Fri, 30 Aug 2013 17:44:48 -0700 Subject: [App_rpt-users] Loading CENTOS Error Mounting Device Message In-Reply-To: Message-ID: I am attempting to install CENTOS on a 2.5" 44 pin IDE hard drive attached to an HP T5740e Thin Client. I have tried several different size HD but keep getting the same error message: "Error mounting device sda1 as /: Invalid argument" "This most likely means this partition has not been formatted." "Press OK to reboot your system" Same Thin Client will load CENTOS to a 44 pin 4GB Flash Drive or a SATA drive with no problems. Any help greatly appreciated! Thanks, Chris K7AZ 29275 From bdboyle at bdboyle.com Sat Aug 31 01:11:57 2013 From: bdboyle at bdboyle.com (Bryan D. Boyle) Date: Fri, 30 Aug 2013 21:11:57 -0400 Subject: [App_rpt-users] Loading CENTOS Error Mounting Device Message In-Reply-To: References: Message-ID: <6EE14547-3E4B-41AF-8C41-A89F8C0C4B73@bdboyle.com> did you format and load drive with a master boot record? -- Bryan Sent from my iPhone 5...small keyboard, big fingers...please forgive misspellings... On Aug 30, 2013, at 20:44, Chris K7AZ wrote: > I am attempting to install CENTOS on a 2.5" 44 pin IDE hard drive attached > to an HP T5740e Thin Client. > > I have tried several different size HD but keep getting the same error > message: > > "Error mounting device sda1 as /: Invalid argument" > "This most likely means this partition has not been formatted." > "Press OK to reboot your system" > > Same Thin Client will load CENTOS to a 44 pin 4GB Flash Drive or a SATA > drive with no problems. > > Any help greatly appreciated! > > Thanks, > Chris > K7AZ > 29275 > > > > _______________________________________________ > 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 Sat Aug 31 01:33:36 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Fri, 30 Aug 2013 18:33:36 -0700 Subject: [App_rpt-users] RXONDELAY not working? In-Reply-To: <1377837368.26421.YahooMailNeo@web163605.mail.gq1.yahoo.com> References: <000d01cea41a$0f3f6180$2dbe2480$@rr.com>, , <1377824269.70113.YahooMailNeo@web163603.mail.gq1.yahoo.com>, <000c01cea526$ccf56e60$66e04b20$@rr.com>, <1377837368.26421.YahooMailNeo@web163605.mail.gq1.yahoo.com> Message-ID: Well, it was indeed accurate that: 1) The "rxondelay" parameter in chan_simpleusb did not work or have any effect. 2) The software *DID* indeed fully and correctly support the "rxondelay" feature, with one very specific exception: The parameter was *NEVER* read from the config file!! All I have to say on my part is: "DUH!!" The new version (one line change) which fixes this will appear publicly in SVN at 7:15 PDT this evening. Jim WB6NIL Date: Thu, 29 Aug 2013 21:36:08 -0700 From: cypresstower at yahoo.com To: k5tra at austin.rr.com; george at dyb.com; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] RXONDELAY not working? Rgr Tom, "I am using usbradio.conf". Should have realized you were referring to. I have a mobile node with limey linux and simpleusb.conf. I owe you one so I'll test it and see what I come up with. Thanks From: tom To: 'Johnny Keeker' ; 'George Csahanin' ; app_rpt-users at ohnosec.org Sent: Thursday, August 29, 2013 10:15 PM Subject: RE: [App_rpt-users] RXONDELAY not working? Johnny, I think you must be using usbradio instead of simpleusb (as we are). Both rxondelay and rxsquelchdelay are parameters in chan_usbradio.c. however, rxondelay is in chan_simpleusb.c while rxsquelchdelay is not. The problem is rxondelay doesn?t seem to work with simpleusb. Tom / K5TRA From: Johnny Keeker [mailto:cypresstower at yahoo.com] Sent: Thursday, August 29, 2013 7:58 PM To: George Csahanin; tom; app_rpt-users at ohnosec.org Subject: Re: [App_rpt-users] RXONDELAY not working? Conducting an experiment with rxondelay, I set my node at 1000ms and connected to another node on a different server that I'm able to monitor its transmitter. I applied a signal to the receiver with rxondelay. The transmitter on the connected node keys up and as I count to 10, No audio was present so I lowered the rxondelay by half, 500ms. Conducting the same test, I found that around the 6 count audio came out the transmitter. Lowering the rxondelay to 100ms, and got a count of 2 before hearing audio. I determined that rxondelay is working. In my case it stops the ping pong effect. I find a 15ms delay is ideal for a gm300 receiver. It would interesting if someone out there could conduct this same test.... I also found using rxsquelchdelay=XXms is another useful setting to eliminate any squelch tail noise, but it must be used with dsp or flat audio on ACID. From: George Csahanin To: tom ; app_rpt-users at ohnosec.org Sent: Wednesday, August 28, 2013 9:22 PM Subject: Re: [App_rpt-users] RXONDELAY not working? I'll chime in, I have it on a simplex node with simpleusb and it doesn't work. Made it 10,000 ms and no effect GeorgeC W2DB 2360 ----- Original Message ----- From: tom To: app_rpt-users at ohnosec.org Sent: Wednesday, August 28, 2013 1:11 PM Subject: Re: [App_rpt-users] RXONDELAY not working? The chan_simpleusb.c code clearly has the rxondelay parameter. However, I tested it on a couple of half-duplex nodes and didn?t see any effect. A bug? Tom / K5TRA _______________________________________________ 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 ars.w5omr at gmail.com Sat Aug 31 02:01:10 2013 From: ars.w5omr at gmail.com (Geoff Edmonson) Date: Fri, 30 Aug 2013 21:01:10 -0500 Subject: [App_rpt-users] Loading CENTOS Error Mounting Device Message Message-ID: <5ep78mu82nybjqpq99tcp3eh.1377914470217@email.android.com> Yup fsck the drive, tell the is its a type 83 (Linux) drive The OS will partition and format afterwards. From telesistant at hotmail.com Sat Aug 31 02:06:20 2013 From: telesistant at hotmail.com (Jim Duuuude) Date: Fri, 30 Aug 2013 19:06:20 -0700 Subject: [App_rpt-users] Loading CENTOS Error Mounting Device Message In-Reply-To: <5ep78mu82nybjqpq99tcp3eh.1377914470217@email.android.com> References: <5ep78mu82nybjqpq99tcp3eh.1377914470217@email.android.com> Message-ID: That's right!! Just fsck that drive!!!! And call it a "Linux"!!!! :-) Jim > Date: Fri, 30 Aug 2013 21:01:10 -0500 > From: ars.w5omr at gmail.com > To: bdboyle at bdboyle.com > CC: kilo7AlphaZulu at verizon.net; app_rpt-users at ohnosec.org > Subject: Re: [App_rpt-users] Loading CENTOS Error Mounting Device Message > > Yup > > fsck the drive, tell the is its a type 83 (Linux) drive > The OS will partition and format afterwards. > _______________________________________________ > 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 ars.w5omr at gmail.com Sat Aug 31 02:12:30 2013 From: ars.w5omr at gmail.com (Geoff Edmonson) Date: Fri, 30 Aug 2013 21:12:30 -0500 Subject: [App_rpt-users] Loading CENTOS Error Mounting Device Message Message-ID: The duuuude has spoken. All hail the Duuuuude! ;-) From yokshs at gmail.com Sat Aug 31 04:24:28 2013 From: yokshs at gmail.com (K&R Yoksh) Date: Fri, 30 Aug 2013 23:24:28 -0500 Subject: [App_rpt-users] App_rpt-users Digest, Vol 54, Issue 78 References: Message-ID: I have had problems with users that link large groups such as 2135 to my node(s). Once is a mistake, but if this continues to happen, it can cause real problems. Not all stations have full-duty cycle transmitters, for instance. In most cases, the offender has been connected via Web Transceiver, dials a slew of DTMF commands, and then disappears. The last time it happened, I think something like 68 nodes were connected to my hub node, and our groups 10-12 transmitters. Some of the responsibility falls on the node owners to know who is controlling their node, and what is happening as a result. I myself use text messaging/email and additional logging to keep track of node activity. I'd be all ears on the "right" way of dealing with it though. 73 Kyle Yoksh K0KN Olathe, KS Allstar 2210-2219 --- Original Message --- > From: Jim Duuuude > To: "Bryan D. Boyle", David Osborn > Cc: app_rpt mailing list > Subject: Re: [App_rpt-users] Node Blocking > Message-ID: > Content-Type: text/plain; charset="windows-1252" > > Since some of you are attempting to do some kind of 'stuff' to > deal with "traffic issues", I would be very interested in hearing > from you what exactly these "issues" are and what exactly you > mean/need regarding this. > > Certainly, there must be a "right" way of dealing with whatever it is. > > Thanks > > Jim From bob at w5evh.org Sat Aug 31 05:33:27 2013 From: bob at w5evh.org (Bob Roszkowski) Date: Sat, 31 Aug 2013 00:33:27 -0500 Subject: [App_rpt-users] Webcam on AllStar? Message-ID: I know this is a strange request but I have an all-in-one machine that I am going to use for a node at a REMOTE repeater site. It has a built in webcam. I was wondering if there was something out there that would be able to capture images and send them to a server. Kind of a cheap / free "security" system. At least I would be able to tell if someone was at the site. I Googled it but was not able to find anything simple with out GUI. boB - W5EVH -------------- next part -------------- An HTML attachment was scrubbed... URL: From ars.w5omr at gmail.com Sat Aug 31 06:16:29 2013 From: ars.w5omr at gmail.com (Geoff Edmonson) Date: Sat, 31 Aug 2013 01:16:29 -0500 Subject: [App_rpt-users] Webcam on AllStar? Message-ID: <7g1vtn9nm46gh5vq1whxn3fm.1377929544211@email.android.com> Can you find the camera in /dev more so, see where its mounted? Without the GUI it'll be hard to tell where its pointed. Seems that you'd have to have a GUI running and access it via remote. On the other hand, why Not run the GUI on a cCentOS install and run it remote, too? As long as you had enuff ram, cpu speed and drive space. Bob Roszkowski wrote: >_______________________________________________ >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 ars.w5omr at gmail.com Sat Aug 31 07:24:37 2013 From: ars.w5omr at gmail.com (Geoff Edmonson) Date: Sat, 31 Aug 2013 02:24:37 -0500 Subject: [App_rpt-users] Webcam on AllStar? Message-ID: For that matter, why not apt-get gnome-base or which ever GUI you're comfy with? From david.osborn at manx.net Sat Aug 31 12:01:12 2013 From: david.osborn at manx.net (David Osborn) Date: Sat, 31 Aug 2013 13:01:12 +0100 Subject: [App_rpt-users] Cylon Suppression Message-ID: <005801cea641$ca22dad0$5e689070$@manx.net> I followed with interest the discussion on accessing command mode with a macro, and the innovative ideas to achieve the desired result. That was very informative and speaks to the flexibility that Jim and others built-in to AllStar (Kudos, guys). I'm looking at a similar project but I keep getting attacked by the Cylons J (http://www.youtube.com/watch?v=0ccKPSVQcFk ) Our hub node (2483) hosts the EchoLink gateway. It has no RF hardware connected to it (then it wouldn't be a hub!). If a user on one of our other nodes wants to make an EchoLink connection, he has to go into command mode to access the hub first, then (after the Cylons have had their say), they enter the command to make the EchoLink connection, and so-on. That works well, but it's a little long-winded. What I would like to do is create a "Speed Dial" for a selected list of EchoLink nodes, and Macros appear to be ideal for this. The idea is that the Macro would accept a 3-digit suffix to connect, and a different 3-digit suffix to disconnect, like this: [functions] 6 = macro [macro] 101 = *42483*33338712# ;Connect echolink 102= ...Next connect macro 201= *42483*13338712# ;Disconnect echolink 202=...Next Disconnect macro This means that, keying *6101 will connect to the first EchoLink node (GD4HOZ, as it happens!), and keying *6201 will disconnect it. It works, except... Because there's no gap in the macro execution, the Cylons stick their galactic oars in ("By Your Command") and it actually comes out of the remote EchoLink node - which would come as a shock to the node owner. What I'm looking for is an approach that will ideally circumvent the Cylon message (even though I do kinda like it) and just get-on with the job of connecting. Perhaps a script, as Brian suggested, would do the job, by adding a delay or two, but that would still give the command message to the local user - which may not be a bad thing. Has anybody else done any EchoLink "Speed Dial" trickery? David -------------- next part -------------- An HTML attachment was scrubbed... URL: From k0jsc.jeff at gmail.com Sat Aug 31 12:23:51 2013 From: k0jsc.jeff at gmail.com (Jeff Carrier) Date: Sat, 31 Aug 2013 06:23:51 -0600 Subject: [App_rpt-users] Cylon Suppression In-Reply-To: <005801cea641$ca22dad0$5e689070$@manx.net> References: <005801cea641$ca22dad0$5e689070$@manx.net> Message-ID: I just changed the audio file on the node(s) to the sound of a telephone ringback as we perform several functions via script/remote command. Thanks for the video btw I knew it sounded familiar I just couldn't remember where I heard it! 73 K0JSC On Sat, Aug 31, 2013 at 6:01 AM, David Osborn wrote: > I followed with interest the discussion on accessing command mode with a > macro, and the innovative ideas to achieve the desired result. That was > very informative and speaks to the flexibility that Jim and others built-in > to AllStar (Kudos, guys).**** > > ** ** > > I?m looking at a similar project but I keep getting attacked by the Cylons > J**** > > ** ** > > (http://www.youtube.com/watch?v=0ccKPSVQcFk )**** > > ** ** > > Our hub node (2483) hosts the EchoLink gateway. It has no RF hardware > connected to it (then it wouldn?t be a hub!).**** > > ** ** > > If a user on one of our other nodes wants to make an EchoLink connection, > he has to go into command mode to access the hub first, then (after the > Cylons have had their say), they enter the command to make the EchoLink > connection, and so-on.**** > > ** ** > > That works well, but it?s a little long-winded.**** > > ** ** > > What I would like to do is create a ?Speed Dial? for a selected list of > EchoLink nodes, and Macros appear to be ideal for this. The idea is that > the Macro would accept a 3-digit suffix to connect, and a different 3-digit > suffix to disconnect, like this:**** > > ** ** > > [functions]**** > > 6 = macro**** > > ** ** > > [macro]**** > > 101 = **42483**33338712# ;Connect echolink**** > > 102= ??.Next connect macro**** > > 201= **42483**13338712# ;Disconnect echolink**** > > 202=?..Next Disconnect macro**** > > ** ** > > This means that, keying *6101 will connect to the first EchoLink node > (GD4HOZ, as it happens!), and keying *6201 will disconnect it.**** > > ** ** > > It works, except??.**** > > ** ** > > Because there?s no gap in the macro execution, the Cylons stick their > galactic oars in (?By Your Command?) and it actually comes out of the > remote EchoLink node ? which would come as a shock to the node owner.**** > > ** ** > > What I?m looking for is an approach that will ideally circumvent the Cylon > message (even though I do kinda like it) and just get-on with the job of > connecting.**** > > ** ** > > Perhaps a script, as Brian suggested, would do the job, by adding a delay > or two, but that would still give the command message to the local user ? > which may not be a bad thing.**** > > ** ** > > Has anybody else done any EchoLink ?Speed Dial? trickery?**** > > ** ** > > David**** > > ** ** > > _______________________________________________ > 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 ars.w5omr at gmail.com Sat Aug 31 16:21:06 2013 From: ars.w5omr at gmail.com (Geoff) Date: Sat, 31 Aug 2013 11:21:06 -0500 Subject: [App_rpt-users] Cylon Suppression In-Reply-To: References: <005801cea641$ca22dad0$5e689070$@manx.net> Message-ID: <522217F2.1090404@gmail.com> > On Sat, Aug 31, 2013 at 6:01 AM, David Osborn > wrote: > > > If a user on one of our other nodes wants to make an EchoLink > connection, he has to go into command mode to access the hub > first, then (after the Cylons have had their say), they enter the > command to make the EchoLink connection, and so-on. > > That works well, but it's a little long-winded. > [8<*SNIP*8> > > > Has anybody else done any EchoLink "Speed Dial" trickery? > #1) MAJOR SECURITY RED FLAG!!! You give regular users access to the OPERATING SYSTEM at the COMMAND LINE LEVEL? > If a user on one of our other nodes wants to make an EchoLink > connection, he has to go into command mode to access the hub first, > then (after the Cylons have had their say), they enter the command to > make the EchoLink connection, and so-on. DUDE! NO! (Breathe, Geoff, BREATHE!)... be calm and persevere... *deep breath* HOLD IT! Eht.... EHT. ~Whewwww~ Ok... where were we? Oh, yeah - Echolink. I configured another node number, in rpt.conf with some basic minor stuff (could all be commented out, really) then configured echolink.conf to reflect -that- node number. Think I simply link one node to the other. Echolink is ready to roll. Yeah, dialing out is a bit cumbersome and no one seems to know what nodenumber is assigned with what repeater... and for me, that's ok! Unless that end user on my system has done a little research and has become -at least- self sufficient enough to know what number they want to dial, then I'm -not- going to broadcast to the world how to access my system. Now, I can hear the necks of some people cracking, and remarks of 'how anal retentive', but trust me... there's a group around here that's got allstar systems all -over- the place... -none- of the 'standard' commands work on -any- of THOSE systems... You can't even get a link status, allstar has been so jacked up. (Can you say "paranoid"?) -------------- next part -------------- An HTML attachment was scrubbed... URL: From kt9ac at ameritech.net Sat Aug 31 22:09:42 2013 From: kt9ac at ameritech.net (Tony KT9AC) Date: Sat, 31 Aug 2013 17:09:42 -0500 Subject: [App_rpt-users] Allstar on different distros Message-ID: <522269A6.4000708@ameritech.net> OK, I'm going to ask if there ongoing efforts to package or provide install schemes for different hardware? I have had a node running for years on an old P4 just fine. For a low-power, fanless box I've gravitated toward the HP Thin clients, which really aren't that bad. 1.0Ghz AMD Geode, 512MB ram and an upgrade to a 44-pin 8GB Compact Flash. I have a need to build and remotely deploy three of these and would like a common install to manage. I do the standard noatime and tmpfs changes to keep the flash quiet and happy. ACID won't install on Thin Clients; XIPAR will install but takes about 3-4 hours and doesn't do MDC1200 or record traffic that I need (acid archives). I can install Debian 7.1 in about 20 minutes and it absolutely flies. Asterisk 1.8 and the current ACID SVN all compile under Debian but I can't get it to work with the URI interface. Dmesg and lspci show the URI but Allstar using the "radio tune" shows the card as "-1". I have a whole weekend in this latest build attempt. It would seem that out in the real world you can install Asterisk on anything, and that is the spirit of open-source. What would be required to get app_rpt and some of the chan stuff to run on "commodity" installs (apt-get install asterisk for example)? A lot of this is over my head, but I'm willing to try. I realize that some builds were customized for a point in time, so that begs the question about modern day attempts (Debian 7.1 runs the 3.2.0-4-686-pae kernel). Thanks Kirk for your script, but I found out late last night it doesn't use the same hardware that I do. Thanks. Tony (27129/27418/27460) From tim.sawyer at me.com Sat Aug 31 22:16:13 2013 From: tim.sawyer at me.com (Tim Sawyer) Date: Sat, 31 Aug 2013 15:16:13 -0700 Subject: [App_rpt-users] Allstar on different distros In-Reply-To: <522269A6.4000708@ameritech.net> References: <522269A6.4000708@ameritech.net> Message-ID: <46AA6F2B-655D-41C1-9EE2-1B3A11E155AB@me.com> My friend in Las Vegas tells me Limey Linux runs on these. He's sending me one to play with. -- Tim :wq On Aug 31, 2013, at 3:09 PM, Tony KT9AC wrote: > OK, I'm going to ask if there ongoing efforts to package or provide install schemes for different hardware? > > I have had a node running for years on an old P4 just fine. For a low-power, fanless box I've gravitated toward the HP Thin clients, which really aren't that bad. 1.0Ghz AMD Geode, 512MB ram and an upgrade to a 44-pin 8GB Compact Flash. I have a need to build and remotely deploy three of these and would like a common install to manage. I do the standard noatime and tmpfs changes to keep the flash quiet and happy. > > ACID won't install on Thin Clients; XIPAR will install but takes about 3-4 hours and doesn't do MDC1200 or record traffic that I need (acid archives). I can install Debian 7.1 in about 20 minutes and it absolutely flies. Asterisk 1.8 and the current ACID SVN all compile under Debian but I can't get it to work with the URI interface. Dmesg and lspci show the URI but Allstar using the "radio tune" shows the card as "-1". I have a whole weekend in this latest build attempt. > > It would seem that out in the real world you can install Asterisk on anything, and that is the spirit of open-source. What would be required to get app_rpt and some of the chan stuff to run on "commodity" installs (apt-get install asterisk for example)? > > A lot of this is over my head, but I'm willing to try. I realize that some builds were customized for a point in time, so that begs the question about modern day attempts (Debian 7.1 runs the 3.2.0-4-686-pae kernel). Thanks Kirk for your script, but I found out late last night it doesn't use the same hardware that I do. > > Thanks. > > Tony (27129/27418/27460) > > > _______________________________________________ > App_rpt-users mailing list > App_rpt-users at ohnosec.org > http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users From kt9ac at ameritech.net Sat Aug 31 22:46:58 2013 From: kt9ac at ameritech.net (Tony KT9AC) Date: Sat, 31 Aug 2013 17:46:58 -0500 Subject: [App_rpt-users] Allstar on different distros In-Reply-To: <46AA6F2B-655D-41C1-9EE2-1B3A11E155AB@me.com> References: <522269A6.4000708@ameritech.net> <46AA6F2B-655D-41C1-9EE2-1B3A11E155AB@me.com> Message-ID: <52227262.4030801@ameritech.net> Limey only runs on certain motherboards from what is available. Perhaps if it was opened up - some documentation on how to build it for example. I've considered it but can't grasp the cross-compiling methods yet. On 8/31/2013 5:16 PM, Tim Sawyer wrote: > My friend in Las Vegas tells me Limey Linux runs on these. He's sending me one to play with. > -- > Tim > :wq > > On Aug 31, 2013, at 3:09 PM, Tony KT9AC wrote: > >> OK, I'm going to ask if there ongoing efforts to package or provide install schemes for different hardware? >> >> I have had a node running for years on an old P4 just fine. For a low-power, fanless box I've gravitated toward the HP Thin clients, which really aren't that bad. 1.0Ghz AMD Geode, 512MB ram and an upgrade to a 44-pin 8GB Compact Flash. I have a need to build and remotely deploy three of these and would like a common install to manage. I do the standard noatime and tmpfs changes to keep the flash quiet and happy. >> >> ACID won't install on Thin Clients; XIPAR will install but takes about 3-4 hours and doesn't do MDC1200 or record traffic that I need (acid archives). I can install Debian 7.1 in about 20 minutes and it absolutely flies. Asterisk 1.8 and the current ACID SVN all compile under Debian but I can't get it to work with the URI interface. Dmesg and lspci show the URI but Allstar using the "radio tune" shows the card as "-1". I have a whole weekend in this latest build attempt. >> >> It would seem that out in the real world you can install Asterisk on anything, and that is the spirit of open-source. What would be required to get app_rpt and some of the chan stuff to run on "commodity" installs (apt-get install asterisk for example)? >> >> A lot of this is over my head, but I'm willing to try. I realize that some builds were customized for a point in time, so that begs the question about modern day attempts (Debian 7.1 runs the 3.2.0-4-686-pae kernel). Thanks Kirk for your script, but I found out late last night it doesn't use the same hardware that I do. >> >> Thanks. >> >> Tony (27129/27418/27460) >> >> >> _______________________________________________ >> App_rpt-users mailing list >> App_rpt-users at ohnosec.org >> http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users >