Hi All, I was wondering what the status of distinctive ring support in Asterisk is? I had a google search & read and Mark Spencer wrote some support for it. Is distinctive ring different in every country or is it pretty standard? And for my final question, does the Wildcard FXO card support distinctive ring? Essentially what I'm trying to do is route incoming calls with ring #1 to, say, 2 SIP clients and incoming calls with ring #2 to 1 SIP client, but somehow label incoming calls so the SIP client knows whether the call was for ring #1 or ring #2. Thanks in advance. Regards, Gonzalo
I do not know the answer for #1, but for #2, I highly doubt it. What you could do is add something to the callerid to distinguish the calls.> -----Original Message----- > From: asterisk-users-admin@lists.digium.com [mailto:asterisk-users- > admin@lists.digium.com] On Behalf Of Gonzalo Servat > Sent: Sunday, November 16, 2003 11:57 PM > To: asterisk-users@lists.digium.com > Subject: [Asterisk-Users] Distinctive Ring > > Hi All, > > I was wondering what the status of distinctive ring support inAsterisk> is? I had a google search & read and Mark Spencer wrote some supportfor> it. > > Is distinctive ring different in every country or is it prettystandard?> > And for my final question, does the Wildcard FXO card support > distinctive ring? > > Essentially what I'm trying to do is route incoming calls with ring #1 > to, say, 2 SIP clients and incoming calls with ring #2 to 1 SIPclient,> but somehow label incoming calls so the SIP client knows whether the > call was for ring #1 or ring #2. > > Thanks in advance. > > Regards, > Gonzalo > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users
If I have a Wildcard X100P and Asterisk, it is possible to make it answer only the distinctive ring call of two short rings and ignore the regular incoming ring? Bill Lohr -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040911/2f415825/attachment.htm
Quoting asterisk-users-request@lists.digium.com:> If I have a Wildcard X100P and Asterisk, it is possible to make it > answer only the distinctive ring call of two short rings and ignore > the regular incoming ring? > > Bill LohrAbsolutely. [zapata.conf] dring1=0,0,0 dring1context=distring1 dring2=326,0,0 dring2context=distring2 dring3=93,0,0 dring3context=distring3 dring4=94,0,0 dring4context=distring4 channel => 1 [extensions.conf] [distring1] exten => s,1,NoOp(${CALLERID}) [distring2] exten => s,1,NoOp(${CALLERID}) [distring3] exten => s,1,NoOp(${CALLERID}) [distring4] exten => s,1,NoOp(${CALLERID}) Each context distring1-4 will be answered by the appropriate distinctive ring cadence. The NoOp command will log the CALLERID to the CDR database so you still have a record of it. Simply put your "real" extensions in the context that you want answered in place of the NoOp command. In zapata.conf you will need to change the dring"x" line to be the three digit code that shows in your console when that ring cadence arrives. So you need to call the system with that number and record the values you get on the console, then put them in zapata.conf as appropriate. Enjoy. dbc. -- David Cook ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program.
Guys. How do you configure asterisk to recognize distingtive ringing using x100p cards? Can this be done and how?
On Sun, May 08, 2005 at 12:15:09AM -0500, Anton Krall said:> How do you configure asterisk to recognize distingtive ringing using x100p > cards? Can this be done and how?Check the example in the zapata.conf file, and the wiki: http://www.voip-info.org/tiki-index.php?page=Asterisk%20config%20zapata.conf