Everyone is busy/congested at this time asterisk (1:0/0/1)

We use AIX connect two servers but got below message
everyone is busy/congested at this time asterisk (1:0/0/1)

and the call from serverA to serverB can’t ring but can hear IVR .
HOW CAN I SOLVE IT ?

(iax.conf )

[general]
autokill=yes

register => aaaaaa:aaaaaa@192.168.100.5

[aaaaaa]
type=friend
host=dynamic
trunk=yes
secret=aaaaaa
context=aaaaaa_incoming
deny=0.0.0.0/0.0.0.0
permit=192.168.100.5/255.255.255.255

(extensions.conf )

[globals]

[general]
autofallthrough=yes

[default]

[incoming_calls]

[phones]
include => from-internal
include => remote

[from-internal]
exten => _7XXX,1,NoOp()
exten => _7XXX,n,Dial(IAX2/${EXTEN:1},30,r)
exten => _7XXX,n,Playback(the-party-you-are-calling&is-curntly-unavail)
exten => _7XXX,n,Hangup()

[remote]
exten => _6XXX,1,NoOp()
exten => _6XXX,n,Dial(IAX2/aaaaaa/${EXTEN:1},30,r)
exten => _6XXX,n,Hangup()

[aaaaaa_incoming]
include => from-internal

(Sip.conf )

[1001]
type=friend
host=dynamic
context=phone

{{{{{Server B}}}}}

======================================
(iax.conf )

[general]
autokill=yes

register => bbbbbb:bbbbbb@192.168.0.40

[bbbbbb]
type=friend
host=dynamic
trunk=yes
secret=bbbbbb
context=bbbbbb_incoming
deny=0.0.0.0/0.0.0.0
permit=192.168.0.40/255.255.255.255

======================================
(extensions.conf)

[globals]

[general]
autofallthrough=yes

[default]

[incoming_calls]

[phone]
include => from-internal
include => remote

[from-internal]
exten => _6XXX,1,NoOp()
exten => _6XXX,n,Dial(IAX2/${EXTEN:1},30,r)
exten => _6XXX,n,Playback(the-party-you-are-calling&is-curntly-unavail)
exten => _6XXX,n,Hangup()

[remote]
exten => _7XXX,1,NoOp()
exten => _7XXX,n,Dial(IAX2/bbbbbb/${EXTEN:1},30,r)
exten => _7XXX,n,Hangup()

[bbbbbb_incoming]
include => from-internal

======================================
(Sip.conf )

[8000]
type=friend
host=dynamic
context=phone

Register your dynamic peers, or as you seem to know their IP address, make them non-dynamic.

Note that register is mutually exclusive with respect to dynamic for the same peer.

1 Like

HI , THANKS FOR your reply me

Could you provide a sample for me ?
Thanks a lot .

I also have try to set a ip address on server a and b host .
but the result was the same before .=> everyone-is-busy-congested-at-this-time-asterisk-1-0-0-1/
How can i do ? =.=

You will need to find someone who does paid consultancy for a sample for something as basic as this. The first part is more about the peer than Asterisk. You may find some hints about the second part by reading the last week’s posts on the forum.