<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Phone Home Revisited: Getting Remote Dialtone With Asterisk &#8212; Three Great Solutions	</title>
	<atom:link href="https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/feed/" rel="self" type="application/rss+xml" />
	<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/</link>
	<description>Ward Mundy&#039;s Technobabblelog</description>
	<lastBuildDate>Thu, 02 Jun 2011 14:22:22 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Steve Nutt		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-11964</link>

		<dc:creator><![CDATA[Steve Nutt]]></dc:creator>
		<pubDate>Sun, 08 Aug 2010 14:31:26 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-11964</guid>

					<description><![CDATA[The Ringy Dingy Thingy was just what I was looking for. This is an old post - I hope the feature is still available :-)]]></description>
			<content:encoded><![CDATA[<p>The Ringy Dingy Thingy was just what I was looking for. This is an old post &#8211; I hope the feature is still available 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Luke		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2952</link>

		<dc:creator><![CDATA[Luke]]></dc:creator>
		<pubDate>Fri, 02 Nov 2007 12:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2952</guid>

					<description><![CDATA[My current config is:

[disa]
include =&gt; disa-custom
exten =&gt; 1,1,Set(TIMEOUT(digit)=5)
exten =&gt; 1,n,Set(TIMEOUT(response)=10)
exten =&gt; 1,n,Wait(1)
exten =&gt; 1,n,Playback(enter-password)
exten =&gt; 1,n,DISA(/etc/asterisk/disa-1.conf)
exten =&gt; 1,n(end),Hangup

which is standard freepbx generated apart from the Wait line.. which I added so the start of enter-password.gsm isnt garbled]]></description>
			<content:encoded><![CDATA[<p>My current config is:</p>
<p>[disa]<br />
include => disa-custom<br />
exten => 1,1,Set(TIMEOUT(digit)=5)<br />
exten => 1,n,Set(TIMEOUT(response)=10)<br />
exten => 1,n,Wait(1)<br />
exten => 1,n,Playback(enter-password)<br />
exten => 1,n,DISA(/etc/asterisk/disa-1.conf)<br />
exten => 1,n(end),Hangup</p>
<p>which is standard freepbx generated apart from the Wait line.. which I added so the start of enter-password.gsm isnt garbled</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Luke		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2951</link>

		<dc:creator><![CDATA[Luke]]></dc:creator>
		<pubDate>Fri, 02 Nov 2007 10:47:38 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2951</guid>

					<description><![CDATA[Hi All,

I have a DISA setup and working, how would I go about adding a prefix to be automatıcly dialed before the number that the user enters... this so I can use seperate trunks for each DISA..

Thanks in advance...]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>I have a DISA setup and working, how would I go about adding a prefix to be automatıcly dialed before the number that the user enters&#8230; this so I can use seperate trunks for each DISA..</p>
<p>Thanks in advance&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: KieranMullen		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2644</link>

		<dc:creator><![CDATA[KieranMullen]]></dc:creator>
		<pubDate>Tue, 01 May 2007 03:36:29 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2644</guid>

					<description><![CDATA[Could you comment? 1)Why not use voicemail to manage passwords etc So multiple users can use the service ? exten =&gt; s,n,VMAuthenticate() 2) Do you have a script for a user supplied callback number?   CallerID is not always reliable if you are calling from different phones.

I was trying to put together something like this...

[custom-callback]
exten =&gt; s,1,Answer
exten =&gt; s,n,VMAuthenticate() ; Authenciate using the voicemail system, person enters their extension
exten =&gt; s,n,GotoIf($[&quot;${CALLERID(number)}&quot; = &quot;&quot;]?3) ; if no id, then skip annoucement
exten =&gt; s,n,Playback(your)
exten =&gt; s,n,Playback(number)
exten =&gt; s,n,Playback(is)
exten =&gt; s,n,SayDigits(${CALLERID(number)})
exten =&gt; s,n,Playback(if-this-is-not-correct)
exten =&gt; s,n,Playback(press-1)
exten =&gt; s,n,Set(CALLBACKNUM=${CALLERID(number)})
exten =&gt; s,n,Read(CALLBACKNUM,agent-user)       ; get callback number from user somehow???
exten =&gt; s,n,Wait(2)
exten =&gt; s,n,Hangup
exten =&gt; s,n,Dial(${CALLBACKNUM})
exten =&gt; s,n,Playback(pls-entr-num-uwish2-call)
exten =&gt; s,n,DISA,no-password&#124;from-internal

&lt;i&gt;[WM: Haven&#039;t tried this, but I think the last three lines need to begin with h (not s)  since they occur after the initial hangup.]&lt;/i&gt;
]]></description>
			<content:encoded><![CDATA[<p>Could you comment? 1)Why not use voicemail to manage passwords etc So multiple users can use the service ? exten => s,n,VMAuthenticate() 2) Do you have a script for a user supplied callback number?   CallerID is not always reliable if you are calling from different phones.</p>
<p>I was trying to put together something like this&#8230;</p>
<p>[custom-callback]<br />
exten => s,1,Answer<br />
exten => s,n,VMAuthenticate() ; Authenciate using the voicemail system, person enters their extension<br />
exten => s,n,GotoIf($["${CALLERID(number)}" = ""]?3) ; if no id, then skip annoucement<br />
exten => s,n,Playback(your)<br />
exten => s,n,Playback(number)<br />
exten => s,n,Playback(is)<br />
exten => s,n,SayDigits(${CALLERID(number)})<br />
exten => s,n,Playback(if-this-is-not-correct)<br />
exten => s,n,Playback(press-1)<br />
exten => s,n,Set(CALLBACKNUM=${CALLERID(number)})<br />
exten => s,n,Read(CALLBACKNUM,agent-user)       ; get callback number from user somehow???<br />
exten => s,n,Wait(2)<br />
exten => s,n,Hangup<br />
exten => s,n,Dial(${CALLBACKNUM})<br />
exten => s,n,Playback(pls-entr-num-uwish2-call)<br />
exten => s,n,DISA,no-password|from-internal</p>
<p><i>[WM: Haven&#8217;t tried this, but I think the last three lines need to begin with h (not s)  since they occur after the initial hangup.]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: robert		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2555</link>

		<dc:creator><![CDATA[robert]]></dc:creator>
		<pubDate>Wed, 14 Mar 2007 20:56:44 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2555</guid>

					<description><![CDATA[This script is great! If I need to make 4 calls I currently have to call the dedicated DID 4 times and wait 4 time to be called back. How can I program Asterisk not to hang-up the call but give me dialtone when the other party hangs-up?]]></description>
			<content:encoded><![CDATA[<p>This script is great! If I need to make 4 calls I currently have to call the dedicated DID 4 times and wait 4 time to be called back. How can I program Asterisk not to hang-up the call but give me dialtone when the other party hangs-up?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nate		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2410</link>

		<dc:creator><![CDATA[Nate]]></dc:creator>
		<pubDate>Thu, 25 Jan 2007 21:37:15 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2410</guid>

					<description><![CDATA[I&#039;ll do you one better...  Just stick a Goto(prepaid,s,1) in your dialplan..
Here is a dialback app I hacked up in a few minutes...
Enjoy.

&lt;a href=&quot;http://www.nkwell.com/callme/callme.pl&gt;callme.pl&lt;/a&gt;
&lt;a href=&quot;http://www.nkwell.com/callme/extensions.add&gt;extensions&lt;/a&gt;

Nate Kettlewell

p.s. I release this free of any responsibility that it may damage your system. And please include my name if you choose to repost it somewhere else.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll do you one better&#8230;  Just stick a Goto(prepaid,s,1) in your dialplan..<br />
Here is a dialback app I hacked up in a few minutes&#8230;<br />
Enjoy.</p>
<p><a href="http://www.nkwell.com/callme/callme.pl>callme.pl</a><br />
<a href="http://www.nkwell.com/callme/extensions.add>extensions</a></p>
<p>Nate Kettlewell</p>
<p>p.s. I release this free of any responsibility that it may damage your system. And please include my name if you choose to repost it somewhere else.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: James		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2244</link>

		<dc:creator><![CDATA[James]]></dc:creator>
		<pubDate>Tue, 05 Dec 2006 01:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2244</guid>

					<description><![CDATA[Hi Everyone i&#039;ve been playing with things for some days now, when i get the number i get the busy signal..but i can&#039;t get asterisk to call me back..i&#039;m using broadvoice...and i want asterisk to call me in a canada phone witch means long distance..and it needs to dial out using a 1 before the area code witch is 514 ex: 1514xxxxxxx so should i put a 1 before ${CALLERIDNUM} or where should i put it..
i&#039;m also using only one line to receive and place the call back..
thanks for your response]]></description>
			<content:encoded><![CDATA[<p>Hi Everyone i&#8217;ve been playing with things for some days now, when i get the number i get the busy signal..but i can&#8217;t get asterisk to call me back..i&#8217;m using broadvoice&#8230;and i want asterisk to call me in a canada phone witch means long distance..and it needs to dial out using a 1 before the area code witch is 514 ex: 1514xxxxxxx so should i put a 1 before ${CALLERIDNUM} or where should i put it..<br />
i&#8217;m also using only one line to receive and place the call back..<br />
thanks for your response</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rafael Cortes		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2221</link>

		<dc:creator><![CDATA[Rafael Cortes]]></dc:creator>
		<pubDate>Thu, 30 Nov 2006 23:19:38 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2221</guid>

					<description><![CDATA[SUPA: I have a script, based on the VoipJots click to dial scripts, that may serve your needs. It lets you write in the number where you want to be reached, and the number where you want to call. It then calls the first number, and connects it to the second number. If you are interested let me know at rd_cortes (a_t) walla (do_t) com. 

You can read my comment in http://www.voipjots.com/2006/03/asteriskhome-click-to-call-application.html#c116432983388545739

&lt;i&gt;[WM: Beam it to me as well, and I&#039;ll post it on Nerd Vittles.]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>SUPA: I have a script, based on the VoipJots click to dial scripts, that may serve your needs. It lets you write in the number where you want to be reached, and the number where you want to call. It then calls the first number, and connects it to the second number. If you are interested let me know at rd_cortes (a_t) walla (do_t) com. </p>
<p>You can read my comment in <a href="http://www.voipjots.com/2006/03/asteriskhome-click-to-call-application.html#c116432983388545739" rel="nofollow ugc">http://www.voipjots.com/2006/03/asteriskhome-click-to-call-application.html#c116432983388545739</a></p>
<p><i>[WM: Beam it to me as well, and I&#8217;ll post it on Nerd Vittles.]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Supa		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2220</link>

		<dc:creator><![CDATA[Supa]]></dc:creator>
		<pubDate>Thu, 30 Nov 2006 20:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2220</guid>

					<description><![CDATA[Thanks for the response, but I use AsteriDex and would like to specifiiy phone#1 and phone #2 for each call, where as asteridesk only lets me specify phone number to call.

&lt;i&gt;[WM: I understand. I just wasn&#039;t clear. I meant you could use the AsteriDex code as a model to build what you need. You&#039;ll see where it stuffs in the two phone numbers to dial. In your example, you&#039;d stuff new numbers for both while AsteriDex always uses the same number for phone #1.]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>Thanks for the response, but I use AsteriDex and would like to specifiiy phone#1 and phone #2 for each call, where as asteridesk only lets me specify phone number to call.</p>
<p><i>[WM: I understand. I just wasn&#8217;t clear. I meant you could use the AsteriDex code as a model to build what you need. You&#8217;ll see where it stuffs in the two phone numbers to dial. In your example, you&#8217;d stuff new numbers for both while AsteriDex always uses the same number for phone #1.]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Supa		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2219</link>

		<dc:creator><![CDATA[Supa]]></dc:creator>
		<pubDate>Thu, 30 Nov 2006 20:26:24 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2219</guid>

					<description><![CDATA[I was able to get the CallMe Web Interface working, but I am looking to make some improvements on it. What I&#039;m looking to do is remove the DISA and replace with the DIAL command.

What I want is to dial phone #1 and, once #1 picks up, dial phone #2. Anyone have any ideas on this?

&lt;i&gt;[WM: Take a look at our &lt;a href=&quot;http://nerdvittles.com/index.php?p=143&quot;&gt;AsteriDex application&lt;/a&gt;. That&#039;s exactly what it does. Good luck!]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>I was able to get the CallMe Web Interface working, but I am looking to make some improvements on it. What I&#8217;m looking to do is remove the DISA and replace with the DIAL command.</p>
<p>What I want is to dial phone #1 and, once #1 picks up, dial phone #2. Anyone have any ideas on this?</p>
<p><i>[WM: Take a look at our <a href="http://nerdvittles.com/index.php?p=143">AsteriDex application</a>. That&#8217;s exactly what it does. Good luck!]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: hhb		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2118</link>

		<dc:creator><![CDATA[hhb]]></dc:creator>
		<pubDate>Wed, 08 Nov 2006 04:51:26 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2118</guid>

					<description><![CDATA[Final question, and promise to let it go. Is there any way to use ringy-dingy internationally? For example, a friend in Australia agreed to test it for me. He dialed the &quot;international&quot; ringy-dingy number to ringy-dingy, got the busy signal. But ringy-dingy was unable to call him back. I checked the remote Asterisk console to see that ringy-dingy was getting a callerid from him that included the correct area code and number, but with no 011 preceding it, so of course ringy-dingy could not call him back. Is there any remedy for this? And thanks again.

&lt;i&gt;[WM: So long as you&#039;re willing to absorb the costs of the international calls, it would be a simple matter to change the script. Your dial plan also needs to support international calling as well.]&lt;/i&gt; ]]></description>
			<content:encoded><![CDATA[<p>Final question, and promise to let it go. Is there any way to use ringy-dingy internationally? For example, a friend in Australia agreed to test it for me. He dialed the "international" ringy-dingy number to ringy-dingy, got the busy signal. But ringy-dingy was unable to call him back. I checked the remote Asterisk console to see that ringy-dingy was getting a callerid from him that included the correct area code and number, but with no 011 preceding it, so of course ringy-dingy could not call him back. Is there any remedy for this? And thanks again.</p>
<p><i>[WM: So long as you&#8217;re willing to absorb the costs of the international calls, it would be a simple matter to change the script. Your dial plan also needs to support international calling as well.]</i> </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: hhb		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2110</link>

		<dc:creator><![CDATA[hhb]]></dc:creator>
		<pubDate>Tue, 07 Nov 2006 02:45:16 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2110</guid>

					<description><![CDATA[Okay, me again (hhb) -- stumbled onto a nice surprise with your ringy-dingy routine. For some years, have had no land line LD here-- VOIP covers that pretty well. However, the regular land line here is one of those base phone things with three portable handsets -- works very well all over this place and even outside on a small farm. But no LD with them ....

So, got a &quot;lite&quot; DID VOIP line with area code/city within the local call area. Plugged that number into ringy-dingy on the Asterisk with the result that now I can make LD calls on the land line phonesets here with no inconvenience -- just dial the &quot;local&quot; ringy-dingy VOIP number on a land line handset, Asterisk calls back with dialtone after password. Amazing really. The bonus is, of course that it will work from any direct phone number anywhere, but it is also quite useful even here at home. Thank you again, very much indeed, for this setup.]]></description>
			<content:encoded><![CDATA[<p>Okay, me again (hhb) &#8212; stumbled onto a nice surprise with your ringy-dingy routine. For some years, have had no land line LD here&#8211; VOIP covers that pretty well. However, the regular land line here is one of those base phone things with three portable handsets &#8212; works very well all over this place and even outside on a small farm. But no LD with them &#8230;.</p>
<p>So, got a "lite" DID VOIP line with area code/city within the local call area. Plugged that number into ringy-dingy on the Asterisk with the result that now I can make LD calls on the land line phonesets here with no inconvenience &#8212; just dial the "local" ringy-dingy VOIP number on a land line handset, Asterisk calls back with dialtone after password. Amazing really. The bonus is, of course that it will work from any direct phone number anywhere, but it is also quite useful even here at home. Thank you again, very much indeed, for this setup.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: hhb		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-2103</link>

		<dc:creator><![CDATA[hhb]]></dc:creator>
		<pubDate>Mon, 06 Nov 2006 02:07:42 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-2103</guid>

					<description><![CDATA[Thanks for a great tutorial. Got the ringy-dingy process working on a remote plain Asterisk 1.2 by changing a few small details -- didn&#039;t take long at all, even with the tiny Asterisk knowledge level here. Works as it should and is indeed useful. Again, thank you very much.]]></description>
			<content:encoded><![CDATA[<p>Thanks for a great tutorial. Got the ringy-dingy process working on a remote plain Asterisk 1.2 by changing a few small details &#8212; didn&#8217;t take long at all, even with the tiny Asterisk knowledge level here. Works as it should and is indeed useful. Again, thank you very much.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: nick		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1801</link>

		<dc:creator><![CDATA[nick]]></dc:creator>
		<pubDate>Thu, 03 Aug 2006 02:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1801</guid>

					<description><![CDATA[How do we broadcast the desired Caller ID ?

&lt;i&gt;[WM: http://nerdvittles.com/index.php?p=115 ]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>How do we broadcast the desired Caller ID ?</p>
<p><i>[WM: <a href="http://nerdvittles.com/index.php?p=115" rel="ugc">http://nerdvittles.com/index.php?p=115</a> ]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Keen		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1770</link>

		<dc:creator><![CDATA[Keen]]></dc:creator>
		<pubDate>Sat, 22 Jul 2006 03:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1770</guid>

					<description><![CDATA[Hi, I found this, i think to get a remote callback would be the one ringy-dingy feature right? Would it be possible to modify it such that it will only trigger a Congestion tone (fast busy) &amp; &quot;callback&quot; if it detects my mobile number, but gives normal ringing tone as normal behaviour if it is other people calling my number? This way we don&#039;t have to dedicate a DID for this trigger purpose? Or is this not possible? Thanks.]]></description>
			<content:encoded><![CDATA[<p>Hi, I found this, i think to get a remote callback would be the one ringy-dingy feature right? Would it be possible to modify it such that it will only trigger a Congestion tone (fast busy) &#038; "callback" if it detects my mobile number, but gives normal ringing tone as normal behaviour if it is other people calling my number? This way we don&#8217;t have to dedicate a DID for this trigger purpose? Or is this not possible? Thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alex		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1665</link>

		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Tue, 20 Jun 2006 14:19:30 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1665</guid>

					<description><![CDATA[Great approach! The only problem I have come across though is that even though it works when I call from a home #, and it fails to dial out when I use my cell phone.]]></description>
			<content:encoded><![CDATA[<p>Great approach! The only problem I have come across though is that even though it works when I call from a home #, and it fails to dial out when I use my cell phone.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: tphank		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1660</link>

		<dc:creator><![CDATA[tphank]]></dc:creator>
		<pubDate>Mon, 19 Jun 2006 16:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1660</guid>

					<description><![CDATA[Correction for #18 ( a &quot;5&quot; snuck into the line)
Figured it out, you can also use local:
exten =&gt; h,2,System(echo channel: local/${CALLERIDNUM}@from-internal &gt; /tmp/${CALLERIDNUM})

Thanks for the great ideas! This works great, but fairly frequently when using this from a cell phone, the DTMF recognition is bad and the users get doubled up digits at times, which either end up as wrong numbers or incomplete calls.  Any fixes for those symptoms?

Thanks Again!]]></description>
			<content:encoded><![CDATA[<p>Correction for #18 ( a "5&#8243; snuck into the line)<br />
Figured it out, you can also use local:<br />
exten => h,2,System(echo channel: local/${CALLERIDNUM}@from-internal > /tmp/${CALLERIDNUM})</p>
<p>Thanks for the great ideas! This works great, but fairly frequently when using this from a cell phone, the DTMF recognition is bad and the users get doubled up digits at times, which either end up as wrong numbers or incomplete calls.  Any fixes for those symptoms?</p>
<p>Thanks Again!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: tphank		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1651</link>

		<dc:creator><![CDATA[tphank]]></dc:creator>
		<pubDate>Sat, 17 Jun 2006 13:11:42 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1651</guid>

					<description><![CDATA[Figured it out, you can also use local:
exten =&gt; h,2,System(echo channel: local/5${CALLERIDNUM}@from-internal &gt; /tmp/${CALLERIDNUM})

Thanks for the great ideas!]]></description>
			<content:encoded><![CDATA[<p>Figured it out, you can also use local:<br />
exten => h,2,System(echo channel: local/5${CALLERIDNUM}@from-internal > /tmp/${CALLERIDNUM})</p>
<p>Thanks for the great ideas!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: tphank		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1649</link>

		<dc:creator><![CDATA[tphank]]></dc:creator>
		<pubDate>Fri, 16 Jun 2006 23:46:19 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1649</guid>

					<description><![CDATA[Ward:
This is great, but I have a question.  Is it correct that line: 
exten =&gt; h,2,System(echo channel: SIP/telasip-gw/${CALLERIDNUM} &gt; /tmp/${CALLERIDNUM})
will dial out thru the telasip-gw trunk WITHOUT processing the Outgoing dial runs for the trunk.  Is there a way of processing the rules or would I have to code some rules in line here.
Keep up the great code!!!
THanks]]></description>
			<content:encoded><![CDATA[<p>Ward:<br />
This is great, but I have a question.  Is it correct that line:<br />
exten => h,2,System(echo channel: SIP/telasip-gw/${CALLERIDNUM} > /tmp/${CALLERIDNUM})<br />
will dial out thru the telasip-gw trunk WITHOUT processing the Outgoing dial runs for the trunk.  Is there a way of processing the rules or would I have to code some rules in line here.<br />
Keep up the great code!!!<br />
THanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mathew Pretel		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1484</link>

		<dc:creator><![CDATA[Mathew Pretel]]></dc:creator>
		<pubDate>Tue, 09 May 2006 21:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1484</guid>

					<description><![CDATA[I think the One Ringy-Dingy and the Phone Home ideas are just great, but we always want more and I don&#039;t know if it is to complicate things or not, but I was wondering if it is possible for when using the &quot;One Ringy-Dingy&quot; to call the user back it&#039;ll actually prompt him or her for the a2billing pin.]]></description>
			<content:encoded><![CDATA[<p>I think the One Ringy-Dingy and the Phone Home ideas are just great, but we always want more and I don&#8217;t know if it is to complicate things or not, but I was wondering if it is possible for when using the "One Ringy-Dingy" to call the user back it&#8217;ll actually prompt him or her for the a2billing pin.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brian Mohr		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1212</link>

		<dc:creator><![CDATA[Brian Mohr]]></dc:creator>
		<pubDate>Fri, 17 Mar 2006 21:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1212</guid>

					<description><![CDATA[I followed your tutorial and was indeed able to generate a dialtone successfully.  However, I get an &quot;all circuits are busy&quot; signal after dialing the new number.  I have contacted telasip and was told that I am only able to initiate one call at a time while using the residential plan.  Has anyone else run into this problem?  Is there a workaround?  Or, do I have something configured incorrectly.  Any help is greatly appreciated - Thanks.]]></description>
			<content:encoded><![CDATA[<p>I followed your tutorial and was indeed able to generate a dialtone successfully.  However, I get an "all circuits are busy" signal after dialing the new number.  I have contacted telasip and was told that I am only able to initiate one call at a time while using the residential plan.  Has anyone else run into this problem?  Is there a workaround?  Or, do I have something configured incorrectly.  Any help is greatly appreciated &#8211; Thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jim		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1174</link>

		<dc:creator><![CDATA[Jim]]></dc:creator>
		<pubDate>Mon, 13 Mar 2006 16:54:13 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1174</guid>

					<description><![CDATA[Amazing.. I actually implemented more or less the same thing, except instead of using a seperate DID, I check the CID, and only perform the callback if its my cellphone calling (and yes, it still requires a passcode before it gives DISA tone) This lets me use my &#039;free incoming&#039; cell minutes to make outbound calls from anywhere, anytime.   I&#039;m using BV with just one &#039;trunk&#039;, and apparently they do permit two calls - I beleive it looks like three-way calling to them.]]></description>
			<content:encoded><![CDATA[<p>Amazing.. I actually implemented more or less the same thing, except instead of using a seperate DID, I check the CID, and only perform the callback if its my cellphone calling (and yes, it still requires a passcode before it gives DISA tone) This lets me use my &#8216;free incoming&#8217; cell minutes to make outbound calls from anywhere, anytime.   I&#8217;m using BV with just one &#8216;trunk&#8217;, and apparently they do permit two calls &#8211; I beleive it looks like three-way calling to them.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mukesh Aggarwal		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1149</link>

		<dc:creator><![CDATA[Mukesh Aggarwal]]></dc:creator>
		<pubDate>Wed, 08 Mar 2006 21:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1149</guid>

					<description><![CDATA[You seem to be big fan of Telasip, however I went to their site to sign up, and was really disappointed with the level of information they provide. Several links do not work and there is no information/service details provided. The site did not look professional at all. I hope they make modifications and add more details.

&lt;i&gt;[WM: I am a big fan. Great phone service at great prices. Lousy web site. That&#039;s better than the other way around in my book.]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>You seem to be big fan of Telasip, however I went to their site to sign up, and was really disappointed with the level of information they provide. Several links do not work and there is no information/service details provided. The site did not look professional at all. I hope they make modifications and add more details.</p>
<p><i>[WM: I am a big fan. Great phone service at great prices. Lousy web site. That&#8217;s better than the other way around in my book.]</i></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan		</title>
		<link>https://nerdvittles.com/getting-remote-dialtone-with-asterisk-3-solutions/comment-page-1/#comment-1127</link>

		<dc:creator><![CDATA[Jonathan]]></dc:creator>
		<pubDate>Sat, 04 Mar 2006 02:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://nerdvittles.com/?p=73#comment-1127</guid>

					<description><![CDATA[The link to the &quot;Securing Your Asterisk@Home PBX article&quot; points to the wp-admin side of (editing) the post.

&lt;i&gt;[WM: Ooops. Long day! Thanks.]&lt;/i&gt;]]></description>
			<content:encoded><![CDATA[<p>The link to the "Securing Your Asterisk@Home PBX article" points to the wp-admin side of (editing) the post.</p>
<p><i>[WM: Ooops. Long day! Thanks.]</i></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
