Re: [Asterisk-Users] DID setup from goiax.com

2005-10-20 Thread Faris Raouf

trixter aka Bret McDanel wrote:

I dont know then that was cut and paste from what I have working ...

maybe actual log dumps of the error?

On Wed, 2005-10-19 at 10:27 -0700, [EMAIL PROTECTED] wrote:

That is What I stated in the email.. my GOIAX #. not the DID #.

That is not the issue.





Is this still ongoing? If so...

when you get an error like [EMAIL PROTECTED] in the log, it is a good indication 
that something is looking for a priority s in the context (I think).


In my case I set up goiax yesterday and had this exact error. The 
solution was simply to have s priorities in the context in 
extensions.conf that my context in iax.conf was pointing to for goiax.


NOTE: In the following, mygoiaxnumber should be replaced with the 
actual number (not DID number) that you see on your screen when you 
first register, just above you password.



iax.conf:

register = mygoiaxnumber:[EMAIL PROTECTED]

[mygoiaxnumber]
context=goiaxinwards
etc
etc


extensions.conf:

[goiaxinwards]
exten = s,1, Answer()
etc

AND NOT:

exten = mygoiaxnumber,1,Answer()
etc

(which is what I originally had and which did not work for me in my 
particular case - I got the [EMAIL PROTECTED] type error)


Faris.


___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] DID setup from goiax.com

2005-10-19 Thread Ronald Wiplinger

Can anybody post a step by step setup guide, please?

___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
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] DID setup from goiax.com

2005-10-19 Thread trixter aka Bret McDanel
On Wed, 2005-10-19 at 14:24 +0800, Ronald Wiplinger wrote:
 Can anybody post a step by step setup guide, please?

Its like anything else once you have signed up ...

in iax.conf
register = PHONENUMBER:[EMAIL PROTECTED]/goiax-in

[goiax]
type= peer
host= server1.goiax.com
context = default
secret  = PASSWORD
allow   = gsm
;allow  = ulaw
;disallow   = all
notransfer  = yes
qualify = yes
auth= md5
username= PHONENUMBER


replace PHONENUMBER with the 8782 number you were issued.  Replace
PASSWORD with your password from you account signup.

Then in extensions.conf
; for outbound
exten = _1NX,1,Dial(IAX2/[EMAIL PROTECTED]/${EXTEN},90,R)
exten = _1NX,2,Busy
exten = _1NX,102,Congestion
exten = _1NX,202,playback(tt-weasels)

; for inbound
exten = goiax-in,1,DO WHATEVER HERE

asterisk -rx reload

you should be set.  


-- 
Trixter http://www.0xdecafbad.com Bret McDanel
UK +44 870 340 4605   Germany +49 801 777 555 3402
US +1 360 207 0479 or +1 516 687 5200
FreeWorldDialup: 635378


signature.asc
Description: This is a digitally signed message part
___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
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] DID setup from goiax.com

2005-10-19 Thread pbx
Trixter:

Thanks for the guide to setting this up:... I have tried the below
configuration with my settings, and when I place /goiax-in after my
register command, my register statement fails.

If i remove it. I get a Rejected connect attempt from goiax's server IP,
trying to reach 's@'

I have put my GoIAX # in default, local, as the extension, and nothing.

I dont know where to look next on why i'm getting the rejected connect
attempt.

Thanks..

./Ben

 On Wed, 2005-10-19 at 14:24 +0800, Ronald Wiplinger wrote:
 Can anybody post a step by step setup guide, please?

 Its like anything else once you have signed up ...

 in iax.conf
 register = PHONENUMBER:[EMAIL PROTECTED]/goiax-in

 [goiax]
 type= peer
 host= server1.goiax.com
 context = default
 secret  = PASSWORD
 allow   = gsm
 ;allow  = ulaw
 ;disallow   = all
 notransfer  = yes
 qualify = yes
 auth= md5
 username= PHONENUMBER


 replace PHONENUMBER with the 8782 number you were issued.  Replace
 PASSWORD with your password from you account signup.

 Then in extensions.conf
 ; for outbound
 exten = _1NX,1,Dial(IAX2/[EMAIL PROTECTED]/${EXTEN},90,R)
 exten = _1NX,2,Busy
 exten = _1NX,102,Congestion
 exten = _1NX,202,playback(tt-weasels)

 ; for inbound
 exten = goiax-in,1,DO WHATEVER HERE

 asterisk -rx reload

 you should be set.


 --
 Trixter http://www.0xdecafbad.com Bret McDanel
 UK +44 870 340 4605   Germany +49 801 777 555 3402
 US +1 360 207 0479 or +1 516 687 5200
 FreeWorldDialup: 635378
 ___
 --Bandwidth and Colocation sponsored by Easynews.com --

 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users


___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
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] DID setup from goiax.com

2005-10-19 Thread Tom Vile
for the incoming context put your goiax.com phone number not the free DID number but the other one.On 10/19/05, 
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
Trixter:Thanks for the guide to setting this up:... I have tried the belowconfiguration with my settings, and when I place /goiax-in after myregister command, my register statement fails.If i remove it. I get a Rejected connect attempt from goiax's server IP,
trying to reach 's@'I have put my GoIAX # in default, local, as the extension, and nothing.I dont know where to look next on why i'm getting the rejected connectattempt.Thanks.../Ben
 On Wed, 2005-10-19 at 14:24 +0800, Ronald Wiplinger wrote: Can anybody post a step by step setup guide, please? Its like anything else once you have signed up ... in 
iax.conf register = PHONENUMBER:[EMAIL PROTECTED]/goiax-in [goiax] type= peer host= 
server1.goiax.com context = default secret= PASSWORD allow = gsm ;allow= ulaw ;disallow = all notransfer= yes
 qualify = yes auth= md5 username= PHONENUMBER replace PHONENUMBER with the 8782 number you were issued.Replace PASSWORD with your password from you account signup.
 Then in extensions.conf ; for outbound exten = _1NX,1,Dial(IAX2/[EMAIL PROTECTED]/${EXTEN},90,R) exten = _1NX,2,Busy exten = _1NX,102,Congestion
 exten = _1NX,202,playback(tt-weasels) ; for inbound exten = goiax-in,1,DO WHATEVER HERE asterisk -rx reload you should be set.
 -- Trixter http://www.0xdecafbad.com Bret McDanel UK +44 870 340 4605 Germany +49 801 777 555 3402 US +1 360 207 0479 or +1 516 687 5200 FreeWorldDialup: 635378
 ___ --Bandwidth and Colocation sponsored by Easynews.com -- Asterisk-Users mailing list 
Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users___--Bandwidth and Colocation sponsored by 
Easynews.com --Asterisk-Users mailing listAsterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-usersTo UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
-- Tom VileBaldwin Technology Solutions, IncConsulting - Web Design - VoIP Telephonywww.baldwintechsolutions.com
Phone: 518-631-2855 x205Phone: 845-652-4578 x205Phone: 978-203-3848 x205Fax: 518-631-2856
___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
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] DID setup from goiax.com

2005-10-19 Thread pbx
That is What I stated in the email.. my GOIAX #. not the DID #.

That is not the issue.

 for the incoming context put your goiax.com http://goiax.com phone
 number
 not the free DID number but the other one.

 On 10/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 Trixter:

 Thanks for the guide to setting this up:... I have tried the below
 configuration with my settings, and when I place /goiax-in after my
 register command, my register statement fails.

 If i remove it. I get a Rejected connect attempt from goiax's server IP,
 trying to reach 's@'

 I have put my GoIAX # in default, local, as the extension, and nothing.

 I dont know where to look next on why i'm getting the rejected connect
 attempt.

 Thanks..

 ./Ben

  On Wed, 2005-10-19 at 14:24 +0800, Ronald Wiplinger wrote:
  Can anybody post a step by step setup guide, please?
 
  Its like anything else once you have signed up ...
 
  in iax.conf
  register =
 PHONENUMBER:[EMAIL PROTECTED]/goiax-inhttp://PHONENUMBER:[EMAIL 
 PROTECTED]/goiax-in
 
  [goiax]
  type = peer
  host = server1.goiax.com http://server1.goiax.com
  context = default
  secret = PASSWORD
  allow = gsm
  ;allow = ulaw
  ;disallow = all
  notransfer = yes
  qualify = yes
  auth = md5
  username = PHONENUMBER
 
 
  replace PHONENUMBER with the 8782 number you were issued. Replace
  PASSWORD with your password from you account signup.
 
  Then in extensions.conf
  ; for outbound
  exten = _1NX,1,Dial(IAX2/[EMAIL PROTECTED]/${EXTEN},90,R)
  exten = _1NX,2,Busy
  exten = _1NX,102,Congestion
  exten = _1NX,202,playback(tt-weasels)
 
  ; for inbound
  exten = goiax-in,1,DO WHATEVER HERE
 
  asterisk -rx reload
 
  you should be set.
 
 
  --
  Trixter http://www.0xdecafbad.com Bret McDanel
  UK +44 870 340 4605 Germany +49 801 777 555 3402
  US +1 360 207 0479 or +1 516 687 5200
  FreeWorldDialup: 635378
  ___
  --Bandwidth and Colocation sponsored by
 Easynews.comhttp://Easynews.com--
 
  Asterisk-Users mailing list
  Asterisk-Users@lists.digium.com
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


 ___
 --Bandwidth and Colocation sponsored by Easynews.com
 http://Easynews.com--

 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users




 --
 Tom Vile
 Baldwin Technology Solutions, Inc
 Consulting - Web Design - VoIP Telephony
 www.baldwintechsolutions.com http://www.baldwintechsolutions.com
 Phone: 518-631-2855 x205
 Phone: 845-652-4578 x205
 Phone: 978-203-3848 x205
 Fax: 518-631-2856
 ___
 --Bandwidth and Colocation sponsored by Easynews.com --

 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users


___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
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] DID setup from goiax.com

2005-10-19 Thread Sergey Okhapkin
Replace 
[goiax]
with
[PHONENUMBER]

username= don't work for users in IAX channel.

On Wed, 2005-10-19 at 10:27 -0700, [EMAIL PROTECTED] wrote:
 That is What I stated in the email.. my GOIAX #. not the DID #.
 
 That is not the issue.
 
  for the incoming context put your goiax.com http://goiax.com phone
  number
  not the free DID number but the other one.
 
  On 10/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 
  Trixter:
 
  Thanks for the guide to setting this up:... I have tried the below
  configuration with my settings, and when I place /goiax-in after my
  register command, my register statement fails.
 
  If i remove it. I get a Rejected connect attempt from goiax's server IP,
  trying to reach 's@'
 
  I have put my GoIAX # in default, local, as the extension, and nothing.
 
  I dont know where to look next on why i'm getting the rejected connect
  attempt.
 
  Thanks..
 
  ./Ben
 
   On Wed, 2005-10-19 at 14:24 +0800, Ronald Wiplinger wrote:
   Can anybody post a step by step setup guide, please?
  
   Its like anything else once you have signed up ...
  
   in iax.conf
   register =
  PHONENUMBER:[EMAIL PROTECTED]/goiax-inhttp://PHONENUMBER:[EMAIL 
  PROTECTED]/goiax-in
  
   [goiax]
   type = peer
   host = server1.goiax.com http://server1.goiax.com
   context = default
   secret = PASSWORD
   allow = gsm
   ;allow = ulaw
   ;disallow = all
   notransfer = yes
   qualify = yes
   auth = md5
   username = PHONENUMBER
  
  
   replace PHONENUMBER with the 8782 number you were issued. Replace
   PASSWORD with your password from you account signup.
  
   Then in extensions.conf
   ; for outbound
   exten = _1NX,1,Dial(IAX2/[EMAIL PROTECTED]/${EXTEN},90,R)
   exten = _1NX,2,Busy
   exten = _1NX,102,Congestion
   exten = _1NX,202,playback(tt-weasels)
  
   ; for inbound
   exten = goiax-in,1,DO WHATEVER HERE
  
   asterisk -rx reload
  
   you should be set.
  
  
   --
   Trixter http://www.0xdecafbad.com Bret McDanel
   UK +44 870 340 4605 Germany +49 801 777 555 3402
   US +1 360 207 0479 or +1 516 687 5200
   FreeWorldDialup: 635378
   ___
   --Bandwidth and Colocation sponsored by
  Easynews.comhttp://Easynews.com--
  
   Asterisk-Users mailing list
   Asterisk-Users@lists.digium.com
   http://lists.digium.com/mailman/listinfo/asterisk-users
   To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
  ___
  --Bandwidth and Colocation sponsored by Easynews.com
  http://Easynews.com--
 
  Asterisk-Users mailing list
  Asterisk-Users@lists.digium.com
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
 
 
  --
  Tom Vile
  Baldwin Technology Solutions, Inc
  Consulting - Web Design - VoIP Telephony
  www.baldwintechsolutions.com http://www.baldwintechsolutions.com
  Phone: 518-631-2855 x205
  Phone: 845-652-4578 x205
  Phone: 978-203-3848 x205
  Fax: 518-631-2856
  ___
  --Bandwidth and Colocation sponsored by Easynews.com --
 
  Asterisk-Users mailing list
  Asterisk-Users@lists.digium.com
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
 ___
 --Bandwidth and Colocation sponsored by Easynews.com --
 
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
 

___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
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] DID setup from goiax.com

2005-10-19 Thread pbx
That did it... Thank you.

putting /goiax.com phone number after the register line caused it to not
register any more... and i would get error

server1.goiax.com/my goiax# could not be found.

anyways.. thanks for your help guys :)


 Replace
 [goiax]
 with
 [PHONENUMBER]

 username= don't work for users in IAX channel.

 On Wed, 2005-10-19 at 10:27 -0700, [EMAIL PROTECTED] wrote:
 That is What I stated in the email.. my GOIAX #. not the DID #.

 That is not the issue.

  for the incoming context put your goiax.com http://goiax.com phone
  number
  not the free DID number but the other one.
 
  On 10/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 
  Trixter:
 
  Thanks for the guide to setting this up:... I have tried the below
  configuration with my settings, and when I place /goiax-in after my
  register command, my register statement fails.
 
  If i remove it. I get a Rejected connect attempt from goiax's server
 IP,
  trying to reach 's@'
 
  I have put my GoIAX # in default, local, as the extension, and
 nothing.
 
  I dont know where to look next on why i'm getting the rejected
 connect
  attempt.
 
  Thanks..
 
  ./Ben
 
   On Wed, 2005-10-19 at 14:24 +0800, Ronald Wiplinger wrote:
   Can anybody post a step by step setup guide, please?
  
   Its like anything else once you have signed up ...
  
   in iax.conf
   register =
  PHONENUMBER:[EMAIL PROTECTED]/goiax-inhttp://PHONENUMBER:[EMAIL 
  PROTECTED]/goiax-in
  
   [goiax]
   type = peer
   host = server1.goiax.com http://server1.goiax.com
   context = default
   secret = PASSWORD
   allow = gsm
   ;allow = ulaw
   ;disallow = all
   notransfer = yes
   qualify = yes
   auth = md5
   username = PHONENUMBER
  
  
   replace PHONENUMBER with the 8782 number you were issued.
 Replace
   PASSWORD with your password from you account signup.
  
   Then in extensions.conf
   ; for outbound
   exten = _1NX,1,Dial(IAX2/[EMAIL PROTECTED]/${EXTEN},90,R)
   exten = _1NX,2,Busy
   exten = _1NX,102,Congestion
   exten = _1NX,202,playback(tt-weasels)
  
   ; for inbound
   exten = goiax-in,1,DO WHATEVER HERE
  
   asterisk -rx reload
  
   you should be set.
  
  
   --
   Trixter http://www.0xdecafbad.com Bret McDanel
   UK +44 870 340 4605 Germany +49 801 777 555 3402
   US +1 360 207 0479 or +1 516 687 5200
   FreeWorldDialup: 635378
   ___
   --Bandwidth and Colocation sponsored by
  Easynews.comhttp://Easynews.com--
  
   Asterisk-Users mailing list
   Asterisk-Users@lists.digium.com
   http://lists.digium.com/mailman/listinfo/asterisk-users
   To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
  ___
  --Bandwidth and Colocation sponsored by Easynews.com
  http://Easynews.com--
 
  Asterisk-Users mailing list
  Asterisk-Users@lists.digium.com
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
 
 
  --
  Tom Vile
  Baldwin Technology Solutions, Inc
  Consulting - Web Design - VoIP Telephony
  www.baldwintechsolutions.com http://www.baldwintechsolutions.com
  Phone: 518-631-2855 x205
  Phone: 845-652-4578 x205
  Phone: 978-203-3848 x205
  Fax: 518-631-2856
  ___
  --Bandwidth and Colocation sponsored by Easynews.com --
 
  Asterisk-Users mailing list
  Asterisk-Users@lists.digium.com
  http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
 http://lists.digium.com/mailman/listinfo/asterisk-users


 ___
 --Bandwidth and Colocation sponsored by Easynews.com --

 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users


 ___
 --Bandwidth and Colocation sponsored by Easynews.com --

 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users



___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
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] DID setup from goiax.com

2005-10-19 Thread trixter aka Bret McDanel
I dont know then that was cut and paste from what I have working ...

maybe actual log dumps of the error?

On Wed, 2005-10-19 at 10:27 -0700, [EMAIL PROTECTED] wrote:
 That is What I stated in the email.. my GOIAX #. not the DID #.
 
 That is not the issue.

-- 
Trixter http://www.0xdecafbad.com Bret McDanel
UK +44 870 340 4605   Germany +49 801 777 555 3402
US +1 360 207 0479 or +1 516 687 5200
FreeWorldDialup: 635378


signature.asc
Description: This is a digitally signed message part
___
--Bandwidth and Colocation sponsored by Easynews.com --

Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users