[App_rpt-users] iaxrpt running on Android

Alberto Enrique Puig alberto_e_puig at hotmail.com
Sat Jul 14 19:50:45 UTC 2018


Any news on a fix for iaxrpt running on Android?


73' Alberto KP4AP

________________________________
From: App_rpt-users <app_rpt-users-bounces at lists.allstarlink.org> on behalf of app_rpt-users-request at lists.allstarlink.org <app_rpt-users-request at lists.allstarlink.org>
Sent: Saturday, July 14, 2018 12:00:01 PM
To: app_rpt-users at lists.allstarlink.org
Subject: App_rpt-users Digest, Vol 113, Issue 13

Send App_rpt-users mailing list submissions to
        app_rpt-users at lists.allstarlink.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
or, via email, send a message with subject or body 'help' to
        app_rpt-users-request at lists.allstarlink.org

You can reach the person managing the list at
        app_rpt-users-owner at lists.allstarlink.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of App_rpt-users digest..."

This site is dedicated to the memory of Jim Dixon WB6NIL


Today's Topics:

   1. IAXRPT (Russell Thomas)
   2. Re: IAXRPT (Mike)
   3. Re: IAXRPT (Russell Thomas)
   4. Re: IAXRPT (Mike Besemer - WM4B)
   5. AllStarLink News and Updates (AllStarLink Admin Role)
   6. Re: OSS Free ASL with URIx (JJC)


----------------------------------------------------------------------

Message: 1
Date: Fri, 13 Jul 2018 11:16:47 -0500
From: Russell Thomas <russell at kv4s.com>
To: Users of Asterisk app_rpt <app_rpt-users at lists.allstarlink.org>
Subject: [App_rpt-users] IAXRPT
Message-ID:
        <CAANUOmHn_KmM1sMVoWSE9AK3Tar9zQdO2LTV6OATDX9dHjE1ew at mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

Looking for some help setting up IAXPRT on our club's AWS ASL node.

I edited the iax.conf and the extensions.conf. I made sure the IAX
ports were open on the AWS instance.

When I try connecting from the Windows client it says calling and the
state has a "?" in it. Eventually it drops out.

Any ideas?


73,
Russell Thomas, KV4S

Cell: 205.202.1701
DMR: 3101393
D-Star: KV4S
AllStar: 47923
EchoLink: KV4S-L (1003254)
HamShackHotline: 614
Web: http://KV4S.com


------------------------------

Message: 2
Date: Fri, 13 Jul 2018 13:41:22 -0400
From: Mike <mm at midnighteng.com>
To: app_rpt-users at lists.allstarlink.org
Subject: Re: [App_rpt-users] IAXRPT
Message-ID: <8e3c1daf-97a5-aa67-913c-b1ecf02f7454 at midnighteng.com>
Content-Type: text/plain; charset=utf-8; format=flowed

Well,

I'm going to bet you left a set-up set out.

Look in your extentions.conf

The below works if you define what node, node1 and node2 are

[globals]
HOMENPA = 330 ; change this to your Area Code
NODE = 48396   ; change this to your node number
NODE1 = 1999
NODE2 = 1010
NODE3 = 1020

[iaxrpt]
exten => ${NODE},1,rpt(${NODE}|X)
exten => ${NODE1},1,rpt(${NODE1}|X)
exten => ${NODE2},1,rpt(${NODE2}|X)


Otherwise

define them exact like this

[iaxrpt]

exten => 48396,1,rpt(48396}|X)


I showed both ways since when you look at the default settings in the
file, you may see it listed either way.

Can be confusing to those that do not know.

Just so you understand the difference since the top one has been defined
as a variable.

Also make sure the 'context' is correct and your password in iax.conf

Also, if you are using poerts 4570, or outside the normal/default, you
will need to include that in your

iaxrpt program connection data 'HOST' for the account like...

192.168.1.222:4570

.That should get you somewhere !

...mike/kb8jnm


On 7/13/2018 12:16 PM, Russell Thomas wrote:
> Looking for some help setting up IAXPRT on our club's AWS ASL node.
>
> I edited the iax.conf and the extensions.conf. I made sure the IAX
> ports were open on the AWS instance.
>
> When I try connecting from the Windows client it says calling and the
> state has a "?" in it. Eventually it drops out.
>
> Any ideas?
>
>
> 73,
> Russell Thomas, KV4S
>
> Cell: 205.202.1701
> DMR: 3101393
> D-Star: KV4S
> AllStar: 47923
> EchoLink: KV4S-L (1003254)
> HamShackHotline: 614
> Web: http://KV4S.com
> _______________________________________________
> App_rpt-users mailing list
> App_rpt-users at lists.allstarlink.org
> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
>
> To unsubscribe from this list please visit http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the "Unsubscribe or edit options button"
> You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.



------------------------------

Message: 3
Date: Fri, 13 Jul 2018 12:44:15 -0500
From: Russell Thomas <russell at kv4s.com>
To: Users of Asterisk app_rpt <app_rpt-users at lists.allstarlink.org>
Subject: Re: [App_rpt-users] IAXRPT
Message-ID:
        <CAANUOmGP6bXq2ZzDeAVoi3kG5VWefPLPMu0R_s=cxuxggH-B6g at mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"

Someone called me in regards to the post and after some
troubleshooting it appears I didn't need to use special characters in
the password.

Thanks everyone!!


73,
Russell Thomas, KV4S

Cell: 205.202.1701
DMR: 3101393
D-Star: KV4S
AllStar: 47923
EchoLink: KV4S-L (1003254)
HamShackHotline: 614
Web: http://KV4S.com


On Fri, Jul 13, 2018 at 12:41 PM, Mike <mm at midnighteng.com> wrote:
> Well,
>
> I'm going to bet you left a set-up set out.
>
> Look in your extentions.conf
>
> The below works if you define what node, node1 and node2 are
>
> [globals]
> HOMENPA = 330 ; change this to your Area Code
> NODE = 48396   ; change this to your node number
> NODE1 = 1999
> NODE2 = 1010
> NODE3 = 1020
>
> [iaxrpt]
> exten => ${NODE},1,rpt(${NODE}|X)
> exten => ${NODE1},1,rpt(${NODE1}|X)
> exten => ${NODE2},1,rpt(${NODE2}|X)
>
>
> Otherwise
>
> define them exact like this
>
> [iaxrpt]
>
> exten => 48396,1,rpt(48396}|X)
>
>
> I showed both ways since when you look at the default settings in the file,
> you may see it listed either way.
>
> Can be confusing to those that do not know.
>
> Just so you understand the difference since the top one has been defined as
> a variable.
>
> Also make sure the 'context' is correct and your password in iax.conf
>
> Also, if you are using poerts 4570, or outside the normal/default, you will
> need to include that in your
>
> iaxrpt program connection data 'HOST' for the account like...
>
> 192.168.1.222:4570
>
> .That should get you somewhere !
>
> ...mike/kb8jnm
>
>
>
> On 7/13/2018 12:16 PM, Russell Thomas wrote:
>>
>> Looking for some help setting up IAXPRT on our club's AWS ASL node.
>>
>> I edited the iax.conf and the extensions.conf. I made sure the IAX
>> ports were open on the AWS instance.
>>
>> When I try connecting from the Windows client it says calling and the
>> state has a "?" in it. Eventually it drops out.
>>
>> Any ideas?
>>
>>
>> 73,
>> Russell Thomas, KV4S
>>
>> Cell: 205.202.1701
>> DMR: 3101393
>> D-Star: KV4S
>> AllStar: 47923
>> EchoLink: KV4S-L (1003254)
>> HamShackHotline: 614
>> Web: http://KV4S.com
>> _______________________________________________
>> App_rpt-users mailing list
>> App_rpt-users at lists.allstarlink.org
>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
>>
>> To unsubscribe from this list please visit
>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and
>> scroll down to the bottom of the page. Enter your email address and press
>> the "Unsubscribe or edit options button"
>> You do not need a password to unsubscribe, you can do it via email
>> confirmation. If you have trouble unsubscribing, please send a message to
>> the list detailing the problem.
>
>
> _______________________________________________
> App_rpt-users mailing list
> App_rpt-users at lists.allstarlink.org
> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
>
> To unsubscribe from this list please visit
> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users and
> scroll down to the bottom of the page. Enter your email address and press
> the "Unsubscribe or edit options button"
> You do not need a password to unsubscribe, you can do it via email
> confirmation. If you have trouble unsubscribing, please send a message to
> the list detailing the problem.


------------------------------

Message: 4
Date: Fri, 13 Jul 2018 17:52:57 +0000 (GMT)
From: Mike Besemer - WM4B <mwbesemer at cox.net>
To: app_rpt-users at lists.allstarlink.org
Subject: Re: [App_rpt-users] IAXRPT
Message-ID: <2ba8eb.35d2.16494c63e47.Webtop.0 at cox.net>
Content-Type: text/plain; charset=UTF-8; format=flowed; delsp=no

Just saw this.

I got my butt kicked by that too!

Mike
WM4B


On Fri, Jul 13, 2018 at 1:44 PM, Russell Thomas wrote:

> Someone called me in regards to the post and after some
> troubleshooting it appears I didn't need to use special characters in
> the password.
>
> Thanks everyone!!
>
>
> 73,
> Russell Thomas, KV4S
>
> Cell: 205.202.1701
> DMR: 3101393
> D-Star: KV4S
> AllStar: 47923
> EchoLink: KV4S-L (1003254)
> HamShackHotline: 614
> Web: http://KV4S.com
>
>
> On Fri, Jul 13, 2018 at 12:41 PM, Mike <mm at midnighteng.com> wrote:
>> Well,
>>
>> I'm going to bet you left a set-up set out.
>>
>> Look in your extentions.conf
>>
>> The below works if you define what node, node1 and node2 are
>>
>> [globals]
>> HOMENPA = 330 ; change this to your Area Code
>> NODE = 48396   ; change this to your node number
>> NODE1 = 1999
>> NODE2 = 1010
>> NODE3 = 1020
>>
>> [iaxrpt]
>> exten => ${NODE},1,rpt(${NODE}|X)
>> exten => ${NODE1},1,rpt(${NODE1}|X)
>> exten => ${NODE2},1,rpt(${NODE2}|X)
>>
>>
>> Otherwise
>>
>> define them exact like this
>>
>> [iaxrpt]
>>
>> exten => 48396,1,rpt(48396}|X)
>>
>>
>> I showed both ways since when you look at the default settings in the
>> file,
>> you may see it listed either way.
>>
>> Can be confusing to those that do not know.
>>
>> Just so you understand the difference since the top one has been
>> defined as
>> a variable.
>>
>> Also make sure the 'context' is correct and your password in iax.conf
>>
>> Also, if you are using poerts 4570, or outside the normal/default,
>> you will
>> need to include that in your
>>
>> iaxrpt program connection data 'HOST' for the account like...
>>
>> 192.168.1.222:4570
>>
>> .That should get you somewhere !
>>
>> ...mike/kb8jnm
>>
>>
>>
>> On 7/13/2018 12:16 PM, Russell Thomas wrote:
>>>
>>> Looking for some help setting up IAXPRT on our club's AWS ASL node.
>>>
>>> I edited the iax.conf and the extensions.conf. I made sure the IAX
>>> ports were open on the AWS instance.
>>>
>>> When I try connecting from the Windows client it says calling and
>>> the
>>> state has a "?" in it. Eventually it drops out.
>>>
>>> Any ideas?
>>>
>>>
>>> 73,
>>> Russell Thomas, KV4S
>>>
>>> Cell: 205.202.1701
>>> DMR: 3101393
>>> D-Star: KV4S
>>> AllStar: 47923
>>> EchoLink: KV4S-L (1003254)
>>> HamShackHotline: 614
>>> Web: http://KV4S.com
>>> _______________________________________________
>>> App_rpt-users mailing list
>>> App_rpt-users at lists.allstarlink.org
>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
>>>
>>> To unsubscribe from this list please visit
>>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
>>> and
>>> scroll down to the bottom of the page. Enter your email address and
>>> press
>>> the "Unsubscribe or edit options button"
>>> You do not need a password to unsubscribe, you can do it via email
>>> confirmation. If you have trouble unsubscribing, please send a
>>> message to
>>> the list detailing the problem.
>>
>>
>> _______________________________________________
>> App_rpt-users mailing list
>> App_rpt-users at lists.allstarlink.org
>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
>>
>> To unsubscribe from this list please visit
>> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
>> and
>> scroll down to the bottom of the page. Enter your email address and
>> press
>> the "Unsubscribe or edit options button"
>> You do not need a password to unsubscribe, you can do it via email
>> confirmation. If you have trouble unsubscribing, please send a
>> message to
>> the list detailing the problem.
> _______________________________________________
> App_rpt-users mailing list
> App_rpt-users at lists.allstarlink.org
> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
>
> To unsubscribe from this list please visit
> http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users
> and scroll down to the bottom of the page. Enter your email address
> and press the "Unsubscribe or edit options button"
> You do not need a password to unsubscribe, you can do it via email
> confirmation. If you have trouble unsubscribing, please send a message
> to the list detailing the problem.


------------------------------

Message: 5
Date: Fri, 13 Jul 2018 14:54:25 -0400
From: AllStarLink Admin Role <admin at allstarlink.org>
To: Users of Asterisk app_rpt <app_rpt-users at lists.allstarlink.org>
Subject: [App_rpt-users] AllStarLink News and Updates
Message-ID: <96f78082-d1b9-a4dc-59e6-74da36d1c436 at allstarlink.org>
Content-Type: text/plain; charset=windows-1252

We here at AllStarLink are not always best at publishing what the
organization is up to.  There's lots of great things happening, some more
visible than others.  Below is a bit of what we've been up to since the
AllStar project was turned over to us.

AllStarLink has assembled team of around a dozen volunteer admin/support
experts to troubleshoot any possible AllStar infrastructure problems, process
node and user ID requests, improve and bug fix ASL, attempt to keep up with
end user support and pay the bills. Our team has identified and fixed every
issue which has been brought to our attention. There is always room for
improvement and we're continually working to this end.

We are improving the current infrastructure to eliminate single points of
failure.  There are new geo-redundant registration servers in test with a
clustered database backend.  DNS has been migrated to this cluster of servers
and has been running without fail for months.  As AllStar supports a diverse
userbase; many running older distributions at remote sites who desire
stability, our admin team must operate with stability as the highest
priority. As such we cannot make sweeping changes to critical network
infrastructure without extensive testing.

The registration and database servers have uptimes approaching a year, and
have been continually available during this time.  These servers are
responsible for the nodes list, which is distributed to redundant public
facing servers and on to users AllStar nodes.  Even in the event of an outage
during maintenance, the node list simply stops updating for a time.  While
inconvenient to nodes registering during this window, the vast majority of
nodes are still able to link with this older node list.

Our admin team has built a new stats server and are working on a new portal.
By the way, we have been successfully processing ID and node requests on this
new portal for months and have received very positive feedback on its new
node list.  We added a new node map and performance improvements to the stats
server.  MediaWiki has been installed with advanced search, a WYSIWYG editor,
and other plugins, enabling anyone to create or update documentation.  The
Drupal site at docs.allstarlink.org is migrating as editors time permits.
Our distribution has been updated including ASL 1.01 to run on the latest OS
and has many improvements.  More improvements are under active development.

We're always open to assistance, whether it be design work, admin/support
team help, or a completely new feature created by a code contributor.  It's
easy to get involved at any level.

In closing we want to stress that if you have a problem with AllStar servers
or want to help out in any way, please let us know by posting to the
app_rpt-users list.  That's the best way to insure the fastest response.


AllStarLink, Inc.

Directors:
Kevin Custer, W3KKC
Pete Elke, WI6H
Bryan Fields, W9CR
Tim Sawyer, WD6AWP


------------------------------

Message: 6
Date: Fri, 13 Jul 2018 15:45:25 -0600
From: JJC <cummingsj at gmail.com>
To: Users of Asterisk app_rpt <app_rpt-users at lists.allstarlink.org>
Subject: Re: [App_rpt-users] OSS Free ASL with URIx
Message-ID:
        <CAOb75Ot3fFCStUBx1pL_A51Qa4VyB+B+45O+pxvBxWU9imw-uw at mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Good news, I have made it all work flawlessly!  There were a few tweaks
that I had to make within pulseaudio in terms of some buffer values and the
correct sample rate and boom, I have clean audio now without the use of OSS
which means I can have an updated kernel!  While there are a few different
moving parts, it's actually somewhat trivial.. I'll put together directions
if anyone else cares lol...

JJC
N0PKT

On Thu, Jul 12, 2018 at 10:37 PM JJC <cummingsj at gmail.com> wrote:

> Started a new thread since the old one was hijacked a little bit..
>
> At any rate, I have a current raspbian kernal (without OSS) and I have
> done the following:
>
>    1. disabled onboard audio (just blacklisting the KM for the device)
>    2. configured ALSA to use the C-Media device (URIx) for default audio
>    3. installed pulseaudio
>    4. installed osspd
>    5. start pulseaudio
>    6. stard osspd defining --adsp as dsp1 and as a padsp slave
>    7. start asterisk
>
> It's not perfect yet, but I do have ASL receiving audio from the URIx and
> transmitting audio through the URIx.. it's not clear audio.. maybe audio
> levels?  Also note that there i an osspd-alsa but that doesn't work.. when
> I try that it causes the usb closed errors that I had posted in the other
> thread and ASL won't get past that point.
>
> Unfortunately the site is far enough away that I can't get to the device
> and put it on the bench.. a user is reporting that "tones" are what he is
> hearing after he unkeys
>
> If I can figure out the rest I'll be publishing all of the things that
> need to be edited to 'get-er-done' until then I'll be playing with it...
> any input/ideas/feedback is welcome!
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.allstarlink.org/pipermail/app_rpt-users/attachments/20180713/1885724a/attachment-0001.html>

------------------------------

Subject: Digest Footer

_______________________________________________
App_rpt-users mailing list
App_rpt-users at lists.allstarlink.org
http://lists.allstarlink.org/cgi-bin/mailman/listinfo/app_rpt-users


------------------------------

End of App_rpt-users Digest, Vol 113, Issue 13
**********************************************
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.keekles.org/pipermail/app_rpt-users/attachments/20180714/4ee0defd/attachment.html>


More information about the App_rpt-users mailing list