[asterisk-users] One extension to ring on multiple outside lines

2006-07-28 Thread Dave Morrow



I have a need to 
have a single extension actually ring on 2 phone lines which are not extensions 
(they are analog phone lines). Does anyone know a suitable extensions.conf 
config for this?


David Morrow
Technical Systems Lead
Autodata Solutions Company
[EMAIL PROTECTED]
http://www.autodatasolutions.com

Tel: (519) 963-3020
Fax: (519) 451-6615

 Lead, follow or get out of the 
way! 


This message has originated from Autodata Solutions. The attached material is 
the Confidential and Proprietary Information of Autodata Solutions. This email 
and any files transmitted with it are confidential and intended solely for the 
use of the individual or entity to whom they are addressed. If you have received 
this email in error please delete this message and notify the Autodata system 
administrator at [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]


___
--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] One extension to ring on multiple outside lines

2006-07-28 Thread Joshua Colp
- Original Message -
From: Dave Morrow
[mailto:[EMAIL PROTECTED]
To: Asterisk Users Mailing List -
Non-Commercial Discussion [mailto:[EMAIL PROTECTED]
Sent:
Fri, 28 Jul 2006 11:34:37 -0300
Subject: [asterisk-users] One extension to
ring on multiple outside lines

 I have a need to have a single extension actually ring on 2 phone lines
 which are not extensions (they are analog phone lines).  Does anyone
 know a suitable extensions.conf config for this?

Sure!

exten = 145,1,Dial(Zap/1Zap/2)

That line would dial both Zap/1 and Zap/2 whenever someone called 145. The 
first one to answer gets the call. Is that what you were looking for?
 
 David Morrow
 Technical Systems Lead
 Autodata Solutions Company
 [EMAIL PROTECTED]
 http://www.autodatasolutions.com http://www.autodatasolutions.com/ 
  
 Tel: (519) 963-3020
 Fax: (519) 451-6615
  
  Lead, follow or get out of the way! 
  

Joshua Colp
Digium
___
--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] One extension to ring on multiple outside lines

2006-07-28 Thread Dave Morrow
Yes, to some extent it is what I want, but I want it to dial outside
lines (ie. 800-555-1212 and 800-666-3434) insteand of a Zap channel. 


David Morrow
Technical Systems Lead
Autodata Solutions Company
[EMAIL PROTECTED]
http://www.autodatasolutions.com
 
Tel: (519) 963-3020
Fax: (519) 451-6615
 
 Lead, follow or get out of the way! 
 
This message has originated from Autodata Solutions. The attached
material is the Confidential and Proprietary Information of Autodata
Solutions. This email and any files transmitted with it are confidential
and intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please delete
this message and notify the Autodata system administrator at
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Joshua
Colp
Sent: Friday, July 28, 2006 6:46 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] One extension to ring on multiple outside
lines

- Original Message -
From: Dave Morrow
[mailto:[EMAIL PROTECTED]
To: Asterisk Users Mailing List -
Non-Commercial Discussion [mailto:[EMAIL PROTECTED]
Sent:
Fri, 28 Jul 2006 11:34:37 -0300
Subject: [asterisk-users] One extension to ring on multiple outside
lines

 I have a need to have a single extension actually ring on 2 phone 
 lines which are not extensions (they are analog phone lines).  Does 
 anyone know a suitable extensions.conf config for this?

Sure!

exten = 145,1,Dial(Zap/1Zap/2)

That line would dial both Zap/1 and Zap/2 whenever someone called 145.
The first one to answer gets the call. Is that what you were looking
for?
 
 David Morrow
 Technical Systems Lead
 Autodata Solutions Company
 [EMAIL PROTECTED]
 http://www.autodatasolutions.com http://www.autodatasolutions.com/
  
 Tel: (519) 963-3020
 Fax: (519) 451-6615
  
  Lead, follow or get out of the way! 
  

Joshua Colp
Digium
___
--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] One extension to ring on multiple outside lines

2006-07-28 Thread Jeremy McNamara

Dave Morrow wrote:

Yes, to some extent it is what I want, but I want it to dial outside
lines (ie. 800-555-1212 and 800-666-3434) insteand of a Zap channel. 



Then

exten = 145,1,Dial(Zap/g1/18005551212IAX2/[EMAIL PROTECTED]/18006663434)

Where g1 is defined in zapata.conf to go to a PRI or FXO line(s) and
'Provider' is properly defined in iax.conf to talk to your provider.



Jeremy McNamara




___
--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] One extension to ring on multiple outside lines

2006-07-28 Thread Joshua Colp
- Original Message -
From: Dave Morrow
[mailto:[EMAIL PROTECTED]
To: Asterisk Users Mailing List -
Non-Commercial Discussion [mailto:[EMAIL PROTECTED]
Sent:
Fri, 28 Jul 2006 11:48:48 -0300
Subject: RE: [asterisk-users] One extension
to ring on multiple outside lines


 Yes, to some extent it is what I want, but I want it to dial outside
 lines (ie. 800-555-1212 and 800-666-3434) insteand of a Zap channel. 

That depends on how you call outside numbers regularly, I don't know how your 
system is setup. Provided you are using a technology that provides call 
progress (PRIs/VoIP Providers)  then you can do like so:

Dial(SIP/[EMAIL PROTECTED]SIP/18006663434)
Dial(Zap/g1/18005551212Zap/g1/18006663434)

If you are using something like analog then it's more difficult because under 
normal circumstances Asterisk can't do call progress on analog so it 
immediately considers it answered (provided you are using a zaptel analog card).
 
 
 David Morrow
 Technical Systems Lead
 Autodata Solutions Company
 [EMAIL PROTECTED]
 http://www.autodatasolutions.com
  
 Tel: (519) 963-3020
 Fax: (519) 451-6615
  

Joshua Colp
Digium
___
--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] One extension to ring on multiple outside lines

2006-07-28 Thread Don Pobanz

Dave Morrow wrote:
I have a need to have a single extension actually ring on 2 phone 
lines which are not extensions (they are analog phone lines).  



exten = 145,1,Dial(Zap/1Zap/2)

That line would dial both Zap/1 and Zap/2 whenever someone called 145.
The first one to answer gets the call. Is that what you were looking
for?
 

 Yes, to some extent it is what I want, but I want it to dial outside
 lines (ie. 800-555-1212 and 800-666-3434) insteand of a Zap channel.


Joshua Colp gave you the general idea of what you needed. Just expand it 
like you would for any other outgoing call using '' between each line 
or phone you want to dial. Something like:

exten = 145,1,Dial(Zap/g1/18005551212Zap/g1/18006663434)

see the wiki for details:
http://www.voip-info.org/wiki/view/Asterisk+cmd+Dial

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