Displaying 1 result from an estimated 1 matches for "server_a_extensions".
Did you mean:
server_ca_extensions
2014 Jun 25
0
Multiple Servers: Multiple Peers: call-limit
...-limit is only
applied between A and the middle servers. For the sake of discussion,
let's say call-limit=10 for both, and the total limit should also be 10.
Since my round-robin configuration will fall-back to the other server,
calls can reach a maximum of 20. Not a state I want to allow.
#server_a_extensions.conf
[SERVER01]
exten => _X.,1,NoOp(Use: First Server)
same => n,Dial(SIP/A-to-01-to-Z/${EXTEN})
same => n,GotoIf($["${DIALSTATUS}"="CHANUNAVAIL"]?SERVER02,${EXTEN},1)
same => n,NoOp(yes, it's incomplete)
[SERVER02]
exten => _X.,1,NoOp(Use: Second Server)...