[Asterisk-Users] International calling forbidden?

2003-12-18 Thread Michael Graves
Please forgive me if the answer is obvious, but my new Asterisk server
gives back a forbidden message when I try to call my UK office. It
should go out simply via X100p and PTSN. Here's the relevant lines from
extensions.conf.

[outbound-analog-int'l]
; allowed to call interntional long distance numbers via PSTN
; dial 8 to signify overseas calling
exten = _8011,1,Dial(${PSTNOUTBOUND/${EXTEN},70)
exten = _8011,2,Macro(fastbusy)

The number I'm calling is 011 44 1223 721 000. What am I doing wrong?

Thanks,
Michael
--
Michael Graves   [EMAIL PROTECTED]
Sr. Product Specialist  www.pixelpower.com
Pixel Power Inc.  [EMAIL PROTECTED]
 FWD 54245

Can't you see it all makes perfect sense, expressed in dollars and cents,
pounds, shillings and pence - Roger Waters
 
** Tag(s) inserted by Bandit Tagger98 - http://www.gbar.dtu.dk/~c918704


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] International calling forbidden?

2003-12-18 Thread Andrew Thompson
- Original Message -
From: Michael Graves [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, December 18, 2003 11:06 AM
Subject: [Asterisk-Users] International calling forbidden?


 Please forgive me if the answer is obvious, but my new Asterisk server
 gives back a forbidden message when I try to call my UK office. It
 should go out simply via X100p and PTSN. Here's the relevant lines from
 extensions.conf.

 [outbound-analog-int'l]
 ; allowed to call interntional long distance numbers via PSTN
 ; dial 8 to signify overseas calling
 exten = _8011,1,Dial(${PSTNOUTBOUND/${EXTEN},70)
 exten = _8011,2,Macro(fastbusy)

 The number I'm calling is 011 44 1223 721 000. What am I doing wrong?


Are you doing ignorepat somewhere?
If not, you'll need to chop off the 8 at the beginning.

Also, since I'm not sure...

Does * pick up the line and dial, then fail? Or does it fail before it picks
up the line?

Do you have X100 -- PSTN working for non-UK calls? If so, try your entry
into the other context and see if it fails there as well. (Maybe something
leading up to this particular choice is hosed?

-
Andrew Thompson http://aktzero.com/
Your eyes are weary from staring at the CRT. You feel sleepy. Notice how
restful it is to watch the cursor blink. Close your eyes. The opinions
stated above are yours. You cannot imagine why you ever felt otherwise.



___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] International calling forbidden?

2003-12-18 Thread Michael Graves

Duh,

I finally go it! Missing } afterter PSTNOUTBOUND.

Michael

On Thu, 18 Dec 2003 10:06:23 -0600, Michael Graves wrote:

Please forgive me if the answer is obvious, but my new Asterisk server
gives back a forbidden message when I try to call my UK office. It
should go out simply via X100p and PTSN. Here's the relevant lines from
extensions.conf.

[outbound-analog-int'l]
; allowed to call interntional long distance numbers via PSTN
; dial 8 to signify overseas calling
exten = _8011,1,Dial(${PSTNOUTBOUND/${EXTEN},70)
exten = _8011,2,Macro(fastbusy)

The number I'm calling is 011 44 1223 721 000. What am I doing wrong?

Thanks,
Michael
--
Michael Graves   [EMAIL PROTECTED]
Sr. Product Specialist  www.pixelpower.com
Pixel Power Inc.  [EMAIL PROTECTED]
 FWD 54245

Can't you see it all makes perfect sense, expressed in dollars and cents,
pounds, shillings and pence - Roger Waters
 
** Tag(s) inserted by Bandit Tagger98 - http://www.gbar.dtu.dk/~c918704


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users

--
Michael Graves   [EMAIL PROTECTED]
Sr. Product Specialist  www.pixelpower.com
Pixel Power Inc.  [EMAIL PROTECTED]
 FWD 54245

I used to be snow white, but I drifted - Mae West  
 
** Tag(s) inserted by Bandit Tagger98 - http://www.gbar.dtu.dk/~c918704


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] International calling forbidden?

2003-12-18 Thread Nicolas Gudino
Hello,

On Thu, 2003-12-18 at 13:06, Michael Graves wrote:
 [outbound-analog-int'l]
 ; allowed to call interntional long distance numbers via PSTN
 ; dial 8 to signify overseas calling
 exten = _8011,1,Dial(${PSTNOUTBOUND/${EXTEN},70)
 exten = _8011,2,Macro(fastbusy)
 The number I'm calling is 011 44 1223 721 000. What am I doing wrong?

The number you are calling (011 44 xxx) does not match the dialplan. You
have to remove the 8:

exten = _011,1,Dial(${PSTNOUTBOUND/${EXTEN},70)
exten = _011,2,Macro(fastbusy)

If you want to 8 signify overseas, as the comentary line says, 
you should dial 8 before 011, and remove one digit from the extension,
in order to not send that 8 to the PSTN.

exten = _8011,1,Dial(${PSTNOUTBOUND/${EXTEN:1},70)
exten = _8011,2,Macro(fastbusy)

All of this will work if you are including this context in
the proper place. Best regards,

-- 
Nicolas Gudino [EMAIL PROTECTED]
House Internet S.R.L.

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users