Apparently I didn’t make things clear in my previous post… I am playing around with Android IAXRPT and for some reason i am having issues with connecting to the multiple nodes on the server. I have attached the below information that i currently have editing usernames and passwords of course…
extensions.conf
[globals]
HOMENPA=200
NODE=41715
NODE2=41834
NODE3=27103
NODE4=42448
[iax-client] ; for IAX VIOP clients
exten => ${NODE},1,Ringing
exten => ${NODE},n,Wait(3)
exten => ${NODE},n,Answer
exten => ${NODE},n,Set(NODENUM=${CALLERID(number)})
exten => ${NODE},n,Playback(rpt/node|noanswer)
exten => ${NODE},n,SayDigits(${EXTEN})
exten => ${NODE},n,Set(CALLERID(num)=0)
exten => ${NODE},n,Rpt,${NODE}|P|${CALLERID(name)}
exten => ${NODE},n,Hangup
exten => ${NODE},n(hangit),Answer
exten => ${NODE},n(hangit),Wait(1)
exten => ${NODE},n(hangit),Hangup
[iax-client2] ; for IAX VIOP clients
exten => ${NODE2},1,Ringing
exten => ${NODE2},n,Wait(3)
exten => ${NODE2},n,Answer
exten => ${NODE2},n,Set(NODENUM=${CALLERID(number)})
exten => ${NODE2},n,Playback(rpt/node|noanswer)
exten => ${NODE2},n,SayDigits(${EXTEN})
exten => ${NODE2},n,Set(CALLERID(num)=0)
exten => ${NODE2},n,Rpt,${NODE}|P|${CALLERID(name)}
exten => ${NODE2},n,Hangup
exten => ${NODE2},n(hangit),Answer
exten => ${NODE2},n(hangit),Wait(1)
exten => ${NODE2},n(hangit),Hangup
[iax-client3] ; for IAX VIOP clients
exten => ${NODE3},1,Ringing
exten => ${NODE3},n,Wait(3)
exten => ${NODE3},n,Answer
exten => ${NODE3},n,Set(NODENUM=${CALLERID(number)})
exten => ${NODE3},n,Playback(rpt/node|noanswer)
exten => ${NODE3},n,SayDigits(${EXTEN})
exten => ${NODE3},n,Set(CALLERID(num)=0)
exten => ${NODE3},n,Rpt,${NODE}|P|${CALLERID(name)}
exten => ${NODE3},n,Hangup
exten => ${NODE3},n(hangit),Answer
exten => ${NODE3},n(hangit),Wait(1)
exten => ${NODE3},n(hangit),Hangup
[iax-client4] ; for IAX VIOP clients
exten => ${NODE4},1,Ringing
exten => ${NODE4},n,Wait(3)
exten => ${NODE4},n,Answer
exten => ${NODE4},n,Set(NODENUM=${CALLERID(number)})
exten => ${NODE4},n,Playback(rpt/node|noanswer)
exten => ${NODE4},n,SayDigits(${EXTEN})
exten => ${NODE4},n,Set(CALLERID(num)=0)
exten => ${NODE4},n,Rpt,${NODE}|P|${CALLERID(name)}
exten => ${NODE4},n,Hangup
exten => ${NODE4},n(hangit),Answer
exten => ${NODE4},n(hangit),Wait(1)
exten => ${NODE4},n(hangit),Hangup
I added the following lines to my iax.conf
[username] ; Connect from iax client (Zoiper…)
type=friend ; Notice type here is friend <--------------
context=iax-client ; Context to jump to in extensions.conf
auth=md5
secret=password
host=dynamic
disallow=all
allow=ulaw
allow=g726aal2
allow=gsm
transfer=no
[username2] ; Connect from iax client (Zoiper…)
type=friend ; Notice type here is friend <--------------
context=iax-client2 ; Context to jump to in extensions.conf
auth=md5
secret=password
host=dynamic
disallow=all
allow=ulaw
allow=g726aal2
allow=gsm
transfer=no
[username3] ; Connect from iax client (Zoiper…)
type=friend ; Notice type here is friend <--------------
context=iax-client3 ; Context to jump to in extensions.conf
auth=md5
secret=password
host=dynamic
disallow=all
allow=ulaw
allow=g726aal2
allow=gsm
transfer=no
[username4] ; Connect from iax client (Zoiper…)
type=friend ; Notice type here is friend <--------------
context=iax-client4 ; Context to jump to in extensions.conf
auth=md5
secret=password
host=dynamic
disallow=all
allow=ulaw
allow=g726aal2
allow=gsm
transfer=no
The usernames are diffferent for each log in as listed above and the context lines have been edited to reflect the extensions.conf is this how this works??
···
On Mon, Feb 29, 2016 at 9:46 PM, Mike - W5JR w5jr.lists@gmail.com wrote:
Well, I may be leading you sort of astray. In one server, I have just one stanza in extensions.conf, but with all nodes listed. In another server, I have separate stanzas for each node, using the node, node2, node3, node4 style.
I now see you are using the android app. No experience with it.
You will need an entry in your app for each node using the defined iax-client name for that node, iax-client, iax-client2, etc.
tnx
Mike / W5JR
Alpharetta GA
On Feb 29, 2016, at 10:28 PM, Mike - W5JR w5jr.lists@gmail.com wrote:
In my iax-client stanzas, I don’t have the last 4 exten lines you have.
You only need one stanza in extensions.conf. All of the iax-client(s) stanzas in iax.conf point to the same stanza in extensions.conf.
The iax-client stanza context= value is the same for each iax-client stanza. In extensions.conf, you need a stanza (only one) named the same as the context in the iax-client stanzas. These 4 all point to the same extension stanza.
Are you using Zoiper?
tnx
Mike / W5JR
Alpharetta GA
On Feb 29, 2016, at 7:26 PM, Loren Tedford lorentedford@gmail.com wrote:
I am playing around with iaxrpt and have added the following lines to my
extensions.conf
[globals]
HOMENPA=200
NODE=41715
NODE2=41834
NODE3=27103
NODE4=42448
[iax-client] ; for IAX VIOP clients
exten => ${NODE},1,Ringing
exten => ${NODE},n,Wait(3)
exten => ${NODE},n,Answer
exten => ${NODE},n,Set(NODENUM=${CALLERID(number)})
exten => ${NODE},n,Playback(rpt/node|noanswer)
exten => ${NODE},n,SayDigits(${EXTEN})
exten => ${NODE},n,Set(CALLERID(num)=0)
exten => ${NODE},n,Rpt,${NODE}|P|${CALLERID(name)}
exten => ${NODE},n,Hangup
exten => ${NODE},n(hangit),Answer
exten => ${NODE},n(hangit),Wait(1)
exten => ${NODE},n(hangit),Hangup
[iax-client2] ; for IAX VIOP clients
exten => ${NODE2},1,Ringing
exten => ${NODE2},n,Wait(3)
exten => ${NODE2},n,Answer
exten => ${NODE2},n,Set(NODENUM=${CALLERID(number)})
exten => ${NODE2},n,Playback(rpt/node|noanswer)
exten => ${NODE2},n,SayDigits(${EXTEN})
exten => ${NODE2},n,Set(CALLERID(num)=0)
exten => ${NODE2},n,Rpt,${NODE}|P|${CALLERID(name)}
exten => ${NODE2},n,Hangup
exten => ${NODE2},n(hangit),Answer
exten => ${NODE2},n(hangit),Wait(1)
exten => ${NODE2},n(hangit),Hangup
[iax-client3] ; for IAX VIOP clients
exten => ${NODE3},1,Ringing
exten => ${NODE3},n,Wait(3)
exten => ${NODE3},n,Answer
exten => ${NODE3},n,Set(NODENUM=${CALLERID(number)})
exten => ${NODE3},n,Playback(rpt/node|noanswer)
exten => ${NODE3},n,SayDigits(${EXTEN})
exten => ${NODE3},n,Set(CALLERID(num)=0)
exten => ${NODE3},n,Rpt,${NODE}|P|${CALLERID(name)}
exten => ${NODE3},n,Hangup
exten => ${NODE3},n(hangit),Answer
exten => ${NODE3},n(hangit),Wait(1)
exten => ${NODE3},n(hangit),Hangup
[iax-client4] ; for IAX VIOP clients
exten => ${NODE4},1,Ringing
exten => ${NODE4},n,Wait(3)
exten => ${NODE4},n,Answer
exten => ${NODE4},n,Set(NODENUM=${CALLERID(number)})
exten => ${NODE4},n,Playback(rpt/node|noanswer)
exten => ${NODE4},n,SayDigits(${EXTEN})
exten => ${NODE4},n,Set(CALLERID(num)=0)
exten => ${NODE4},n,Rpt,${NODE}|P|${CALLERID(name)}
exten => ${NODE4},n,Hangup
exten => ${NODE4},n(hangit),Answer
exten => ${NODE4},n(hangit),Wait(1)
exten => ${NODE4},n(hangit),Hangup
I added the following lines to my iax.conf
[username] ; Connect from iax client (Zoiper…)
type=friend ; Notice type here is friend <--------------
context=iax-client ; Context to jump to in extensions.conf
auth=md5
secret=password
host=dynamic
disallow=all
allow=ulaw
allow=g726aal2
allow=gsm
transfer=no
[username2] ; Connect from iax client (Zoiper…)
type=friend ; Notice type here is friend <--------------
context=iax-client2 ; Context to jump to in extensions.conf
auth=md5
secret=password
host=dynamic
disallow=all
allow=ulaw
allow=g726aal2
allow=gsm
transfer=no
[username3] ; Connect from iax client (Zoiper…)
type=friend ; Notice type here is friend <--------------
context=iax-client3 ; Context to jump to in extensions.conf
auth=md5
secret=password
host=dynamic
disallow=all
allow=ulaw
allow=g726aal2
allow=gsm
transfer=no
[username4] ; Connect from iax client (Zoiper…)
type=friend ; Notice type here is friend <--------------
context=iax-client4 ; Context to jump to in extensions.conf
auth=md5
secret=password
host=dynamic
disallow=all
allow=ulaw
allow=g726aal2
allow=gsm
transfer=no
I am trying to use the Andriod iax client and it only connects to node 41715 and to no other nodes why is this??
Loren Tedford (KC9ZHV)
Email: lorentedford@gmail.com
http://www.lorentedford.com
http://www.kc9zhv.com
http://forum.kc9zhv.com
http://hub.kc9zhv.com
http://www.newwavesucks.com
http://forum.newwavesucks.com
App_rpt-users mailing list
App_rpt-users@ohnosec.org
http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users
To unsubscribe from this list please visit http://ohnosec.org/cgi-bin/mailman/listinfo/app_rpt-users and scroll down to the bottom of the page. Enter your email address and press the “Unsubscribe or edit options button”
You do not need a password to unsubscribe, you can do it via email confirmation. If you have trouble unsubscribing, please send a message to the list detailing the problem.
Loren Tedford (KC9ZHV)
Email: lorentedford@gmail.com
http://www.lorentedford.com
http://www.kc9zhv.com
http://forum.kc9zhv.com
http://hub.kc9zhv.com
http://www.newwavesucks.com
http://forum.newwavesucks.com