Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Eric Wieling
[EMAIL PROTECTED] 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 = _9NXX,1,Dial
exten = _9NXXNXX,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.
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Andrew Thompson
[EMAIL PROTECTED] 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/
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


RE: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Michael Giagnocavo
Perhaps your dialplan has another match possibility, and it's waiting for
the timeout to evaluate what you've dialed?

-Michael

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, November 18, 2004 9:15 AM
To: [EMAIL PROTECTED]
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
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Matt Gibson
[EMAIL PROTECTED] 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

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread giovanni.powell
[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)
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Eric Wieling
[EMAIL PROTECTED] wrote:
[outgoing]
ignorepat = 9
exten = _9,1,Dial(Zap/1)
Dial(Zap/1/)
Note the extra / for the FXO port.
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Giovanni Powell
Or can i set the Interval of ingorepat
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Eric Wieling
Giovanni Powell wrote:
Or can i set the Interval of ingorepat
ignorepat is processed without any delay.
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Rich Adamson
 Giovanni Powell wrote:
  Or can i set the Interval of ingorepat
 
 ignorepat is processed without any delay.

Someone mentioned this, but not sure the original poster caught
the intended meaning.

Whatever you're using for initiating the call, check its dialplan
to ensure an entry exists that supports the _9., (or whatever) that
you're trying to execute. Example, my Cisco 7960 has an entry in it
that says after I've entered four digits starting with a 3 (as in
3xxx), the dial it right away. If I don't have a matching entry,
then wait for about six seconds to send the command to asterisk.

If you already caught that, then disregard the above.

Rich


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Giovanni Powell
I tried that but still getting a delay, do you think its the X100p card.
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] X100p and 6 second delay

2004-11-18 Thread Jon Radon
I read through briefly.. from what I saw no one had mentioned it. 
Wouldn't this be from echotraining?  What do you have echotraining set
to in zapata.conf?


On Thu, 18 Nov 2004 14:08:05 -0500, Giovanni Powell
[EMAIL PROTECTED] wrote:
 I tried that but still getting a delay, do you think its the X100p card.
 
 
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 


-- 
Is it something someone said, was it something someone said?
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users