Frederico Madeira
2006-Nov-09 05:23 UTC
[asterisk-users] Alcatel trunk with asterisk problem on dialing digit-by-digit
Hi guys,
I have an Alcatel 4200 with a ISDN board pluged in the asterisk server with
TE110P.
Input calls
VOIP Proider ---> Asterisk ---> Alcatel
Output Calls
VOIP Proider <--- Asterisk <--- Alcatel
In alcatel phones, users should dial 2 for take a line tone and can dial. At
this point start my problems:
1. When users dial 2 on phone (alcatel) they don't received a dial tone,
only receive a ocuped tone;
2. When users make step one, in asterisk console i received this message:
!! Unexpected Channel selection 3
-- Extension '' in context 'default' from '027' does
not exist.
Rejecting call on channel 0/31, span 1
If i configure in alcatel short dialing such: if user dial 3020 alcatel sent
do asterisk a block number 31122332. In this case works fine.
How i can solve this problem ??
Bellow i list my extension.conf
[default]
ignorepat=>0
### Internal Calls
## Input Calls
exten=> 312120XX,1,Dial(Zap/g1/${EXTEN:-4})
exten=> 312120XX,2,Hangup
### External Calls
exten=> _XXXXXXXX,1,Dial(SIP/${EXTEN}@voipprovider,60,Tt) # Local calls
exten=> _XXXXXXXX,2,Hangup
exten=> _0XXXXXXXXXX,1,Dial(SIP/${EXTEN}@voipprovider,60,Tt) # Long distance
Calls
exten=> _0XXXXXXXXXX,2Hangup
exten=> _00XXXXXXXXXX,1,Dial(SIP/${EXTEN}@voipprovider,60,Tt) #
Internacional Calls
exten=> _00XXXXXXXXXX,2Hangup
Thanks.
--
Frederico Madeira
fmadeira@gmail.com
www.madeira.eng.br
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://lists.digium.com/pipermail/asterisk-users/attachments/20061109/b39d4482/attachment-0001.htm
Marco Mouta
2006-Nov-09 05:46 UTC
[asterisk-users] Alcatel trunk with asterisk problem on dialing digit-by-digit
Frederico, Pls Post your zapata.conf, any ways pls read bellow: On 11/9/06, Frederico Madeira <fmadeira@gmail.com> wrote:> > Hi guys, > > I have an Alcatel 4200 with a ISDN board pluged in the asterisk server > with TE110P. > > Input calls > VOIP Proider ---> Asterisk ---> Alcatel > > Output Calls > VOIP Proider <--- Asterisk <--- Alcatel > > In alcatel phones, users should dial 2 for take a line tone and can dial. > At this point start my problems: > > 1. When users dial 2 on phone (alcatel) they don't received a dial tone, > only receive a ocuped tone; > > 2. When users make step one, in asterisk console i received this message: > > !! Unexpected Channel selection 3 > -- Extension '' in context 'default' from '027' does not exist. > Rejecting call on channel 0/31, span 1 > > If i configure in alcatel short dialing such: if user dial 3020 alcatel > sent do asterisk a block number 31122332. In this case works fine. > > How i can solve this problem ?? > > Bellow i list my extension.conf > > [default] > ignorepat=>0 > ### Internal Calls > > ## Input Calls > exten=> 312120XX,1,Dial(Zap/g1/${EXTEN:-4}) > exten=> 312120XX,2,HangupYou are missing "_" for pattern match: exten=> _312120XX,1,Dial(Zap/g1/${EXTEN:-4}) exten=> _312120XX,2,Hangup ### External Calls> exten=> _XXXXXXXX,1,Dial(SIP/${EXTEN}@voipprovider,60,Tt) # Local calls > exten=> _XXXXXXXX,2,Hangup > > exten=> _0XXXXXXXXXX,1,Dial(SIP/${EXTEN}@voipprovider,60,Tt) # Long > distance Calls > exten=> _0XXXXXXXXXX,2Hangup > > exten=> _00XXXXXXXXXX,1,Dial(SIP/${EXTEN}@voipprovider ,60,Tt) # > Internacional Calls > exten=> _00XXXXXXXXXX,2Hangup > > Thanks. > > -- > Frederico Madeira > fmadeira@gmail.com > www.madeira.eng.br > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > > >-- Com os melhores cumprimentos, Marco Mouta -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20061109/c8327d2c/attachment.htm
Leonardo Gomes Figueira
2006-Nov-09 06:32 UTC
[asterisk-users] Alcatel trunk with asterisk problem on dialing digit-by-digit
Frederico, Frederico Madeira escreveu:> 1. When users dial 2 on phone (alcatel) they don't received a dial tone, > only receive a ocuped tone; > > 2. When users make step one, in asterisk console i received this message: > > !! Unexpected Channel selection 3 > -- Extension '' in context 'default' from '027' does not exist. > Rejecting call on channel 0/31, span 1 > > If i configure in alcatel short dialing such: if user dial 3020 alcatel > sent do asterisk a block number 31122332. In this case works fine. > > How i can solve this problem ??On zapata.conf: overlapdial=yes Leonardo