Hello I am still having problems with IAXTELL and FWD configuration. I get the following when I dial 17009965342 which is set as an example to dial to FWD people. 1+700+99+ 5 digit number. I have placed XXXXX where my passwords are. CLI> Executing Dial("Zap/14-1", "IAX/abatista:xxxxxx@iaxtel.com/917009965342@iaxtel") in new stack -- Calling using options 'exten=917009965342;callerid="Ariel Batista"<114>;language=en;context=iaxtel;username=abatista;formats=4;capability=2147483518;version=1;adsicpe=2' -- Called abatista:xxxxxx@iaxtel.com/917009965342@iaxtel -- Hungup 'IAX[12.37.165.130:5036]/7' == No one is available to answer at this time my IAX.conf has register => abatista:XXXXXX@iaxtel.com/114 I also have FWD setup as register => 65342:xxxxxx@fwd.pulver.com/114 So what am I doing wrong? I have read and done just about all the different examples on the google search. But I am still at a lost! I have xten configure to get fwd calls and it works. But I would like to be able to get them through my Asterisk server to my extensions.
register => abatista:XXXXXX@iaxtel.com/114 doesn't work in iax.conf also you are sending the full 917009965342 you should only send ${EXTEN:1} strip that 9 off. bkw On Mon, 13 Oct 2003, Ariel Batista wrote:> Hello I am still having problems with IAXTELL and FWD configuration. I get the following when I dial 17009965342 which is set as an example to dial to FWD people. 1+700+99+ 5 digit number. I have placed XXXXX where my passwords are. > > CLI> Executing Dial("Zap/14-1", "IAX/abatista:xxxxxx@iaxtel.com/917009965342@iaxtel") in new stack > -- Calling using options 'exten=917009965342;callerid="Ariel Batista"<114>;language=en;context=iaxtel;username=abatista;formats=4;capability=2147483518;version=1;adsicpe=2' > -- Called abatista:xxxxxx@iaxtel.com/917009965342@iaxtel > -- Hungup 'IAX[12.37.165.130:5036]/7' > == No one is available to answer at this time > > my IAX.conf has > > register => abatista:XXXXXX@iaxtel.com/114 > > I also have FWD setup as > > register => 65342:xxxxxx@fwd.pulver.com/114 > > So what am I doing wrong? I have read and done just about all the different examples on the google search. But I am still at a lost! I have xten configure to get fwd calls and it works. But I would like to be able to get them through my Asterisk server to my extensions. > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users >
From: Brian West <brian@bkw.org>>register => abatista:XXXXXX@iaxtel.com/114 doesn't work in iax.conf > >also you are sending the full 917009965342 > >you should only send ${EXTEN:1} strip that 9 off.OK done I forgot about the stripping the 9 off. Now I can call the numbers, But now how do I get the call into my system? How to I route it to an extension.> >bkw > >On Mon, 13 Oct 2003, Ariel Batista wrote: > >> Hello I am still having problems with IAXTELL and FWD configuration. I get the following when I dial 17009965342 which is set as an example to dial to FWD people. 1+700+99+ 5 digit number. I have placed XXXXX where my passwords are. >> >> CLI> Executing Dial("Zap/14-1", "IAX/abatista:xxxxxx@iaxtel.com/917009965342@iaxtel") in new stack >> -- Calling using options 'exten=917009965342;callerid="Ariel Batista"<114>;language=en;context=iaxtel;username=abatista;formats=4;capability=2147483518;version=1;adsicpe=2' >> -- Called abatista:xxxxxx@iaxtel.com/917009965342@iaxtel >> -- Hungup 'IAX[12.37.165.130:5036]/7' >> == No one is available to answer at this time >> >> my IAX.conf has >> >> register => abatista:XXXXXX@iaxtel.com/114 >> >> I also have FWD setup as >> >> register => 65342:xxxxxx@fwd.pulver.com/114 >> >> So what am I doing wrong? I have read and done just about all the different examples on the google search. But I am still at a lost! I have xten configure to get fwd calls and it works. But I would like to be able to get them through my Asterisk server to my extensions. >> >> >> _______________________________________________ >> Asterisk-Users mailing list >> Asterisk-Users@lists.digium.com >> http://lists.digium.com/mailman/listinfo/asterisk-users >> >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >
---------- Original Message ---------------------------------- From: Rich Adamson <radamson@routers.com> OK I got it working. Thank you Rich I used your examples and had to add the following the sip.conf file. It did not work until I had the :5060 on it! register => 65342:xxxxxx@fwd.pulver.com:5060>Here's what works for me.... >Move the register command for fwd to the sip.conf file (towards the top) >as fwd apparently interfaces using SIP (not iax). Then remove the /114 >from that statement. > >Create a sip.conf context similar to: >[fwd] ; handles FWD SIP (not IAX) calls >type=friend >host=fwd.pulver.com >username=65342 >secret=XXXXXX >context=fromfwd >nat=no >reinvite=no >canreinvite=no > >Then in extensions.conf, something like: >[fromfwd] >exten => s,1,Dial(SIP/3000,20,tr) >exten => s,2,VoiceMail,u3000 >exten => s,102,VoiceMail,b3000 > >Personally, I'd remove the /114 from the iaxtel register statement as >well until you have a working config. Then experiment with optional >parameters. > > > >_______________________________________________ >Asterisk-Users mailing list >Asterisk-Users@lists.digium.com >http://lists.digium.com/mailman/listinfo/asterisk-users >
> Hello I am still having problems with IAXTELL and FWD configuration. > I get the following when I dial 17009965342 which is set as an example > to dial to FWD people. 1+700+99+ 5 digit number. I have placed XXXXX > where my passwords are. > > my IAX.conf has > > register => abatista:XXXXXX@iaxtel.com/114 > > I also have FWD setup as > > register => 65342:xxxxxx@fwd.pulver.com/114 > > So what am I doing wrong?Here's what works for me.... Move the register command for fwd to the sip.conf file (towards the top) as fwd apparently interfaces using SIP (not iax). Then remove the /114 from that statement. Create a sip.conf context similar to: [fwd] ; handles FWD SIP (not IAX) calls type=friend host=fwd.pulver.com username=65342 secret=XXXXXX context=fromfwd nat=no reinvite=no canreinvite=no Then in extensions.conf, something like: [fromfwd] exten => s,1,Dial(SIP/3000,20,tr) exten => s,2,VoiceMail,u3000 exten => s,102,VoiceMail,b3000 Personally, I'd remove the /114 from the iaxtel register statement as well until you have a working config. Then experiment with optional parameters.