I am getting a 6 second delay whenever i dial 9 to call someone using PSTN, What could be causing this?? I am using the Wildcard X100p.
giovanni.powell@gmail.com wrote:> I am getting a 6 second delay whenever i dial 9 to call someone using > PSTN, What could be causing this?? > > I am using the Wildcard X100p.Part of that delay is just waiting for the X100P to dial. Part of that delay may be overlapping dialplan entries. exten => _9NXXXXXX,1,Dial.... exten => _9NXXNXXXXXX,1,Dial.... Now when you dial 95551212 how does Asterisk know you are not going to dial more digits? It can't and so has to wait for a while before processing the call.
giovanni.powell@gmail.com wrote:> I am getting a 6 second delay whenever i dial 9 to call someone using > PSTN, What could be causing this??Pattern matching, perhaps? What's your dialplan look like for the station you're calling from? -- Andrew Thompson http://aktzero.com/
Perhaps your dialplan has another match possibility, and it's waiting for the timeout to evaluate what you've dialed? -Michael -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of giovanni.powell@gmail.com Sent: Thursday, November 18, 2004 9:15 AM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] X100p and 6 second delay I am getting a 6 second delay whenever i dial 9 to call someone using PSTN, What could be causing this?? I am using the Wildcard X100p. _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
giovanni.powell@gmail.com wrote:>I am getting a 6 second delay whenever i dial 9 to call someone using >PSTN, What could be causing this?? > >I am using the Wildcard X100p. >_______________________________________________ > >probably some type of timeout, do you have more than one extension beginning with 9 in the same context? matt -- Matt Gibson VOIP Administrator NJ Tech Solutions 1.314.480.4550 ex. 6400 1.877.999.4678 ex. 6400
[general] static=yes writeprotect=no [default] include => from-sip include => outgoing include => incoming [from-sip] exten => 1400,1,Dial(SIP/1400,15) ;phone1 exten => 1400,2,Voicemail(u1400) exten => 1400,4,Hangup exten => 1500,1,Dial(SIP/1500,15) ;phone2 exten => 1500,2,Voicemail(u1500) exten => 1500,4,Hangup exten => 1600,1,Dial(SIP/1600,15) ;phone3 exten => 1600,2,Voicemail(u1600) exten => 1600,4,Hangup [globals] faxline=Zap/1 [outgoing] ignorepat => 9 exten => _9,1,Dial(Zap/1) [incoming] exten => s,1,Answer() exten => s,2,Background(tt-monkeys) exten => 1400,1,Dial(SIP/1400) exten => 1500,1,Dial(SIP/1500) exten => 1600,1,Dial(SIP/1600)
giovanni.powell@gmail.com wrote:> [outgoing] > ignorepat => 9 > exten => _9,1,Dial(Zap/1)Dial(Zap/1/) Note the extra / for the FXO port.
Or can i set the Interval of ingorepat