hi,
I have two Asterisk servers (Ast-1 and Ast-2) and user agent (using Xlite) registered to each server as
4001 registered to Ast-1
4002 registered to Ast-2
Now i want 4001 to be able to call 4002 and vice versa.
Here is what i did in extensions.conf on Ast-1
[mycontext]
4002 => s,1,Dial(SIP/4002@Ast-2’sIP:5060)
and similarly on Ast-2 for 4001
4001 => s,1,Dial(SIP/4001@Ast-1’sIP:5060)
but when 4001 dials 4002 i get the following message on Asterisk CLI
===============================================
– Executing Dial(“SIP/4001-ae6e”, “SIP/4002@10.0.80.74:5060”) in new stack
– Called 4002@10.0.80.74:5060
– SIP/10.0.80.74:5060-aaa0 is circuit-busy
== Everyone is busy/congested at this time (1:0/1/0)
== Auto fallthrough, channel ‘SIP/4001-ae6e’ status is ‘CONGESTION’
and Xlite shows “503 Service Unavailable”
Is this the correct way?
Please help me out.
Thanks