Re: [Asterisk-Users] Remote dialtone

2006-03-23 Thread Dinesh Nair



On 03/22/06 21:55 Jason Bachman said the following:

Karlos,
Sounds like you want ignorepat = 2 (or 3) in the context that holds the 
dial patterns.  This will continue the dialtone after you dial 2 or 3 in 
your dialplan.

IE:
[system-2]
ignorepat = 3
exten = _3XX,s,1,Dial(IAX2/system-2/${EXTEN})


ignorepat wont work for SIP or IAX2 phones however since they send the 
entire called number as a single SIP/IAX2 packet.


--
Regards,   /\_/\   All dogs go to heaven.
[EMAIL PROTECTED](0 0)http://www.alphaque.com/
+==oOO--(_)--OOo==+
| for a in past present future; do|
|   for b in clients employers associates relatives neighbours pets; do   |
|   echo The opinions here in no way reflect the opinions of my $a $b.  |
| done; done  |
+=+
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] Remote dialtone

2006-03-22 Thread Karlos

Hi,

I have two asterisks connected via IAX2 trunk. The first * use dial 
prefix 2XX, the second one 3XX.

Calls routing works OK.
But I don't know how to get dialtone of remote asterisk pbx.
I'd like to get dialtone of asterisk #2 after dialing 3 and dialtone of 
asterisk #1 after dialing 2.


I know something about DISA but I'm not sure if it is a right way.
Can you give me advice?

Thanks.

Karlos.

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

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


Re: [Asterisk-Users] Remote dialtone

2006-03-22 Thread Doug Lytle

Karlos wrote:

Hi,

I have two asterisks connected via IAX2 trunk. The first * use dial 
prefix 2XX, the second one 3XX.

Calls routing works OK.
But I don't know how to get dialtone of remote asterisk pbx.
I'd like to get dialtone of asterisk #2 after dialing 3 and dialtone 
of asterisk #1 after dialing 2.




Use _9. for the local Asterisk and _8. for the remote.  This is what I have:

exten = _8.,1,Set(CALLERID(number)=5551212
exten = _8.,2,Dial(IAX2/cw.asterisk:[EMAIL PROTECTED]/${EXTEN})
exten = _8,3,Hangup()

exten = _9.,1,Set(CALLERID(number)=555
exten = _9.,2,Dial(ZAP/g1/9${EXTEN:1})
exten = _9.,3,Hangup()

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

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


Re: [Asterisk-Users] Remote dialtone

2006-03-22 Thread Jason Bachman




Karlos,
Sounds like you want ignorepat = 2 (or 3) in the context that holds
the dial patterns. This will continue the dialtone after you dial 2 or
3 in your dialplan. 
IE:
[system-2]
ignorepat = 3
exten = _3XX,s,1,Dial(IAX2/system-2/${EXTEN})

Jason

Karlos wrote:
Hi,
  
  
I have two asterisks connected via IAX2 trunk. The first * use dial
prefix 2XX, the second one 3XX.
  
Calls routing works OK.
  
But I don't know how to get dialtone of remote asterisk pbx.
  
I'd like to get dialtone of asterisk #2 after dialing 3 and dialtone of
asterisk #1 after dialing 2.
  
  
I know something about DISA but I'm not sure if it is a right way.
  
Can you give me advice?
  
  
Thanks.
  
  
Karlos.
  
  
___
  
--Bandwidth and Colocation provided by Easynews.com --
  
  
Asterisk-Users mailing list
  
To UNSUBSCRIBE or update options visit:
  
 http://lists.digium.com/mailman/listinfo/asterisk-users
  



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

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


Re: [Asterisk-Users] Remote dialtone

2006-03-22 Thread Karlos




The ignorepat statement allows me hear dialtone of my pbx, not remote; 
I'd like to dial some number (for example 5) and get dialtone of
remote asterisk.
I think the only way is to use DISA or?

Karlos.


Jason Bachman wrote:

  
  Karlos,
Sounds like you want ignorepat = 2 (or 3) in the context that holds
the dial patterns. This will continue the dialtone after you dial 2 or
3 in your dialplan. 
IE:
[system-2]
ignorepat = 3
exten = _3XX,s,1,Dial(IAX2/system-2/${EXTEN})
  
Jason
  
Karlos wrote:
  Hi, 

I have two asterisks connected via IAX2 trunk. The first * use dial
prefix 2XX, the second one 3XX. 
Calls routing works OK. 
But I don't know how to get dialtone of remote asterisk pbx. 
I'd like to get dialtone of asterisk #2 after dialing 3 and dialtone of
asterisk #1 after dialing 2. 

I know something about DISA but I'm not sure if it is a right way. 
Can you give me advice? 

Thanks. 

Karlos. 

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

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

  
  

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

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




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

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


Re: [Asterisk-Users] Remote dialtone

2006-03-22 Thread Karlos

The ignorepat statement allows me hear dialtone of my pbx, not remote;
I'd like to dial some number (for example 5) and get dialtone of remote  
asterisk.

I think the only way is to use DISA or ?

Karlos.


Jason Bachman wrote:


Karlos,
Sounds like you want ignorepat = 2 (or 3) in the context that holds 
the dial patterns.  This will continue the dialtone after you dial 2 
or 3 in your dialplan.

IE:
[system-2]
ignorepat = 3
exten = _3XX,s,1,Dial(IAX2/system-2/${EXTEN})

Jason

Karlos wrote:


Hi,

I have two asterisks connected via IAX2 trunk. The first * use dial 
prefix 2XX, the second one 3XX.

Calls routing works OK.
But I don't know how to get dialtone of remote asterisk pbx.
I'd like to get dialtone of asterisk #2 after dialing 3 and dialtone 
of asterisk #1 after dialing 2.


I know something about DISA but I'm not sure if it is a right way.
Can you give me advice?

Thanks.

Karlos.

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

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




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

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




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

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


Re: [Asterisk-Users] Remote dialtone

2006-03-22 Thread Don Pobanz

Karlos wrote:

The ignorepat statement allows me hear dialtone of my pbx, not remote;
I'd like to dial some number (for example 5) and get dialtone of remote  
asterisk.

I think the only way is to use DISA or ?



yes, DISA would be the way to go. Use something like
exten = 5,1,Dial(IAX2/iax_NDSXS1-NDSXS2/)
where  is your disa extension of your other * system.

Don Pobanz

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

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