I've configured the DIAX phone. It registers with the * server, and I am able to make calls from DIAX. However, when I try to call the DIAX phone from another phone, I get a busy signal. My extensions.conf: exten => 70,1,Dial(IAX/mike/mike,30,tr) # IAX Mike exten => 70,2,Voicemail(u70) exten => 70,102,Voicemail(b70) and my iax.conf: [mike] type=friend username=mike host=dynamic secret=pass1 ;auth=md5,plaintext,rsa ;mailbox=70 context=local permit=0.0.0.0/0.0.0.0 Is my configuration correct? Thanks in advance.
Hi Michael,>----- Original Message ----- >From: "Michael Welter" <mike@introspect.com> >Subject: [Asterisk-Users] DIAX phone busy> I've configured the DIAX phone. It registers with the * server, and I > am able to make calls from DIAX.Did you registered using IAX or IAX2? Check if in Registering page you have selected IAX2 or not.> > However, when I try to call the DIAX phone from another phone, I get a > busy signal. > > My extensions.conf: > exten => 70,1,Dial(IAX/mike/mike,30,tr) # IAX MikeThis is wrong. You must have: exten => 70,1,Dial(IAX/mike,30,tr) or better, in order to support both IAX and IAX2 type of registrations: exten => 70,1,Dial(IAX/mike&IAX2/mike,30,tr) Best regards, Dan
Yes, IAX2 is checked. Thanks Dan wrote:> Hi, > > >>>Did you registered using IAX or IAX2? >>>Check if in Registering page you have selected IAX2 or not. > > Did you check this one too? > > BR, > Dan > > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > >