Hi,
I have a new installation of ASL3 (node 63002) and am trying to get IAX working so I can monitor using either Zoiper or DVSwitch on my cellphone. I can connect to the server using either client, and dial the node (using number 63002). I get the usual message “Connected to node 63002”, but the the call drops immediately. I was expecting (certainly with DVSwitch) that the call would result in the PTT button on the cellphone being usable, and that I’d get audio from the node.
My iax.conf
stanza:
[M0DWK] ; 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 = ******
host = dynamic
disallow = all
allow = ulaw
allow = adpcm
allow = slin
transfer = no
codecpriority = Caller
and my extensions.conf
stanza:
[iax-client] ; for IAX VoIP clients.
exten => ${NODE},1,Ringing()
same => n,Wait(1)
same => n,Answer()
same => n,Set(CALLSIGN=${CALLERID(name)})
same => n,NoOp(Caller ID name is ${CALLSIGN})
same => n,NoOp(Caller ID number is ${CALLERID(number)})
same => n,GotoIf(${ISNULL(${CALLSIGN})}?hangit)
same => n,Playback(rpt/connected-to&rpt/node)
same => n,SayDigits(${NODE})
same => n,rpt(${NODE}|P|${CALLSIGN}-P)
same => n(hangit),NoOp(No Caller ID Name)
same => n,Playback(connection-failed)
same => n,Wait(1)
same => n,Hangup
which I believe are fairly stock. In DVSwitch I set the server to <my.server.url.net>, the username to M0DWK, password as set, callerID to M0DWK, caller number to 0, and node to 63002.
In the asterisk messages.log
I observe:
[2024-12-23 23:31:37.872] WARNING[10656] chan_iax2.c: Call on IAX2/M0DWK-4584 is already up, can't start on it
[2024-12-23 23:31:45.598] NOTICE[11054][C-00000011] app_rpt.c: Radio Channel Busy.
I’m wondering if this is an issue in rpt.conf as a result. Can anyone point me in the right direction?
Many thanks,
Chris M0DWK