Hi Friends ,? I want to setup a IVR platform using asterisk to a mobile operator.? Can somebody give me some guides with?recommended?hardware?types ? Thank you Luke.? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130109/48e94eff/attachment.htm>
From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of luke devon Sent: Wednesday, January 09, 2013 9:06 AM To: asterisk-users at lists.digium.com Subject: [asterisk-users] IVR platform for a mobile operator Hi Friends , I want to setup a IVR platform using asterisk to a mobile operator. Can somebody give me some guides with recommended hardware types ? Thank you Luke. IMO you will be happiest with a SIP trunk handling this as there can be horrible latency in DAHDI/Mobile connections. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130109/74c1f9be/attachment.htm>
On Jan 9, 2013 8:38 PM, "Danny Nicholas" <danny at debsinc.com> wrote:> > From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of luke devon> Sent: Wednesday, January 09, 2013 9:06 AM > To: asterisk-users at lists.digium.com > Subject: [asterisk-users] IVR platform for a mobile operator > > > > Hi Friends , > > > > I want to setup a IVR platform using asterisk to a mobile operator. > > > > Can somebody give me some guides with recommended hardware types ? > > > > Thank you > > Luke. > > > > IMO you will be happiest with a SIP trunk handling this as there can behorrible latency in DAHDI/Mobile connections. Latency on DAHDI - heard this for first time !!!! TDM networks have zero latency we face latency only on IP (SIP) networks. Mitul Limbani -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130109/c9d8cb9a/attachment.htm>
From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Mitul Limbani Sent: Wednesday, January 09, 2013 9:53 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] IVR platform for a mobile operator On Jan 9, 2013 8:38 PM, "Danny Nicholas" <danny at debsinc.com> wrote:> > From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of luke devon > Sent: Wednesday, January 09, 2013 9:06 AM > To: asterisk-users at lists.digium.com > Subject: [asterisk-users] IVR platform for a mobile operator > > > > Hi Friends , > > > > I want to setup a IVR platform using asterisk to a mobile operator. > > > > Can somebody give me some guides with recommended hardware types ? > > > > Thank you > > Luke. > > > > IMO you will be happiest with a SIP trunk handling this as there can be horrible latency in DAHDI/Mobile connections.Latency on DAHDI - heard this for first time !!!! TDM networks have zero latency we face latency only on IP (SIP) networks. Mitul Limbani DAHDI in my reference should be construed as copper POTS, not PRI/T1 trunks. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130109/4d317c08/attachment.htm>
On Wednesday 09 January 2013, luke devon wrote:> Hi Friends , > > I want to setup a IVR platform using asterisk to a mobile operator. > > Can somebody give me some guides with recommended hardware types ?Well, IVR is created in your dialplan (extensions.conf). Unfortunately, without seeing anything resembling some kind of a plan for how you want your IVR to be, it's impossible to say anything concrete about how to achieve it. So the following is as much as anyone can really say about how to write a voice menu-driven app. "VPJB" is the Very Primitive Juke Box; so called because it has only 2 songs. They are /songs/track01.mp3 and /songs/track02.mp3. (You'll have to supply the music yourself). You will also need to create two more sound files (easiest way probably is to leave them as voicemail messages for yourself, then cp the relevant format files to /var/lib/asterisk/sounds/en/ -- assuming the sounds are in English. Replace "en" by your own language code, if not). "ajs_juke01" is "Press 1 to hear ___. Press 2 to hear ___. Press any other key to exit". "ajs_anykey" is "Press any key to stop the music and return to the menu". You start it by dialling 882. It's not really intended as an app in its own right (it gets boring very quickly), but rather as a demonstration of the essential features of writing a dialplan app. And once you understand it, it's actually fairly easy to extend. Just implement each menu "page" as a context modelled on [vpjb]. [default] ; ..... ; 882 = very primitive juke box exten => 882,1,Goto(vpjb,s,1) ; ..... ;;;;;;;;;;;;;;;;; VERY PRIMITIVE JUKE BOX CONTEXT ;;;;;;;;;;;;;;;;; [vpjb] exten => s,1,Background(ajs_juke01) exten => s,n,WaitExten(1) exten => s,n,Goto(1) exten => i,1,Hangup() exten => 1,1,Background(ajs_anykey) exten => 1,n,MP3Player(/songs/track01.mp3) exten => 1,n,Goto(vpjb,s,1) exten => 2,1,Background(ajs_anykey) exten => 2,n,MP3Player(/songs/track02.mp3) exten => 2,n,Goto(vpjb,s,1) exten => _X,1,Hangup() -- AJS Answers come *after* questions.
<html><body><span style="font-family:Verdana; color:#000000; font-size:10pt;"><div><br></div><div>What in the world "Asterisk to a mobile operator" means? you mean you are are using a gsm gateway? what interface are you using?... not that I intent to answer your question, but you should be clear and specific if you expect someone to give you a pointer.<br></div><div><br></div><div>Christian Savinovich</div><div><strong><em>VoIP & Telephony Consultant</em></strong></div><div>646-982-3572</div><div> </div><div><br><br></div> <blockquote id="replyBlockquote" webmail="1" style="border-left: 2px solid blue; margin-left: 8px; padding-left: 8px; font-size:10pt; color:black; font-family:verdana;"> <div id="wmQuoteWrapper"> -------- Original Message --------<br> Subject: Re: [asterisk-users] IVR platform for a mobile operator<br> From: "Danny Nicholas" <<a href="mailto:danny@debsinc.com">danny@debsinc.com</a>><br> Date: Wed, January 09, 2013 10:07 am<br> To: "'luke devon'" <<a href="mailto:luke_devon@yahoo.com">luke_devon@yahoo.com</a>>, "'Asterisk Users Mailing<br> List - Non-Commercial Discussion'" <<a href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</a>><br> <br> <style> #wmQuoteWrapper /* Font Definitions */ @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4;} #wmQuoteWrapper @font-face {font-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;} #wmQuoteWrapper /* Style Definitions */ p.MsoNormal, #wmQuoteWrapper li.MsoNormal, #wmQuoteWrapper div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman","serif";} #wmQuoteWrapper a:link, #wmQuoteWrapper span.MsoHyperlink {mso-style-priority:99; color:blue; text-decoration:underline;} #wmQuoteWrapper a:visited, #wmQuoteWrapper span.MsoHyperlinkFollowed {mso-style-priority:99; color:purple; text-decoration:underline;} #wmQuoteWrapper span.EmailStyle17 {mso-style-type:personal-reply; font-family:"Calibri","sans-serif"; color:#1F497D;} #wmQuoteWrapper .MsoChpDefault {mso-style-type:export-only; font-size:10.0pt;} #wmQuoteWrapper @page WordSection1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in;} #wmQuoteWrapper div.WordSection1 {page:WordSection1;} </style><div class="WordSection1"><div class="MsoNormal" style="font-size:12pt;"><b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif"">From:</span></b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif""> <a href="mailto:asterisk-users-bounces@lists.digium.com">asterisk-users-bounces@lists.digium.com</a> [<a href="mailto:asterisk-users-bounces@lists.digium.com">mailto:asterisk-users-bounces@lists.digium.com</a>] <b>On Behalf Of </b>luke devon<br><b>Sent:</b> Wednesday, January 09, 2013 9:06 AM<br><b>To:</b> <a href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</a><br><b>Subject:</b> [asterisk-users] IVR platform for a mobile operator<o:p></o:p></span></div><div class="MsoNormal" style="font-size:12pt;"><o:p> </o:p></div><div><div><div class="MsoNormal" style="font-size:12pt;background:white"><span style="font-size:10.0pt;font-family:"Courier New";color:black">Hi Friends , <o:p></o:p></span></div></div><div><div class="MsoNormal" style="font-size:12pt;background:white"><span style="font-size:10.0pt;font-family:"Courier New";color:black"><o:p> </o:p></span></div></div><div><div class="MsoNormal" style="font-size:12pt;"><span style="font-size:10.0pt;font-family:"Courier New";color:black">I want to setup a IVR platform using asterisk to a mobile operator. <o:p></o:p></span></div></div><div><div class="MsoNormal" style="font-size:12pt;"><span style="font-size:10.0pt;font-family:"Courier New";color:black"><o:p> </o:p></span></div></div><div><div class="MsoNormal" style="font-size:12pt;"><span style="font-size:10.0pt;font-family:"Courier New";color:black">Can somebody give me some guides with recommended hardware types ?<o:p></o:p></span></div></div><div><div class="MsoNormal" style="font-size:12pt;"><span style="font-size:10.0pt;font-family:"Courier New";color:black"><o:p> </o:p></span></div></div><div><div class="MsoNormal" style="font-size:12pt;"><span style="font-size:10.0pt;font-family:"Courier New";color:black">Thank you<o:p></o:p></span></div></div><div><div class="MsoNormal" style="font-size:12pt;"><span style="font-size:10.0pt;font-family:"Courier New";color:black">Luke. <o:p></o:p></span></div><div class="MsoNormal" style="font-size:12pt;"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></div><div class="MsoNormal" style="font-size:12pt;"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D">IMO you will be happiest with a SIP trunk handling this as there can be horrible latency in DAHDI/Mobile connections.<o:p></o:p></span></div></div></div></div><hr>--<br> _____________________________________________________________________<br> -- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com">http://www.api-digital.com</a> --<br> New to Asterisk? Join us for a live introductory webinar every Thurs:<br> <a href="http://www.asterisk.org/hello">http://www.asterisk.org/hello</a><br> <br> asterisk-users mailing list<br> To UNSUBSCRIBE or update options visit:<br> <a href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a> </div> </blockquote></span></body></html>
<html><body><span style="font-family:Verdana; color:#000000; font-size:10pt;"><div><br></div><div>>>>I think that the mobile operator as any other company receives calls by pots lines as T1 E1...<br> ina ny way if he will receive calls through a gsm gateway the gateway itself must connect to pbx in a standard way probabilly voip<br> the hardware will be a server an the interface ..<br> </div><div><br></div><div>Thanks Adriano, but if that is the case, then it is just an IVR like any other IVR. It doesn't make any difference for us to know the business goal. I was just trying to figure out all ulterior motives the poster might have to use the term "mobile operator".<br></div><div><br></div><div>Christian Savinovich</div><div><strong><em>VoIP & Telephony Consultant</em></strong></div><div>646-982-3572</div><div> </div><div><br><br></div> <blockquote id="replyBlockquote" webmail="1" style="border-left: 2px solid blue; margin-left: 8px; padding-left: 8px; font-size:10pt; color:black; font-family:verdana;"> <div id="wmQuoteWrapper"> -------- Original Message --------<br> Subject: Re: [asterisk-users] IVR platform for a mobile operator<br> From: adriano <<a href="mailto:adriano.ghezzi@gmail.com">adriano.ghezzi@gmail.com</a>><br> Date: Wed, January 09, 2013 3:52 pm<br> To: Asterisk Users Mailing List - Non-Commercial Discussion<br> <<a href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</a>><br> <br> <div class="moz-cite-prefix">I think that the mobile operator as any other company receives calls by pots lines as T1 E1...<br> ina ny way if he will receive calls through a gsm gateway the gateway itself must connect to pbx in a standard way probabilly voip<br> <br> the hardware will be a server an the interface ..<br> hth<br> Adriano<br> <br> <br> Il 09/01/2013 18:38, C. Savinovich ha scritto:<br> </div> <blockquote cite="mid:20130109103815.c58d8914d3535b8829d666a3618b837e.68e8a73924.wbe@email18.secureserver.net" type="cite"><span style="font-family:Verdana; color:#000000; font-size:10pt;"> <div><br> </div> <div>What in the world "Asterisk to a mobile operator" means? you mean you are are using a gsm gateway? what interface are you using?... not that I intent to answer your question, but you should be clear and specific if you expect someone to give you a pointer.<br> </div> <div><br> </div> <div>Christian Savinovich</div> <div><strong><em>VoIP & Telephony Consultant</em></strong></div> <div>646-982-3572</div> <div> </div> <div><br> <br> </div> <blockquote id="replyBlockquote" webmail="1" style="border-left: 2px solid blue; margin-left: 8px; padding-left: 8px; font-size:10pt; color:black; font-family:verdana;"> <div id="wmQuoteWrapper"> -------- Original Message --------<br> Subject: Re: [asterisk-users] IVR platform for a mobile operator<br> From: "Danny Nicholas" <<a target="_blank" moz-do-not-send="true" href="mailto:danny@debsinc.com">danny@debsinc.com</a>><br> Date: Wed, January 09, 2013 10:07 am<br> To: "'luke devon'" <<a target="_blank" moz-do-not-send="true" href="mailto:luke_devon@yahoo.com">luke_devon@yahoo.com</a>>, "'Asterisk Users Mailing<br> List - Non-Commercial Discussion'" <<a target="_blank" moz-do-not-send="true" href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</a>><br> <br> <style> #wmQuoteWrapper #wmQuoteWrapper /* Font Definitions */ @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4;} #wmQuoteWrapper #wmQuoteWrapper @font-face {font-family:Tahoma; panose-1:2 11 6 4 3 5 4 4 2 4;} #wmQuoteWrapper #wmQuoteWrapper /* Style Definitions */ p.MsoNormal, #wmQuoteWrapper #wmQuoteWrapper li.MsoNormal, #wmQuoteWrapper #wmQuoteWrapper div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman","serif";} #wmQuoteWrapper #wmQuoteWrapper a:link, #wmQuoteWrapper #wmQuoteWrapper span.MsoHyperlink {mso-style-priority:99; color:blue; text-decoration:underline;} #wmQuoteWrapper #wmQuoteWrapper a:visited, #wmQuoteWrapper #wmQuoteWrapper span.MsoHyperlinkFollowed {mso-style-priority:99; color:purple; text-decoration:underline;} #wmQuoteWrapper #wmQuoteWrapper span.EmailStyle17 {mso-style-type:personal-reply; font-family:"Calibri","sans-serif"; color:#1F497D;} #wmQuoteWrapper #wmQuoteWrapper .MsoChpDefault {mso-style-type:export-only; font-size:10.0pt;} #wmQuoteWrapper #wmQuoteWrapper @page WordSection1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in;} #wmQuoteWrapper #wmQuoteWrapper div.WordSection1 {page:WordSection1;} </style> <div class="WordSection1"> <div class="MsoNormal" style="font-size:12pt;;"><b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif"">From:</span></b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif""> <a target="_blank" moz-do-not-send="true" href="mailto:asterisk-users-bounces@lists.digium.com">asterisk-users-bounces@lists.digium.com</a> [<a target="_blank" moz-do-not-send="true" href="mailto:asterisk-users-bounces@lists.digium.com">mailto:asterisk-users-bounces@lists.digium.com</a>] <b>On Behalf Of </b>luke devon<br> <b>Sent:</b> Wednesday, January 09, 2013 9:06 AM<br> <b>To:</b> <a target="_blank" moz-do-not-send="true" href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</a><br> <b>Subject:</b> [asterisk-users] IVR platform for a mobile operator<o:p></o:p></span></div> <div class="MsoNormal" style="font-size:12pt;;"><o:p> </o:p></div> <div> <div> <div class="MsoNormal" style="font-size:12pt;;background:white"><span style="font-size:10.0pt;font-family:"Courier New";color:black">Hi Friends , <o:p></o:p></span></div> </div> <div> <div class="MsoNormal" style="font-size:12pt;;background:white"><span style="font-size:10.0pt;font-family:"Courier New";color:black"><o:p> </o:p></span></div> </div> <div> <div class="MsoNormal" style="font-size:12pt;;"><span style="font-size:10.0pt;font-family:"Courier New";color:black">I want to setup a IVR platform using asterisk to a mobile operator. <o:p></o:p></span></div> </div> <div> <div class="MsoNormal" style="font-size:12pt;;"><span style="font-size:10.0pt;font-family:"Courier New";color:black"><o:p> </o:p></span></div> </div> <div> <div class="MsoNormal" style="font-size:12pt;;"><span style="font-size:10.0pt;font-family:"Courier New";color:black">Can somebody give me some guides with recommended hardware types ?<o:p></o:p></span></div> </div> <div> <div class="MsoNormal" style="font-size:12pt;;"><span style="font-size:10.0pt;font-family:"Courier New";color:black"><o:p> </o:p></span></div> </div> <div> <div class="MsoNormal" style="font-size:12pt;;"><span style="font-size:10.0pt;font-family:"Courier New";color:black">Thank you<o:p></o:p></span></div> </div> <div> <div class="MsoNormal" style="font-size:12pt;;"><span style="font-size:10.0pt;font-family:"Courier New";color:black">Luke. <o:p></o:p></span></div> <div class="MsoNormal" style="font-size:12pt;;"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></div> <div class="MsoNormal" style="font-size:12pt;;"><span style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D">IMO you will be happiest with a SIP trunk handling this as there can be horrible latency in DAHDI/Mobile connections.<o:p></o:p></span></div> </div> </div> </div> <hr>--<br> _____________________________________________________________________<br> -- Bandwidth and Colocation Provided by <a target="_blank" moz-do-not-send="true" href="http://www.api-digital.com">http://www.api-digital.com</a> --<br> New to Asterisk? Join us for a live introductory webinar every Thurs:<br> <a target="_blank" moz-do-not-send="true" href="http://www.asterisk.org/hello">http://www.asterisk.org/hello</a><br> <br> asterisk-users mailing list<br> To UNSUBSCRIBE or update options visit:<br> <a target="_blank" moz-do-not-send="true" href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a> </div> </blockquote> </span> <br> <fieldset class="mimeAttachmentHeader"></fieldset> <br> <pre wrap="">-- _____________________________________________________________________ -- Bandwidth and Colocation Provided by <a target="_blank" class="moz-txt-link-freetext" href="http://www.api-digital.com">http://www.api-digital.com</a> -- New to Asterisk? Join us for a live introductory webinar every Thurs: <a target="_blank" class="moz-txt-link-freetext" href="http://www.asterisk.org/hello">http://www.asterisk.org/hello</a> asterisk-users mailing list To UNSUBSCRIBE or update options visit: <a target="_blank" class="moz-txt-link-freetext" href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br mce_bogus="1"></pre> </blockquote> <br> <hr>--<br> _____________________________________________________________________<br> -- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com">http://www.api-digital.com</a> --<br> New to Asterisk? Join us for a live introductory webinar every Thurs:<br> <a href="http://www.asterisk.org/hello">http://www.asterisk.org/hello</a><br> <br> asterisk-users mailing list<br> To UNSUBSCRIBE or update options visit:<br> <a href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</a> </div> </blockquote></span></body></html>