Long join times in conference bridge

Using the following:

I have 9 extensions that auto answered when called. I want to get them into a conference. After 101 joins, the rest take a long time. Can you point me to how to fix this.

exten => 8800,n(next),Originate(sip/101,exten,conference,8601,1)
exten => 8800,n,Originate(sip/100,exten,conference,8601,1)
exten => 8800,n,Originate(sip/102,exten,conference,8601,1)
exten => 8800,n,Originate(sip/103,exten,conference,8601,1)
exten => 8800,n,Originate(sip/104,exten,conference,8601,1)
exten => 8800,n,Originate(sip/105,exten,conference,8601,1)
exten => 8800,n,Originate(sip/106,exten,conference,8601,1)
exten => 8800,n,Originate(sip/107,exten,conference,8601,1)
exten => 8800,n,Originate(sip/108,exten,conference,8601,1)
exten => 8800,n,Originate(sip/109,exten,conference,8601,1)

after a very long time they all eventually join but I would like it to be faster like 100 and 101

Doesn’t anyone have a suggestions. If I just ask 100 and 101 the conference works almost immediately. If I add just 102 then the conference take about 30-40 seconds to start. There has to be a reason that its delayed.

Not really, but here have a reply to not feel alone :yum:

Show us the cli output or better the full log with time stamps when this happens.

1 Like

Here is the full log file when the problem occurs. As you can see after dial.c is executed, it takes 20 seconds to ring. I hope this output is helpful. Thanks.

[Aug 10 16:37:03] VERBOSE[4993] dial.c: Called 101
[Aug 10 16:37:03] VERBOSE[4993] dial.c: SIP/101-00000002 is ringing
[Aug 10 16:37:03] VERBOSE[4993] dial.c: SIP/101-00000002 answered
[Aug 10 16:37:03] VERBOSE[4993][C-00000001] pbx.c: Executing [8601@conference:1] ConfBridge(“SIP/101-00000002”, “1234”) in new stack
[Aug 10 16:37:03] VERBOSE[4993][C-00000001] bridge_channel.c: Channel SIP/101-00000002 joined ‘softmix’ base-bridge
[Aug 10 16:37:03] VERBOSE[4984][C-00000001] pbx.c: Executing [8800@dial-local:13] Originate(“SIP/10020-00000001”, “sip/100,exten,conference,8601,1”) in new stack
[Aug 10 16:37:03] VERBOSE[4984][C-00000001] netsock2.c: Using SIP VIDEO CoS mark 6
[Aug 10 16:37:03] VERBOSE[4984][C-00000001] netsock2.c: Using SIP RTP CoS mark 5
[Aug 10 16:37:03] VERBOSE[4995] dial.c: Called 100
[Aug 10 16:37:03] VERBOSE[4995] dial.c: SIP/100-00000003 is ringing
[Aug 10 16:37:03] VERBOSE[4995] dial.c: SIP/100-00000003 answered
[Aug 10 16:37:03] VERBOSE[4995][C-00000001] pbx.c: Executing [8601@conference:1] ConfBridge(“SIP/100-00000003”, “1234”) in new stack
[Aug 10 16:37:03] VERBOSE[4995][C-00000001] bridge_channel.c: Channel SIP/100-00000003 joined ‘softmix’ base-bridge
[Aug 10 16:37:03] VERBOSE[4984][C-00000001] pbx.c: Executing [8800@dial-local:14] Set(“SIP/10020-00000001”, “ns=3
”) in new stack
[Aug 10 16:37:03] VERBOSE[4984][C-00000001] pbx.c: Executing [8800@dial-local:15] GotoIf(“SIP/10020-
00000001”, “0?joinnow”) in new stack
[Aug 10 16:37:03] VERBOSE[4984][C-00000001] pbx.c: Executing [8800@dial-local:16] Originate(“SIP/10020-00000001”, “sip/102,exten,conference,8601,1”) in new stack
[Aug 10 16:37:03] VERBOSE[4984][C-00000001] netsock2.c: Using SIP VIDEO CoS mark 6
[Aug 10 16:37:03] VERBOSE[4984][C-00000001] netsock2.c: Using SIP RTP CoS mark 5
[Aug 10 16:37:03] VERBOSE[5002] dial.c: Called 102
[Aug 10 16:37:23] VERBOSE[5002] dial.c: SIP/102-00000004 is ringing
[Aug 10 16:37:23] VERBOSE[5002] dial.c: SIP/102-00000004 answered

My guess would be a DNS issue, unrelated to the conference.

1 Like

That was it!! Thanks.