Setting up new Asterisk Install to use Teliax / IAX2

I know this is a stupidly basic issue. I have read two books (A:tfot and the asterisk handbook) and neither give me the answer that I need, that I can see.

I need my teliax account to answer incoming calls. I know I must be missing something important in the files. I put in everything that was on the teliax support site, but I know they are missing something.

Here are my files. If someone could please, please, please just either tell me what I am missing, or point me towards a tutorial or white paper that shows me what I am screwing up, I would appreciate it.

iax.conf

[general]
port=4569
bandwidth=low
disallow=lpc10
jitterbuffer=no
forcejitterbuffer=no
tos=lowdelay
autokill=yes
register => user:pass@voip-co3.teliax.com

[teliax]
context=default
type=friend
host=voip-co3.teliax.com
auth=md5
username=user
secret=pass
disallow=all
allow=ulaw
allow=alaw
allow=gsm

sip.conf

[general]
context=default
srvlookup=yes

[rob]
type=friend
secret=welcome
qualify=yes
nat=no
host=dynamic
canreinvite=no
context=internal

extensions.conf
[default]
exten => 7275650896,1,Dial(SIP/rob)
exten => _1XXXXXXXXXX,1,Dial(IAX2/user@teliax/${EXTEN},30,tr)
exten => s,1,Answer()
exten => s,2,DIAL(SIP/rob)

[internal]
include => default

exten => 100,1,Dial(SIP/rob)
exten => 611,1,Echo()

I recommend a couple of things to check. Login to the Teliax website and go to the features section. Make sure you have IAX selected with the “with auth” checked. Also check that you have the correct proxy set which is voip-co3.teliax.com.

Your configs look fine, I would check them with the samples from Teliax’s support site.

If you still have problems, please post exactly what is happening when you call your Teliax number.

Look at your teliax web panel on what proxy is your did number pointed to.

[quote=“Shmattie”]I recommend a couple of things to check. Login to the Teliax website and go to the features section. Make sure you have IAX selected with the “with auth” checked. Also check that you have the correct proxy set which is voip-co3.teliax.com.

Your configs look fine, I would check them with the samples from Teliax’s support site.

If you still have problems, please post exactly what is happening when you call your Teliax number.[/quote]

I think this was it. thank you!

I just changed it, going to try it after our Monday Morning Meeting (I hate them.)

Got it to work with that change and a few slight modifications to my extensions.conf.

Thanks for the help guys!!!