<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>PBX in a Flash Forum</title>
		<link>http://pbxinaflash.com/forum</link>
		<description>This is the PBX in a Flash discussion forum powered by vBulletin.</description>
		<language>en</language>
		<lastBuildDate>Sat, 04 Feb 2012 07:45:37 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>240</ttl>
		<image>
			<url>http://pbxinaflash.com/forum/images/ca_evo2/misc/rss.jpg</url>
			<title>PBX in a Flash Forum</title>
			<link>http://pbxinaflash.com/forum</link>
		</image>
		<item>
			<title>Dial Plan Help: Prompting people to record their VM greeting...</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12268&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 20:45:02 GMT</pubDate>
			<description><![CDATA[I know there's a feature where if the extension and VM password are the same, you can have Asterisk guide people through a set-up process, but for...]]></description>
			<content:encoded><![CDATA[<div>I know there's a feature where if the extension and VM password are the same, you can have Asterisk guide people through a set-up process, but for various reasons I don't want to use that.  I only care about them recording their unavail greeting.  Is there some easy way I can have people call into a number, have a prompt for extension and password, and then have them record their greeting without setting the password the same?<br />
<br />
I actually do have some code (below), and it works, except if the ID and password don't match it will re-prompt for the password, but won't prompt for the invitation number.  So if the invitation number was mistyped, your only choice is to call back.  <br />
<br />
Any thoughts on the best way of accomplishing what I'd like to do?  Thanks in advance.<br />
<br />
<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">[custom-voicemail-newuser]<br />
;this code if for demonstration purposes.<br />
exten =&gt; s,1,answer()<br />
exten =&gt; s,2,Set(vmnu_dstdir=/var/spool/asterisk/voicemail/default)<br />
<br />
;Ask the caller for their mailbox number<br />
exten =&gt; s,3,Playback(custom/Welcome-to-LOR)<br />
exten =&gt; s,4,read(vmnu_mbx,custom/please-enter-LOR-invitation-number)<br />
<br />
;Check the users destination box for existing greeting files.<br />
;Remove any temporary .wav files that might exist if the caller aborted early<br />
exten =&gt; s,5,System(rm ${vmnu_dstdir}/${vmnu_mbx}/vmnu_tmpmsg.wav)<br />
exten =&gt; s,6,System(ls ${vmnu_dstdir}/${vmnu_mbx}/ | grep wav)<br />
<br />
;If there was existing greeting files, this means its an existing<br />
;user and they can go straight to their mailbox (s,8 - s,10)<br />
exten =&gt; s,7,GotoIf($[&quot;${SYSTEMSTATUS}&quot; = &quot;SUCCESS&quot;]?20:20)<br />
;exten =&gt; s,8,Macro(get-vmcontext,${vmnu_mbx})<br />
;exten =&gt; s,9,VoiceMailMain(${vmnu_mbx}@${VMCONTEXT})<br />
;exten =&gt; s,10,Macro(hangupcall,)<br />
<br />
;S,20 verifies the password to the usersmail box<br />
exten =&gt; s,20,VMAuthenticate(${vmnu_mbx})<br />
<br />
;we tell the user that we are going to step them through a vm process<br />
;exten =&gt; s,21,Playback(vm-newuser)<br />
;creates the actual voicemailbox folder<br />
;exten =&gt; s,22,System(mkdir ${vmnu_dstdir}/${vmnu_mbx})<br />
<br />
;The sections s,23 - s,31 simply set variables for a GOSUB routine.<br />
;It allows the user to be prompted for their NAME, BUSY MESSAGE and UNAVIALABLE MESSAGE<br />
;if you don't want to force the entry of all of them, just change<br />
;the GOSBUB to NoOp and that will bypass the question<br />
<br />
exten =&gt; s,21,Set(vmnu_msgtype=greet)<br />
exten =&gt; s,22,Set(vmnu_msgprmpt=vm-rec-name)<br />
exten =&gt; s,23,NoOp(vmnurecord)<br />
<br />
exten =&gt; s,24,Set(vmnu_msgtype=unavail)<br />
exten =&gt; s,25,Set(vmnu_msgprmpt=vm-rec-unv)<br />
exten =&gt; s,26,Gosub(vmnurecord)<br />
<br />
exten =&gt; s,27,Set(vmnu_msgtype=busy)<br />
exten =&gt; s,28,Set(vmnu_msgprmpt=vm-rec-busy)<br />
exten =&gt; s,29,NoOp(vmnurecord)<br />
<br />
;Once all questions are asked, the system puts them into their voicemailbox<br />
<br />
;exten =&gt; s,30,VoiceMailMain(${vmnu_mbx}@default|s)<br />
exten =&gt; s,30,Playback(vm-goodbye)<br />
exten =&gt; s,31,Hangup()<br />
<br />
;this code prompts and records for each greeting.<br />
exten =&gt; s,40(vmnurecord),Playback(${vmnu_msgprmpt})<br />
exten =&gt; s,41,Record(${vmnu_dstdir}/${vmnu_mbx}/vmnu_tmpmsg:wav)<br />
exten =&gt; s,42,System(chmod +x ${vmnu_dstdir}/${vmnu_mbx}/vmnu_tmpmsg.wav)<br />
;exten =&gt; s,43,Background(vm-youhave&amp;recorded)<br />
exten =&gt; s,43,System(sox ${vmnu_dstdir}/${vmnu_mbx}/vmnu_tmpmsg.wav ${vmnu_dstdir}/${vmnu_mbx}/vmnu_tmpmsg-copy.wav<br />
exten =&gt; s,44,System(sox ${vmnu_dstdir}/${vmnu_mbx}/vmnu_tmpmsg-copy.wav ${vmnu_dstdir}/${vmnu_mbx}/vmnu_tmpmsg.wav compand 0.3\,1 6:-70\,-60\,-20 -5 -90 0.2 vad reverse vad reverse)<br />
<br />
exten =&gt; s,45,Playback(${vmnu_dstdir}/${vmnu_mbx}/vmnu_tmpmsg)<br />
exten =&gt; s,46,Playback(to-accept-recording)<br />
exten =&gt; s,47,Playback(1-yes-2-no)<br />
exten =&gt; s,48,read(vmnu_yesno||1)<br />
exten =&gt; s,49,Gotoif($[&quot;${vmnu_yesno}&quot; = &quot;1&quot;]?51:40<br />
exten =&gt; s,50,Goto(s,40) ;just in case they manage to go past the gotoif, forces them to re-record<br />
exten =&gt; s,51,System(mv ${vmnu_dstdir}/${vmnu_mbx}/vmnu_tmpmsg.wav ${vmnu_dstdir}/${vmnu_mbx}/${vmnu_msgtype}.wav)<br />
exten =&gt; s,52,System(cp ${vmnu_dstdir}/${vmnu_mbx}/${vmnu_msgtype}.wav ${vmnu_dstdir}/${vmnu_mbx}/${vmnu_msgtype}.WAV)<br />
exten =&gt; s,53,Playback(your-msg-has-been-saved)<br />
;exten =&gt; s,54,Playback(auth-thankyou)<br />
exten =&gt; s,55,Return</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>aaelghat</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12268</guid>
		</item>
		<item>
			<title>Nmap by Phone</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12267&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 18:03:31 GMT</pubDate>
			<description><![CDATA[A big thank you to all the Asterisk Guru's here for all of the great information here on the forum. I've learned more here than ever could in any...]]></description>
			<content:encoded><![CDATA[<div>A big thank you to all the Asterisk Guru's here for all of the great information here on the forum. I've learned more here than ever could in any Asterisk based book. <br />
<br />
I've been pulling my hair out trying to get the following .agi script to work with PIAF but still can't seem to figure out what the problem is. The script allows one to perform an nmap network scan by way of telephone. Any help whatsoever with this will be greatly appreciated.<br />
<br />
I am running PIAF Purple + Incredible PBX on CentOS release 5.7 (Final) :32 Bit Kernel: 2.6.18-274.3.1.el5. <br />
<br />
I have Perl (v5.15.4) along with the following CPAN modules installed:<br />
<br />
Asterisk::AGI<br />
Nmap::Parser<br />
File::Basename<br />
Digest::MD5 <br />
<br />
I also currently have Cepstral installed along with along with a single Alison 8khz license (installed with the NV script).  <br />
<br />
My dial plan (extensions_custom.conf) looks like this: <br />
<br />
exten =&gt; 1337,1,AGI(nmap.agi)<br />
exten =&gt; 1337,2,Hangup<br />
<br />
I've included the source code below along with another variant that I found. <br />
<br />
My CLI output looks like this:<br />
<br />
<font color="blue"><font color="blue"><font color="Red"><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><font size="1">&nbsp; &nbsp; -- Executing [1331@from-internal:1] AGI(&quot;SIP/501-00000017&quot;, &quot;nmap.agi&quot;) in new stack<br />
&nbsp; &nbsp; -- Launched AGI Script /var/lib/asterisk/agi-bin/nmap.agi<br />
&nbsp; &nbsp; -- Playing 'tts/tts-651d10c4c41504ccd4e3f221e6afeb30' (escape_digits=) (sample_offset 0)<br />
&nbsp; &nbsp; -- Playing 'tts/tts-818ec742f57be488cb51121f746696b1' (escape_digits=) (sample_offset 0)<br />
&nbsp; &nbsp; -- &lt;SIP/501-00000017&gt;AGI Script nmap.agi completed, returning 0<br />
&nbsp; &nbsp; -- Executing [1331@from-internal:2] Hangup(&quot;SIP/501-00000017&quot;, &quot;&quot;) in new stack<br />
&nbsp; == Spawn extension (from-internal, 1331, 2) exited non-zero on 'SIP/501-00000017'<br />
&nbsp; &nbsp; -- Executing [h@from-internal:1] Macro(&quot;SIP/501-00000017&quot;, &quot;hangupcall&quot;) in new stack<br />
&nbsp; &nbsp; -- Executing [s@macro-hangupcall:1] GotoIf(&quot;SIP/501-00000017&quot;, &quot;1?skiprg&quot;) in new stack<br />
&nbsp; &nbsp; -- Goto (macro-hangupcall,s,4)<br />
&nbsp; &nbsp; -- Executing [s@macro-hangupcall:4] GotoIf(&quot;SIP/501-00000017&quot;, &quot;1?skipblkvm&quot;) in new stack<br />
&nbsp; &nbsp; -- Goto (macro-hangupcall,s,7)<br />
&nbsp; &nbsp; -- Executing [s@macro-hangupcall:7] GotoIf(&quot;SIP/501-00000017&quot;, &quot;1?theend&quot;) in new stack<br />
&nbsp; &nbsp; -- Goto (macro-hangupcall,s,9)<br />
&nbsp; &nbsp; -- Executing [s@macro-hangupcall:9] Hangup(&quot;SIP/501-00000017&quot;, &quot;&quot;) in new stack<br />
&nbsp; == Spawn extension (macro-hangupcall, s, 9) exited non-zero on 'SIP/501-00000017' in macro 'hangupcall'<br />
&nbsp; == Spawn extension (from-internal, h, 1) exited non-zero on 'SIP/501-00000017'</font></code><hr />
</div></font></font></font><br />
<br />
Here's the source for the .agi script that is giving me the CLI log output above: <br />
<br />
<font size="2"><font color="Blue"><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><font size="2">#!/usr/bin/perl<br />
#<br />
# AGI Script that prompts the user for an ip address, scans the ip, and reports back to the user.<br />
#<br />
# Requires the Asterisk::AGI and Nmap::Parser perl modules<br />
#<br />
<br />
use Asterisk::AGI;<br />
use Nmap::Parser;<br />
use File::Basename;<br />
use Digest::MD5 qw(md5_hex);<br />
<br />
sub speak(){<br />
&nbsp; &nbsp; $text = $_[0];<br />
<br />
&nbsp; &nbsp; my $hash = md5_hex($text);<br />
<br />
&nbsp; &nbsp; my $ttsdir = &quot;/var/lib/asterisk/sounds/tts&quot;;<br />
&nbsp; &nbsp; my $cepoptions = &quot;-p audio/sampling-rate=8000,audio/channels=1&quot;;<br />
<br />
&nbsp; &nbsp; my $wavefile = &quot;$ttsdir/tts-$hash.wav&quot;;<br />
<br />
&nbsp; &nbsp; unless (-f $wavefile) {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; open(fileOUT, &quot;&gt;/var/lib/asterisk/sounds/tts/say-text-$hash.txt&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; print fileOUT &quot;$text&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; close(fileOUT);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; my $execf=&quot;/opt/swift/bin/swift -f $ttsdir/say-text-$hash.txt -o $wavefile $cepoptions&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; system($execf);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; unlink(&quot;$ttsdir/say-text-$hash.txt&quot;);<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; $filename = 'tts/'.basename('tts/'.basename($wavefile,&quot;.wav&quot;));<br />
&nbsp; &nbsp; $AGI-&gt;stream_file($filename);<br />
&nbsp; &nbsp; unlink(&quot;$wavefile&quot;);<br />
<br />
}<br />
<br />
$AGI = new Asterisk::AGI;<br />
<br />
my %input = $AGI-&gt;ReadParse();<br />
<br />
my $finished = 0;<br />
<br />
&amp;speak(&quot;Enter the eye-p address you wish to scan.&quot;);<br />
<br />
my $ipaddr = '';<br />
my $x = 0;<br />
while (!$finished) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; my $input = chr($AGI-&gt;wait_for_digit('5000'));<br />
&nbsp; &nbsp; &nbsp; &nbsp; if ($input =~ /^[0-9\*\#]$/) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($input =~ /^[\*\#]$/) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $x++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($x &gt; 3) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $finished = 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $ipaddr .= '.';<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $ipaddr .= $input;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; #must have timed out<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $finished = 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if ( length($ipaddr) &gt; 14) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $finished = 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
if ($ipaddr !~ /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;speak(&quot;Invalid Address: $ipaddr&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; exit 0;<br />
}<br />
&amp;speak(&quot;Please hold, now running scan...&quot;);<br />
<br />
&amp;speak(&quot;Please wait&quot;);<br />
<br />
my $np = new Nmap::Parser;<br />
<br />
$nmap_exe = '/usr/bin/nmap';<br />
<br />
$np-&gt;callback(\&amp;host_handler);<br />
<br />
$np-&gt;parsescan($nmap_exe,'-sT -p1-1023', $ipaddr);<br />
<br />
<br />
sub host_handler {<br />
&nbsp; &nbsp; my $host_obj = shift; #an instance of Nmap::Parser::Host (for current)<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;speak(&quot;Host Found with &quot; . $host_obj-&gt;tcp_port_count() . &quot; ports open&quot;);<br />
<br />
&nbsp; &nbsp; my @ports = $host_obj-&gt;tcp_open_ports(); #all ports<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; foreach $port (@ports){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &amp;speak($host_obj-&gt;tcp_service($port)-&gt;name. &quot; on port&quot; . $port);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;speak(&quot;Scan complete... Thank you...&quot;);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; exit;<br />
}<br />
<br />
$AGI-&gt;exec('Festival', '&quot;No host found&quot;');<br />
<br />
exit;<br />
</font></code><hr />
</div></font></font><font color="Blue"><br />
<br />
Here is a variant of the same source code displayed above. I only included this for reasons of it possibly being of any help to anyone:<br />
<br />
<font size="2"><br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><font size="3">#!/usr/bin/perl<br />
#<br />
# AGI Script that prompts the user for an ip address, scans the ip, and reports back to the user.<br />
#<br />
# Requires the Asterisk::AGI and Nmap::Parser perl modules<br />
#<br />
<br />
use Asterisk::AGI;<br />
use Nmap::Parser;<br />
use File::Basename;<br />
use Digest::MD5 qw(md5_hex);<br />
<br />
my $nmap_logfile = &quot;/var/log/asterisk/nmap.log&quot;;<br />
my $ttsdir = &quot;/var/lib/asterisk/sounds/tts&quot;;<br />
<br />
# speaks a string of text<br />
sub speak(){<br />
&nbsp; &nbsp; $text = $_[0];<br />
<br />
&nbsp; &nbsp; my $hash = md5_hex($text);<br />
<br />
&nbsp; &nbsp; my $wavefile = &quot;$ttsdir/tts-$hash.ulaw&quot;;<br />
<br />
&nbsp; &nbsp; unless (-f $wavefile) {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; system(&quot;echo $text | text2wave -o $wavefile -otype ulaw -&quot;);<br />
<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; $filename = 'tts/'.basename('tts/'.basename($wavefile,&quot;.ulaw&quot;));<br />
&nbsp; &nbsp; $AGI-&gt;stream_file($filename);<br />
&nbsp; &nbsp; unlink(&quot;$wavefile&quot;);<br />
<br />
}<br />
<br />
$AGI = new Asterisk::AGI;<br />
<br />
my %input = $AGI-&gt;ReadParse();<br />
<br />
my ($caller) = $input{callerid} =~ /&lt;(\d+)&gt;/;<br />
if (!defined $caller) {<br />
&nbsp; &nbsp; ($caller) = $input{callerid} =~ /(\d+)/;<br />
}<br />
<br />
my $finished = 0;<br />
<br />
&amp;speak(&quot;Enter the eye-p address you wish to scan.&quot;);<br />
<br />
my $ipaddr = '';<br />
my $x = 0;<br />
<br />
# While we don't have a complete IP address, have the user enter one<br />
# using '#' for '.'...<br />
while (!$finished) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; my $input = chr($AGI-&gt;wait_for_digit('5000'));<br />
&nbsp; &nbsp; &nbsp; &nbsp; if ($input =~ /^[0-9\*\#]$/) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($input =~ /^[\*\#]$/) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $x++;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($x &gt; 3) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $finished = 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $ipaddr .= '.';<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $ipaddr .= $input;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; } else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; #must have timed out<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $finished = 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; if ( length($ipaddr) &gt; 14) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $finished = 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
open(LOG,&quot;&gt;&gt;$nmap_logfile&quot;);<br />
print LOG localtime(time) . &quot; - $caller - $ipaddr\n&quot;;<br />
<br />
# Double check the address is valid...<br />
if ($ipaddr !~ /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;speak(&quot;Invalid Address: $ipaddr&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; exit 0;<br />
}<br />
<br />
&amp;speak(&quot;Please wait, scan is in progress.&quot;);<br />
<br />
# Set up a new Nmap::Parser object<br />
my $np = new Nmap::Parser;<br />
<br />
$nmap_exe = '/usr/bin/nmap';<br />
<br />
$np-&gt;callback(\&amp;host_handler);<br />
<br />
# Scan the host given.<br />
$np-&gt;parsescan($nmap_exe,'-sT -p1-1023', $ipaddr);<br />
<br />
# Do this after every host scanned<br />
sub host_handler {<br />
&nbsp; &nbsp; &nbsp; &nbsp; my $host_obj = shift; #an instance of Nmap::Parser::Host (for current)<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;speak(&quot;Host &quot; . $host_obj-&gt;hostname() . &quot; found with &quot; . $host_obj-&gt;tcp_port_count() . &quot; ports open&quot;);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; # Make and array of all the ports.<br />
&nbsp; &nbsp; &nbsp; &nbsp; my @ports = $host_obj-&gt;tcp_open_ports();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; # For every port, speak the port number and service.<br />
&nbsp; &nbsp; &nbsp; &nbsp; foreach $port (@ports){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &amp;speak(&quot;Open port found, &quot; . $host_obj-&gt;tcp_service($port)-&gt;name. &quot; on port &quot; . $port);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;speak(&quot;Scan completed! Good bye.&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; exit;<br />
&nbsp; &nbsp; &nbsp; &nbsp; close(LOG);<br />
}<br />
<br />
# If a host was found, we shouldn't get here.<br />
&amp;speak(&quot;No host found with eye-p address &quot; . $ipaddr . &quot;! Good bye.&quot;);<br />
<br />
exit;<br />
close(LOG);<br />
</font></code><hr />
</div></font></font><font size="2"><br />
</font><br />
<br />
Any help in pointing me in the right direction with this will be greatly appreciated. <br />
<br />
Regards, <br />
John Jolly</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=10">Add-On Install Instructions</category>
			<dc:creator>jjolly</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12267</guid>
		</item>
		<item>
			<title>Dell Optiplex 745 $167.99 refurbished</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12265&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 15:41:23 GMT</pubDate>
			<description>Image: http://img.skitch.com/20120203-n32yjegppiamsc17fttt8e4htq.jpg  (http://nerd.bz/zQ2enP)</description>
			<content:encoded><![CDATA[<div><a href="http://nerd.bz/zQ2enP" target="_blank"><img src="http://img.skitch.com/20120203-n32yjegppiamsc17fttt8e4htq.jpg" border="0" alt="" /></a></div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=11">Items/Jobs/Services: For Sale or Wanted</category>
			<dc:creator>wardmundy</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12265</guid>
		</item>
		<item>
			<title>Feb 03, 2012 updates 2062x</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12264&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 15:39:16 GMT</pubDate>
			<description>There have been a couple of updates/bug fixes

both red/purple initial install logs were not writing information correctly and this has been...</description>
			<content:encoded><![CDATA[<div>There have been a couple of updates/bug fixes<br />
<br />
both red/purple initial install logs were not writing information correctly and this has been corrected in the latest payloads.<br />
<br />
There were some errors with our mirrors not having the latest versions of some programs that has been corrected. Primarily it was the whole disk and daily backup programs that were affected. This has been corrected. If you have one of the affected systems simply rerun the install programs for either daily or disk backups.<br />
<br />
we have added a new tool which is especially useful for people running vmware<br />
<br />
sync-datetime<br />
<br />
this will force your time/date to be resynced via ntp immediately Quite handy if you suspend you virtual machine and then restart it a couple of days later. <br />
<br />
We have modified the configuration menu for new installs to better explain the freepbx choices that are available to install.<br />
<br />
<br />
Also we have decided to phase out the daily-backup program in favour of the incredible-backup 2.0 program which is currently undergoing internal beta testing. Once the incredible-backup 2.0 reaches release status the daily-backup program will be removed from distribution. We feel the new Incredible Backup 2.0 is superior in every way and really is a direct replacement. The only feature that will not be in the Incredible Backup 2.0 is the ability to run the Freepbx Backup as part of the daily backup. This can be set up in freepbx directly if you choose to use it.<br />
<br />
The other primary reason we are deprecating this program is that the daily-backup program did not have a built in restore program where as the Incredible Backup 2.0 does.<br />
<br />
<br />
Tom</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=12"><![CDATA[Today's Tech News & Events]]></category>
			<dc:creator>darmock</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12264</guid>
		</item>
		<item>
			<title>X-Lite Softphone and Microsoft VPN</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12263&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 15:24:31 GMT</pubDate>
			<description>Hello all.

Most of the working day I will have Microsoft Outlook running. One of my accounts require that I VPN in to a MS Server 2003 SBS located...</description>
			<content:encoded><![CDATA[<div>Hello all.<br />
<br />
Most of the working day I will have Microsoft Outlook running. One of my accounts require that I VPN in to a MS Server 2003 SBS located abroad.<br />
<br />
As long as the VPN client is running, my X-Lite softphone will not register. I have a feeling it might be that both my laptop and external server are using a similar internal IP range. 192.168.2.x<br />
<br />
So far I have had to choose between running X-lite in the background and not checking into one of my email accounts<br />
<br />
Your assistance would be greatly appreciated</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>peterbata</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12263</guid>
		</item>
		<item>
			<title>Travelinman for PIAF2 with CentOS6 install no work - SOLVED</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12262&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 15:22:33 GMT</pubDate>
			<description>Set up a new piaf box and went to install travelinman:


Code:
---------
wget http://incrediblepbx.com/travelinman2.tar.gz
tar zxvf...</description>
			<content:encoded><![CDATA[<div>Set up a new piaf box and went to install travelinman:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">wget http://incrediblepbx.com/travelinman2.tar.gz<br />
tar zxvf travelinman2.tar.gz<br />
./travelinman2.x<br />
./travelinman2.x: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory</code><hr />
</div>Solution?<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">yum install glibc.i686</code><hr />
</div>then the install works<br />
<br />
<br />
<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; +------------------------System Information---------------------------+<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Asterisk&nbsp;  = OFFLINE | Dahdi&nbsp; &nbsp;  = ONLINE&nbsp; | MySQL&nbsp; &nbsp;  = ONLINE&nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; SSH&nbsp; &nbsp; &nbsp; &nbsp; = ONLINE&nbsp; | Apache&nbsp; &nbsp; = ONLINE&nbsp; | Iptables&nbsp; = ONLINE&nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Fail2ban&nbsp;  = ONLINE&nbsp; | Internet&nbsp; = ONLINE&nbsp; | Ip6Tables = ONLINE&nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Disk Free&nbsp; = ADEQUATE| Mem Free&nbsp; = ADEQUATE| NTPD&nbsp; &nbsp; &nbsp; = ONLINE&nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; SendMail&nbsp;  = ONLINE&nbsp; | Samba&nbsp; &nbsp;  = OFFLINE | Webmin&nbsp; &nbsp; = ONLINE&nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Ethernet0&nbsp; = ONLINE&nbsp; | Ethernet1 = N/A&nbsp; &nbsp;  | Wlan0&nbsp; &nbsp;  = N/A&nbsp; &nbsp; &nbsp;  |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; PIAF Installed Version&nbsp;  = 2.0.6.2 Running on *KVM*&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; FreePBX Version&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = 2.9.0.7&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Running Asterisk Version = UNKNOWN&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Asterisk Source Version&nbsp; = 1.8.8.0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Dahdi Source Version&nbsp; &nbsp;  = 2.6.0+2.6.0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Libpri Source Version&nbsp; &nbsp; = 1.4.12&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; IP Address&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  = 192.168.1.20 on eth0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Operating System&nbsp; &nbsp; &nbsp; &nbsp;  = CentOS release 6.2 (Final)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Kernel Version&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  = 2.6.32-220.2.1.el6.x86_64 - 64 Bit&nbsp; &nbsp; &nbsp; |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |&nbsp; Incredible PBX 3 Version = 3.0.3&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  |<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; +---------------------------------------------------------------------+</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=9">Bug Reporting and Fixes</category>
			<dc:creator>amygrant</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12262</guid>
		</item>
		<item>
			<title><![CDATA[Apple's iCloud Looking Gloomy]]></title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12261&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 14:02:41 GMT</pubDate>
			<description>Apple iCloud Found to be Infringing on Motorola Patents, German Court Rules...</description>
			<content:encoded><![CDATA[<div><a href="http://phandroid.com/2012/02/03/apple-icloud-found-to-be-infringing-on-motorola-patents-german-court-rules/" target="_blank"><font color="Blue">Apple iCloud Found to be Infringing on Motorola Patents, German Court Rules</font></a><br />
<br />
Nice to see Google striking back at the heart of Apple's new business model.  In the immortal words of Judge Judy:<br />
<br />
<img src="http://img.skitch.com/20120203-8ta6pf6443k89dqchgwgd4ggm7.jpg" border="0" alt="" /></div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=12"><![CDATA[Today's Tech News & Events]]></category>
			<dc:creator>wardmundy</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12261</guid>
		</item>
		<item>
			<title>Adding Wan interface to live PBX system</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12260&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 11:44:08 GMT</pubDate>
			<description>I am just wondering what is the best way to go about adding another network card to be used with a direct WAN feed with its own public IP to a...</description>
			<content:encoded><![CDATA[<div>I am just wondering what is the best way to go about adding another network card to be used with a direct WAN feed with its own public IP to a freepbx box.<br />
<br />
Currently the freepbx box has one NIC that is on the same lan as the phones and uses the sonicwall to get to the internet.</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=2">Open Discussion</category>
			<dc:creator>jamieautomate</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12260</guid>
		</item>
		<item>
			<title><![CDATA[Can't register more than one extension]]></title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12259&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 02:41:07 GMT</pubDate>
			<description>Hello,

I am experiencing a really weird situation.  I sure hope someone can help.

I have PIAF installed in a datacenter and it works just great at...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I am experiencing a really weird situation.  I sure hope someone can help.<br />
<br />
I have PIAF installed in a datacenter and it works just great at my home.  I have registered 19 phones together placing outbound calls on each one of the phones at the same with NO problems.  <br />
<br />
Then I go and take the phones to my office so I can ditch our T1, and I can ONLY register 1 phone at the same time.  It is the oddest thing.  <br />
<br />
The difference at the office is we use business class DSL that goes into a clearos server.<br />
<br />
Just to eliminate firewall and Intrusion dection on the ClearOS, I added an &quot;ALLOW All&quot; type of rule inbound/outbound on the clearos to the sip server located on the internet.  I also disabled the IDS/IPS features within ClearOS.<br />
<br />
I hope someone can point me in the right direction. BTW, I have tested this with softphones and grandstream GXP1400's and I am able to duplicate it on the softphones and the Grandstream sip phones.<br />
<br />
Many many thanks for the help.<br />
<br />
Tim</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>truecall</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12259</guid>
		</item>
		<item>
			<title>install-purple.log and suggestion for the installer</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12258&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 02:18:16 GMT</pubDate>
			<description><![CDATA[Hi,

I'm looking for the install log because I wanted to report some info that is shown during the install as misleading.
I've probably installed...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm looking for the install log because I wanted to report some info that is shown during the install as misleading.<br />
I've probably installed piaf around 10 times today because I'm messing with something and while doing that I noted some stuff that maybe could be corrected in the install process.<br />
<br />
My concern is that my install-purple.log only contains:<br />
<br />
&lt;&lt;&gt;&gt; End install-purple<br />
<br />
==================================================  =====<br />
install-purple - Finished Log  201202021618<br />
==================================================  =====<br />
<br />
Maybe that's normal? It contains stuff only when something went wrong? I though it would show most of what flashed on the screen during the install since we're supposed to go look at it?<br />
<br />
Also when I install I often go away from the screen, don't you?<br />
When I come back the monitor (and even in vmware) is black.<br />
I usually press some arrow key to bring back display, but if the install is for example at the screen where I have to select the version of freepbx then simply pressing the arrow key counts and the install continues with the default of 2.8.<br />
I just wanted to get the screen back, not input any choice!<br />
I believe other points during the install work the same way.<br />
<br />
Am I the only one stressing out during the install? It says I should refrain from touching the keyboard and pressing enter but what am I supposed to do when the screen goes black and simply trying to bring it back on &quot;answers a question of the install&quot; without me wanting to?<br />
Maybe it's me, stupid! Simply enlighten me ;) <br />
<br />
Now about the info I think is out of date.<br />
<br />
The selection for freepbx has 2.8 has a default and says it's compatible with every known addons.<br />
It says 2.9 won't work reliably with some addons.<br />
<br />
It's your choice to default to 2.8, I won't argue with that, your decisions. But saying 2.8 will work with everything and that 2.9 won't? Currently it seems to be the contrary we need to 2.9 for incredible for example, and 2.8 doesn't work.<br />
<br />
And we all seem to recommend 2.9 (for addons it's the current standard) but the installer recommend 2.8.<br />
<br />
I would like for this to be seen as me trying to help, not me trying to request something or critic a free lunch. I value your work and it's hard to participate actively other than through post like this. I can't modify the file and submit it to save you guys work ;( But i'm sure you have good reason for that and you don't have to answer that.<br />
<br />
Thanks</div>


	<br />
	<div style="padding:4px">
	
	

	
	
	
	
	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<table cellpadding="0" cellspacing="3" border="0">
			<tr>
	<td><img class="inlineimg" src="http://pbxinaflash.com/forum/images/attach/zip.gif" alt="File Type: zip" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
	<td><a href="http://pbxinaflash.com/forum/attachment.php?attachmentid=646&amp;d=1328235655">fpbxversions.zip</a> (9.4 KB)</td>
</tr>
			</table>
		</fieldset>
	
	
	</div>
]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=9">Bug Reporting and Fixes</category>
			<dc:creator>Hyksos</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12258</guid>
		</item>
		<item>
			<title>HP ProLiant N40L $299.99</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12257&amp;goto=newpost</link>
			<pubDate>Fri, 03 Feb 2012 00:49:33 GMT</pubDate>
			<description><![CDATA[Looks like a good Proxmox server with addition of RAM. Includes 2TB drive at no add'l cost...

Image:...]]></description>
			<content:encoded><![CDATA[<div>Looks like a good Proxmox server with addition of RAM. Includes 2TB drive at no add'l cost...<br />
<br />
<a href="http://nerd.bz/wS9IJX" target="_blank"><img src="http://img.skitch.com/20120203-t2ctrfgfd4637rhfussex432ir.jpg" border="0" alt="" /></a></div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=11">Items/Jobs/Services: For Sale or Wanted</category>
			<dc:creator>wardmundy</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12257</guid>
		</item>
		<item>
			<title><![CDATA[Can't login to AvantFAX]]></title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12256&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 20:55:51 GMT</pubDate>
			<description><![CDATA[I saw some threads that mentioned this but I couldn't seem to find an answer. If I missed it, sorry in advance.

I recently installed Incredible Fax...]]></description>
			<content:encoded><![CDATA[<div>I saw some threads that mentioned this but I couldn't seem to find an answer. If I missed it, sorry in advance.<br />
<br />
I recently installed Incredible Fax 2 on to the latest load of PIAF2 with asterisk 10. I tried to login to the Avantfax admin page with &quot;maint/password&quot; and kept getting error messages about how login failed for wwwadmin. I then used the &quot;Lost your Password?&quot; link and pulled the email with the new temporary password from the sendmail queue. Still no luck. Using phpMyAdmin I can see the password changing for &quot;maint&quot; in the &quot;UserAccount&quot; table of the &quot;avantfax&quot; database, but none of the created  passwords work.<br />
<br />
Is the error message about the wwwadmin a red herring?<br />
<br />
I noticed a solution to a similiar post about Trixbox suggesting that memcached needed to be started, but it doesn't seem to be in use in PIAF. So I don't think that's it.<br />
<br />
I saw one solution about how someone rebooted a few times and then it started working. But I don't trust that kind of solution and rebooting a couple times didn't change my luck or fix the problem.<br />
<br />
Any thoughts or insights would be much appreciated,<br />
Al</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>freaky al</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12256</guid>
		</item>
		<item>
			<title>Help needed from registered g+ users</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12255&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 19:41:56 GMT</pubDate>
			<description>The VUC (http://www.voipusersconference.org/) (Voip Users Conference (http://www.voipusersconference.org/)) will be giving a Kindle Fire away...</description>
			<content:encoded><![CDATA[<div>The <a href="http://www.voipusersconference.org/" target="_blank">VUC</a> (<a href="http://www.voipusersconference.org/" target="_blank">Voip Users Conference</a>) will be giving a Kindle Fire away tomorrow during the broadcast to one of 5 people who have previously submitted jokes to be used during the show.<br />
<br />
I am in the running!<br />
<br />
The voting for the best joke takes place both on google+ and during the broadcast, so I need any registered g+ users to click here:<br />
<br />
<a href="https://plus.google.com/u/0/104027218792812194992/posts/faGvGMT8HxX" target="_blank">https://plus.google.com/u/0/10402721...ts/faGvGMT8HxX</a><br />
<br />
scroll down to the very bottom and +1 the joke they like the best. *HINT* you like joke #3 the best.<br />
<br />
Thanks for your attention.<br />
<a href="https://plus.google.com/u/0/108101181715999317318/posts" target="_blank"><br />
Lorne Gaetz</a></div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=2">Open Discussion</category>
			<dc:creator>lgaetz</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12255</guid>
		</item>
		<item>
			<title>Problem with Sipgate UK</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12254&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 17:24:26 GMT</pubDate>
			<description>I am having a strage problem with Sipgate UK, 2 of my numbers are with them and have been working perfectly for 3.5 years. I am running an old...</description>
			<content:encoded><![CDATA[<div>I am having a strage problem with Sipgate UK, 2 of my numbers are with them and have been working perfectly for 3.5 years. I am running an old version of PBXIAF which is running FreePbx 2.5.1.5<br />
 <br />
The problem is that there is no ringing tone being sent to the caller so all they hear is silence. None of my other lines have this problem. All my inward routes go directly to a call queue. Even if I have the queue make an announcement the caller does not hear it. There have been no changes to the system or upgrades in the last 6 months so I am not sure what to look at.<br />
 <br />
I have tried changing the settings on the trunk as per recommendations by Sipgate.<br />
 <br />
Does anyone have a working Sipgate configuration that they can post so I can compare to mine?<br />
 <br />
If I remove the settings in outgoing and the register string the incoming caller hears the ring tone.<br />
 <br />
Below is the response from Sipgate and below that is my current settings on the trunk:-<br />
 <br />
<font face="Consolas"><font size="3">Hi Mr. Daly,</font></font><br />
<br />
<font face="Consolas"><font size="3">Thank you for your e-mail.</font></font><br />
<br />
<font face="Consolas"><font size="3">A ringing tone is only sent by us to the caller, as long as the call is not answered. Your Asterisk is answering the incoming call automatically as soon as possible to forward the call to the depending partner. </font></font><br />
<font face="Consolas"><font size="3">So the ringing is only there in a split second because the call is answered so quick. During the forward to the telephone partner your asterisk does not send out a ringing tone emulation or waiting tone, so the caller just gets silence.</font></font><br />
<br />
<font face="Consolas"><font size="3">You have to check if you can configure your Asterisk to send some kind of signal to the caller while the call is internally transferred by the Asterisk Unfortunately we cannot assist you on this.</font></font><br />
<br />
<font face="Consolas"><font size="3">If there is anything else we can help you with, do not hesitate to get in touch with our support again. Thank you!</font></font><br />
<br />
<font face="Consolas"><font size="3">Best regards,</font></font><br />
<br />
Trunk Settings:-<br />
 <br />
username=my username<br />
type=friend<br />
srvlookup=yes<br />
secret=my password<br />
qualify=yes<br />
nat=yes<br />
insecure=very<br />
host=sipgate.co.uk<br />
fromuser=my username<br />
fromdomain=sipgate.co.uk<br />
dtmfmode=rfc2833<br />
disable=all<br />
context=ext-did<br />
canreinvite=yes<br />
authuser=my username<br />
allow=ulaw&amp;alaw<br />
<br />
username=my username<br />
type=peer<br />
secret=my password<br />
nat=yes<br />
insecure=very<br />
host=sipgate.co.uk<br />
fromuser=my username<br />
fromdomain=sipgate.co.uk<br />
dtmfmode=rfc2833<br />
disallow=all<br />
context=from-pstn<br />
canreinvite=no<br />
authuser=my username<br />
allow=ulaw&amp;alaw<br />
<br />
my username:my password@sipgate.co.uk/my username</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>compuguy</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12254</guid>
		</item>
		<item>
			<title>Hide caller ID on all outgoing calls</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12253&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 16:06:37 GMT</pubDate>
			<description>I am using a POTS line. If I pickup a handset and wish to hide my caller id (name and number) I simply prefix the outgoing number with *67.

How...</description>
			<content:encoded><![CDATA[<div>I am using a POTS line. If I pickup a handset and wish to hide my caller id (name and number) I simply prefix the outgoing number with *67.<br />
<br />
How could I prefix all outgoing calls in this fashion? <br />
<br />
I tried entering *67 in Trunk / Outbound Dial Prefix: (call cannot completed)<br />
<br />
Outbound Routes / Dial Patterns / Prefix *67 / NXXNXXXXXX (call cannot completed)<br />
<br />
Thank you.<br />
<br />
Peter</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>peterbata</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12253</guid>
		</item>
		<item>
			<title>Daily and Disk backup - hang</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12252&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 14:13:53 GMT</pubDate>
			<description>Running PIAF 2.0.6.2, purple 32b, FreePBX 2.9.0.9, asterisk 1.8.6.
ran the install-dailybackup and install-diskbackup, edited the two config files in...</description>
			<content:encoded><![CDATA[<div>Running PIAF 2.0.6.2, purple 32b, FreePBX 2.9.0.9, asterisk 1.8.6.<br />
ran the install-dailybackup and install-diskbackup, edited the two config files in /etc/PBX.<br />
<br />
When I run either of the scripts in /etc/cron.daily or /etc/cron.weekly to test, the scripts seem to hang, PS listing below.<br />
<br />
I've not found anything useful in /var/log and don't know where else to look.<br />
<br />
Please advise on suggestions on either what I did wrong, or where to look for more info, or perhaps even that these scripts aren't working yet on 2.0.6.2.<br />
<br />
<br />
root@pbx:~ $ ps auxwww | grep back<br />
root      2708  0.0  0.0   1888   296 ?        TN   Jan30   0:00 /etc/cron.daily/daily-backup.cron<br />
root      2709  0.0  0.0   2520   700 ?        SN   Jan30   0:00 awk -v progname /etc/cron.daily/daily-backup.cron progname {?????   print progname &quot;:\n&quot;?????   progname=&quot;&quot;;????       }????       { print; }<br />
root      2710  0.0  0.0      0     0 ?        ZN   Jan30   0:00 [daily-backup.cr] &lt;defunct&gt;<br />
root      5864  0.0  0.0   1868   300 ?        TN   Feb01   0:00 /etc/cron.weekly/disk-backup.cron<br />
root      5865  0.0  0.0   2520   732 ?        SN   Feb01   0:00 awk -v progname /etc/cron.weekly/disk-backup.cron progname {?????   print progname &quot;:\n&quot;?????   progname=&quot;&quot;;????       }????       { print; }<br />
root      5866  0.0  0.0      0     0 ?        ZN   Feb01   0:00 [disk-backup.cro] &lt;defunct&gt;<br />
root     30457  0.0  0.0   4328   732 pts/1    S+   08:53   0:00 grep back</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>Fred Rat</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12252</guid>
		</item>
		<item>
			<title>Piaf on proxmox - latest</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12251&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 11:40:15 GMT</pubDate>
			<description>Hi,

I am running PIAF-2.0.6.1.2-CentOS-6.1-32bit on Proxmox. Bravely/stupidly with Asterisk 10 and freepbx 2.10 All seems to be fine but:

-...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am running PIAF-2.0.6.1.2-CentOS-6.1-32bit on Proxmox. Bravely/stupidly with Asterisk 10 and freepbx 2.10 All seems to be fine but:<br />
<br />
- Fail2ban works, but not for asterisk<br />
- Whitelist script that I have used for a long time appears to install correctly but doesn't block registrations from ip addresses that should not be allowed in?<br />
<br />
Fail2ban: it's included so I assume it is meant to work?<br />
<br />
Whitelist: is there another script for Centos 6 or should it just work with the existing one? If it should - where would I start looking?<br />
<br />
I am running full isos - not the openvz containers.<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>theo69</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12251</guid>
		</item>
		<item>
			<title>PIAF as a client do not work but XLite works</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12250&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 06:57:41 GMT</pubDate>
			<description>Hi,

I have a PIAF-A setup in a remote home.

In my home I have another PIAF-B. I want to connect to the remote PIAF-A. With Xlite I can connect to...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I have a PIAF-A setup in a remote home.<br />
<br />
In my home I have another PIAF-B. I want to connect to the remote PIAF-A. With Xlite I can connect to an extension 123 with no problem at all.<br />
<br />
But I want to use my home PIAF-B to register to that same extension 123 that I am able to with Xlite. I have tried many different trunk/peer settings and registratioin strings but my PIAF-B does not registrar.<br />
<br />
Xlite only has 3 settings username (Which is extension 123); Password and host IP.<br />
<br />
I tried the following settings in my outbound settings:<br />
<br />
type=peer<br />
secret=password<br />
username=123<br />
host=remote IP address<br />
fromuser=123<br />
canreinvite=no<br />
insecure=invite,port<br />
qualify=yes<br />
nat=yes<br />
<br />
<br />
For registration I used:<br />
username:password@IPaddress/username<br />
<br />
<br />
The reason I want to do this is for the following benefits:<br />
<br />
The remote PIAF-A has all my long distance trunks<br />
Local PIAF-B can have multiple extensions and SIP phones connected to the local PIAF-B and then based on dialplan it can dial the local extensions or for long distance the calls will be routed using the remote PIAF-A.<br />
<br />
PIAF-A has Freepbx 2.5<br />
PIAF-B was updated to Freepbx 2.9<br />
<br />
Anyone here has any idea how to solve this? Thanks in advance for any help.<br />
<br />
KK</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>kimkhan</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12250</guid>
		</item>
		<item>
			<title><![CDATA[Asterisk won't start after power problems]]></title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12249&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 06:39:12 GMT</pubDate>
			<description>So my piaf box was working great until we had some power problems with the UPS today. The hardware boots and everything seems to be okay except for...</description>
			<content:encoded><![CDATA[<div>So my piaf box was working great until we had some power problems with the UPS today. The hardware boots and everything seems to be okay except for asterisk. When I log in to the web interface it has a red error next to asterisk in the server status area. When I ssh in my screen is filled with this ...<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="4" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				Asterisk ended with exit status 1<br />
Asterisk died with code 1.<br />
Automatically restarting Asterisk.<br />
Asterisk ended with exit status 1<br />
Asterisk died with code 1.<br />
Automatically restarting Asterisk.
			
			<hr />
		</td>
	</tr>
	</table>
</div>So asterisk is definately not happy. In /var/log/asterisk/full this keeps repeating:<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="4" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				[2012-02-01 12:59:18] VERBOSE[14045] config.c:   == Parsing '/etc/asterisk/asterisk.conf': [2012-02-01 12:59:18] VERBOSE[14045] config.c:   == Found<br />
[Feb  1 12:59:18] VERBOSE[14052] config.c:   == Parsing '/etc/asterisk/logger.conf': [Feb  1 12:59:18] VERBOSE[14052] config.c:   == Found<br />
[Feb  1 12:59:18] VERBOSE[14052] config.c:   == Parsing '/etc/asterisk/logger_general_additional.conf': [Feb  1 12:59:18] VERBOSE[14052] config.c:   == Found<br />
[Feb  1 12:59:18] VERBOSE[14052] config.c:   == Parsing '/etc/asterisk/logger_general_custom.conf': [Feb  1 12:59:18] VERBOSE[14052] config.c:   == Found<br />
[Feb  1 12:59:18] VERBOSE[14052] config.c:   == Parsing '/etc/asterisk/logger_logfiles_additional.conf': [Feb  1 12:59:18] VERBOSE[14052] config.c:   == Found<br />
[Feb  1 12:59:18] VERBOSE[14052] config.c:   == Parsing '/etc/asterisk/logger_logfiles_custom.conf': [Feb  1 12:59:18] VERBOSE[14052] config.c:   == Found<br />
[2012-02-01 12:59:18] VERBOSE[14052] config.c:   == Parsing '/etc/asterisk/asterisk.conf': [2012-02-01 12:59:18] VERBOSE[14052] config.c:   == Found<br />
[2012-02-01 12:59:18] WARNING[14045] db.c: Couldn't prepare statement 'CREATE TABLE IF NOT EXISTS astdb(key VARCHAR(256), value VARCHAR(256), PRIMARY KEY(key))': disk I/O error<br />
[2012-02-01 12:59:18] WARNING[14045] db.c: Couldn't create astdb table: disk I/O error<br />
[2012-02-01 12:59:18] WARNING[14052] db.c: Couldn't prepare statement 'CREATE TABLE IF NOT EXISTS astdb(key VARCHAR(256), value VARCHAR(256), PRIMARY KEY(key))': disk I/O error<br />
[2012-02-01 12:59:18] WARNING[14052] db.c: Couldn't create astdb table: disk I/O error
			
			<hr />
		</td>
	</tr>
	</table>
</div>Disk problems. Okay, so I check the health of the hard disk and get this:<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="4" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				root@piaf:/dev $ smartctl -i /dev/sda<br />
smartctl 5.39.1 2010-01-28 r3054 [i686-pc-linux-gnu] (local build)<br />
Copyright (C) 2002-10 by Bruce Allen, <a href="http://smartmontools.sourceforge.net" target="_blank">http://smartmontools.sourceforge.net</a><br />
<br />
=== START OF INFORMATION SECTION ===<br />
Model Family:     Western Digital Scorpio Blue Serial ATA family<br />
Device Model:     WDC WD1600BEVT-80A23T0<br />
Serial Number:    WD-WXA1A40C5387<br />
Firmware Version: 01.01A01<br />
User Capacity:    160,041,885,696 bytes<br />
Device is:        In smartctl database [for details use: -P show]<br />
ATA Version is:   8<br />
ATA Standard is:  Exact ATA specification draft version not indicated<br />
Local Time is:    Wed Feb  1 12:57:03 2012 EST<br />
SMART support is: Available - device has SMART capability.<br />
SMART support is: Enabled<br />
<br />
root@piaf:/dev $ smartctl -s on -d ata /dev/sda<br />
smartctl 5.39.1 2010-01-28 r3054 [i686-pc-linux-gnu] (local build)<br />
Copyright (C) 2002-10 by Bruce Allen, <a href="http://smartmontools.sourceforge.net" target="_blank">http://smartmontools.sourceforge.net</a><br />
<br />
=== START OF ENABLE/DISABLE COMMANDS SECTION ===<br />
SMART Enabled.<br />
<br />
root@piaf:/dev $ smartctl -d ata -H /dev/sda<br />
smartctl 5.39.1 2010-01-28 r3054 [i686-pc-linux-gnu] (local build)<br />
Copyright (C) 2002-10 by Bruce Allen, <a href="http://smartmontools.sourceforge.net" target="_blank">http://smartmontools.sourceforge.net</a><br />
<br />
=== START OF READ SMART DATA SECTION ===<br />
SMART overall-health self-assessment test result: PASSED
			
			<hr />
		</td>
	</tr>
	</table>
</div>So the hardware is okay, how about the filesystem ...<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="4" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				root@piaf:/var/log/asterisk $ fdisk -l<br />
<br />
Disk /dev/sda: 160.0 GB, 160041885696 bytes<br />
255 heads, 63 sectors/track, 19457 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
Sector size (logical/physical): 512 bytes / 512 bytes<br />
I/O size (minimum/optimal): 512 bytes / 512 bytes<br />
Disk identifier: 0x0007817e<br />
<br />
   Device Boot      Start         End      Blocks   Id  System<br />
/dev/sda1   *           1          13      102400   83  Linux<br />
<b>Partition 1 does not end on cylinder boundary.</b><br />
/dev/sda2              13       19360   155401216   83  Linux<br />
/dev/sda3           19360       19458      785408   82  Linux swap / Solaris
			
			<hr />
		</td>
	</tr>
	</table>
</div>That doesn't look good, but I don't know if that is my problem ... from some research on google it doesn't seem to be an issue. <br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="4" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				root@piaf:/var/log/asterisk $ sfdisk -uS -l /dev/sda<br />
<br />
Disk /dev/sda: 19457 cylinders, 255 heads, 63 sectors/track<br />
Units = sectors of 512 bytes, counting from 0<br />
<br />
   Device Boot    Start       End   #sectors  Id  System<br />
/dev/sda1   *      2048    206847     204800  83  Linux<br />
/dev/sda2        206848 311009279  310802432  83  Linux<br />
/dev/sda3     311009280 312580095    1570816  82  Linux swap / Solaris<br />
/dev/sda4             0         -          0   0  Empty
			
			<hr />
		</td>
	</tr>
	</table>
</div>No overlaps. So I booted off a gparted liveCD and and checked all the filesystems (it used e2fs). Everything looked okay, but when I reboot it is still in the same place with asterisk exitting.<br />
<br />
This installation was using the PIAF2 CentOS 6.1 build with asterisk 10. I see that a 6.2 version with IncrediblePBX 3 is now available (which I am downloading). Can anyone think of what I should try next, or should I just wipe it and start clean with the latest PIAF2?<br />
<br />
Many thanks for taking the time to read through all this.<br />
Al</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>freaky al</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12249</guid>
		</item>
		<item>
			<title>Google Voice (GV, GVoice) (Incoming calls) being touchy</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12248&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 06:04:00 GMT</pubDate>
			<description>PIAF Info (from status):
PIAF Installed Version = 2.0.6.1 Running on *HARDWARE*
FreePBX Version = 2.9.0.7
Running Asterisk Version = 1.8.8.0
Asterisk...</description>
			<content:encoded><![CDATA[<div>PIAF Info (from status):<br />
PIAF Installed Version = 2.0.6.1 Running on *HARDWARE*<br />
FreePBX Version = 2.9.0.7<br />
Running Asterisk Version = 1.8.8.0<br />
Asterisk Source Version = 1.8.8.0<br />
Dahdi Source Version = 2.5.0.2+2.5.0.2<br />
Libpri Source Version = 1.4.12<br />
IP Address = 192.168.0.16 on eth0<br />
Operating System = CentOS release 6.2 (Final)<br />
Kernel Version = 2.6.32-131.21.1.el6.i686 - 32 Bit<br />
Incredible Version  = 180 <br />
<br />
Hello,<br />
<br />
Let me start by saying I love PIAF! I moved over from trixbox recently (12/26/11) and am not looking back! Thank you everyone for all their hard work for making a great product.<br />
<br />
I do have a small problem though. Google Voice (incoming) seems to be finicky. It was working for several weeks as far as I know, but recently I found out that incoming calls were going to Google Voicemail instead of hitting my IVR. When it's working, my IVR picks up after about 1 ring. When it's not working, the caller's phone rings and rings, then gets put into Google Voicemail. Meanwhile, it looks like the calls are hitting my PIAF box because when an incoming call comes in, there's a bunch of activity going on when watching the output of 'asterisk -rvvvvvv'.<br />
<br />
After doing some searching I tried adding a 'delay' in my extensions_custom.conf file under a [googlein] heading, which my file didn't even have (a [googlein] heading) so I created one. This didn't seem to help so I removed it. Then I upgraded the FreePBX Google Voice module to 0.6.0, and this didn't seem to help. Then I went to my Google Voice account in FreePBX in the 'Google Voice' section and just clicked 'Submit Changes' (even though i didn't change anything), and then clicked on the Orange 'Apply' button, and then it would work once or twice, then would stop working again.<br />
<br />
After more reading, I found out one of the steps in troubleshooting was to have the destination for the Google Voice inbound route go to an extension instead of an IVR. When I did this, incoming calls were successful every time. Then I would change it back to the IVR and it would only work once or twice. I also read something about making sure that port 5222 was allowed in IPTABLES, so I checked and it was there:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">-A INPUT -p udp -m udp --dport 5222 -j ACCEPT</code><hr />
</div>So then I rebooted my server because I noticed that the STATUS screen showed IP6TABLES as offline. This brought IP6TABLES back online and made incoming calls for Google Voice work fine it seemed.<br />
<br />
Since I thought it was all working, I finally installed Hamachi VPN and configured it (all using install-hamachi - great script by the way), and then inbound Google Voice calls stopped working again. So I had to disable Hamachi from startup, reboot my server again, and it <i>seems</i> that Inbound Google Voice calls are working again.<br />
<br />
I'd like to mention that all this time outbound Google Voice calls work just fine.<br />
<br />
I don't understand why I'm having these problems...any ideas or things I can try?<br />
(I would like to have Hamachi VPN running <i>and</i> be able to receive incoming Google Voice calls to my IVR)<br />
<br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>domiflichi</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12248</guid>
		</item>
		<item>
			<title>incredible PBX 3.0 x64?</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12247&amp;goto=newpost</link>
			<pubDate>Thu, 02 Feb 2012 02:29:00 GMT</pubDate>
			<description><![CDATA[Im very confused.
on the nerd vittles site the instructions say- Installing PBX in a Flash. Here's a quick tutorial to get PBX in a Flash 2...]]></description>
			<content:encoded><![CDATA[<div>Im very confused.<br />
on the nerd vittles site the instructions say- Installing PBX in a Flash. Here's a quick tutorial to get PBX in a Flash 2 installed. To use Incredible PBX 3, just install the latest 32-bit or 64-bit version of PBX in a Flash 2. .. <br />
<br />
but on soundforge when i click on the 64 bit iso file it says-<br />
NOTE: The 64-bit ISO is NOT compatible with Incredible PBX and requires a DVD because of its size.<br />
<br />
which is correct?<br />
i have a dell 2850 with 8 gigs of ram, 2- 3.2Ghz dual core xeons and 6-146GB 10,000 RPM SCSI drives that I would like to run Incredible PBX 3 on.<br />
<br />
I'm new to all of this and any help is appreciated.</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>tpllc</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12247</guid>
		</item>
		<item>
			<title>Wolfram Alpha Setup</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12246&amp;goto=newpost</link>
			<pubDate>Wed, 01 Feb 2012 22:41:47 GMT</pubDate>
			<description>So I followed all of the instructions to the T from 
http://nerdvittles.com/?p=798 
Then I dialed 4747 and I hear Elmer tell me to state my question...</description>
			<content:encoded><![CDATA[<div>So I followed all of the instructions to the T from <br />
<a href="http://nerdvittles.com/?p=798" target="_blank">http://nerdvittles.com/?p=798</a> <br />
Then I dialed 4747 and I hear Elmer tell me to state my question after the beep and press the # key.  Immediately after Elmer, Alison comes on and says to disconnect press * otherwise press 1 for english.  I press 1 it beeps, I say whatever it is I want to say and then press # and it just sits there.  I'm wondering if anyone has any ideas on this or maybe it happened to you too?  Thanks for your help with this in advance.</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>thefuzz4</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12246</guid>
		</item>
		<item>
			<title><![CDATA[Obi110 star codes & PIAF]]></title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12245&amp;goto=newpost</link>
			<pubDate>Wed, 01 Feb 2012 20:40:40 GMT</pubDate>
			<description><![CDATA[Hey guys, is anyone else have a problem using a phone connected to an Obi110 where the star codes don't work on PIAF2?

I've disabled the star codes...]]></description>
			<content:encoded><![CDATA[<div>Hey guys, is anyone else have a problem using a phone connected to an Obi110 where the star codes don't work on PIAF2?<br />
<br />
I've disabled the star codes on the Physical Interfaces / Phone port section of the Obi110 and rebooted a few times, but none of the feature codes seem to work.<br />
<br />
I can however get the miscellaneous destinations to work - after an extremely long 15-20 second delay.<br />
<br />
Is it just me, or am I completely missing something (obvious)?<br />
<br />
System status is here:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9484;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;System Information&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9488;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Asterisk&nbsp;  = ONLINE&nbsp; | Dahdi&nbsp; &nbsp;  = ONLINE&nbsp; | MySQL&nbsp; &nbsp;  = ONLINE&nbsp; &nbsp; &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; SSH&nbsp; &nbsp; &nbsp; &nbsp; = ONLINE&nbsp; | Apache&nbsp; &nbsp; = ONLINE&nbsp; | Iptables&nbsp; = ONLINE&nbsp; &nbsp; &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Fail2ban&nbsp;  = ONLINE&nbsp; | Internet&nbsp; = ONLINE&nbsp; | Ip6Tables = ONLINE&nbsp; &nbsp; &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Disk Free&nbsp; = ADEQUATE| Mem Free&nbsp; = ADEQUATE| NTPD&nbsp; &nbsp; &nbsp; = ONLINE&nbsp; &nbsp; &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; SendMail&nbsp;  = ONLINE&nbsp; | Samba&nbsp; &nbsp;  = OFFLINE | Webmin&nbsp; &nbsp; = ONLINE&nbsp; &nbsp; &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Ethernet0&nbsp; = ONLINE&nbsp; | Ethernet1 = N/A&nbsp; &nbsp;  | Wlan0&nbsp; &nbsp;  = N/A&nbsp; &nbsp; &nbsp;  &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; PIAF Installed Version&nbsp;  = 2.0.6.2 Running on *KVM*&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; FreePBX Version&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = 2.9.0.9&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Running Asterisk Version = 1.8.8.0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Asterisk Source Version&nbsp; = 1.8.8.0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Dahdi Source Version&nbsp; &nbsp;  = 2.6.0+2.6.0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Libpri Source Version&nbsp; &nbsp; = 1.4.12&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; IP Address&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  = 192.168.100.200 on eth0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Operating System&nbsp; &nbsp; &nbsp; &nbsp;  = CentOS release 6.2 (Final)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Kernel Version&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  = 2.6.32-220.2.1.el6.i686 - 32 Bit&nbsp; &nbsp; &nbsp; &nbsp; &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; Incredible PBX 3 Version = 3.0.3&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9474;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &#9492;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9496;</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=2">Open Discussion</category>
			<dc:creator>The Deacon</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12245</guid>
		</item>
		<item>
			<title><![CDATA[Immediate PIAF Help NYC & SF]]></title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12244&amp;goto=newpost</link>
			<pubDate>Wed, 01 Feb 2012 17:30:22 GMT</pubDate>
			<description><![CDATA[We have two offices, one in NYC and one in SF.  We're up, but need help with capacity issues, provisioning, etc.

Please respond to me by PM]]></description>
			<content:encoded><![CDATA[<div>We have two offices, one in NYC and one in SF.  We're up, but need help with capacity issues, provisioning, etc.<br />
<br />
Please respond to me by PM</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=11">Items/Jobs/Services: For Sale or Wanted</category>
			<dc:creator>texas1</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12244</guid>
		</item>
		<item>
			<title>Forum search feature</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12243&amp;goto=newpost</link>
			<pubDate>Wed, 01 Feb 2012 17:19:54 GMT</pubDate>
			<description>Hello all. There have been times when I will enter a search phrase for eg. Reload failed because retrieve_conf encountered an error.

The search...</description>
			<content:encoded><![CDATA[<div>Hello all. There have been times when I will enter a search phrase for eg. Reload failed because retrieve_conf encountered an error.<br />
<br />
The search result message comes back with:<br />
<br />
<br />
The search term you specified (an) is under the minimum word length (3)  and therefore will not be found. Please make this term longer.  If this term contains a wildcard, please make this term more specific.<br />
<br />
<br />
Am I doing something wrong?<br />
<br />
<br />
Thank you. Peter</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=2">Open Discussion</category>
			<dc:creator>peterbata</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12243</guid>
		</item>
		<item>
			<title>Cheap Phones with PA?</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12241&amp;goto=newpost</link>
			<pubDate>Wed, 01 Feb 2012 16:52:52 GMT</pubDate>
			<description><![CDATA[I'm wanting to upgrade all the phones in my house (5 of them) away from ATA/analog phones to IP based phones. I don't need them to have a bunch of...]]></description>
			<content:encoded><![CDATA[<div>I'm wanting to upgrade all the phones in my house (5 of them) away from ATA/analog phones to IP based phones. I don't need them to have a bunch of features, but am looking for one particular feature.<br />
<br />
I want to be able to use them as a PA, so can say things like, &quot;We're leaving in 5 minutes, get your shoes and socks on&quot; to my 6 children in the house without having to yell.<br />
<br />
What phones(s) would you guys recommend I be looking at?</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=4">Endpoints</category>
			<dc:creator>FitnessPlus</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12241</guid>
		</item>
		<item>
			<title>Manager Event CDR not generated</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12240&amp;goto=newpost</link>
			<pubDate>Wed, 01 Feb 2012 15:21:04 GMT</pubDate>
			<description>Hi

PIAF Installed Version   = 2.0.6.2
FreePBX Version          = 2.8.1.4
Running Asterisk Version = 1.8.8.0

I have enabled the following in...</description>
			<content:encoded><![CDATA[<div>Hi<br />
<br />
PIAF Installed Version   = 2.0.6.2<br />
FreePBX Version          = 2.8.1.4<br />
Running Asterisk Version = 1.8.8.0<br />
<br />
I have enabled the following in cdr_manager.conf<br />
;<br />
; Asterisk Call Management CDR<br />
;<br />
[general]<br />
enabled = yes<br />
<br />
I just trying to get the Asterisk Manager CDR after logging in to the AMI through telnet. But could not see any Event: CDR logs generated after making and receiving few test calls.<br />
<br />
Please can someone advise what is missing here to enable the Manager CDR.<br />
<br />
Your help is much appreciated.<br />
<br />
Thanks<br />
Vinod</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>vinod</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12240</guid>
		</item>
		<item>
			<title>Digium Launches IP Phones</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12239&amp;goto=newpost</link>
			<pubDate>Wed, 01 Feb 2012 14:26:45 GMT</pubDate>
			<description><![CDATA[Looks like more of the same, except:

---Quote---
Digium phones include an app engine with a "simple yet powerful  JavaScript API" that lets...]]></description>
			<content:encoded><![CDATA[<div>Looks like more of the same, except:<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="4" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				Digium phones include an app engine with a &quot;simple yet powerful  JavaScript API&quot; that lets programmers create custom apps that run on the  phones.
			
			<hr />
		</td>
	</tr>
	</table>
</div>Note to Digium: Don't do what Aastra did.<br />
<br />
<a href="http://blog.tmcnet.com/blog/tom-keating/asterisk/digium-gamechanger---launches-d40-d50-d70-ip-phones.asp" target="_blank">http://blog.tmcnet.com/blog/tom-keat...-ip-phones.asp</a></div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=12"><![CDATA[Today's Tech News & Events]]></category>
			<dc:creator>lgaetz</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12239</guid>
		</item>
		<item>
			<title>updates</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12238&amp;goto=newpost</link>
			<pubDate>Wed, 01 Feb 2012 03:57:13 GMT</pubDate>
			<description>Through no fault of the PIAF software I broke my pbx and had to reload from scratch.  After doing so, I find there are some modules available for...</description>
			<content:encoded><![CDATA[<div>Through no fault of the PIAF software I broke my pbx and had to reload from scratch.  After doing so, I find there are some modules available for update.  <br />
 <br />
Is it a good practice to stay current and update them?<br />
Are these updates &quot;Supported&quot;?<br />
Is there any harm in preforming the updates as they come out?<br />
 <br />
Current config:<br />
PIAF Installed Version   = 2.0.6.2 Running on *HARDWARE*<br />
FreePBX Version          = 2.9.0.7<br />
Running Asterisk Version = 1.8.8.0<br />
Asterisk Source Version  = 1.8.8.0<br />
Dahdi Source Version     = 2.6.0+2.6.0<br />
Libpri Source Version    = 1.4.12<br />
Operating System         = CentOS release 6.2 (Final)<br />
Kernel Version           = 2.6.32-220.2.1.el6.x86_64 - 64 Bit<br />
Core  2.9.0.2 Online upgrade available (2.9.0.4)<br />
FreePBX Framework 2.9.0.7 Online upgrade available (2.9.0.9)<br />
Paging and Intercom 2.9.0.5 Online upgrade available (2.9.0.6)</div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=3">Help</category>
			<dc:creator>kenewto</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12238</guid>
		</item>
		<item>
			<title>Strange DID routing problem</title>
			<link>http://pbxinaflash.com/forum/showthread.php?t=12237&amp;goto=newpost</link>
			<pubDate>Wed, 01 Feb 2012 02:41:42 GMT</pubDate>
			<description>One of my colleagues is having trouble with his Vitelity account(s).  He has two numbers, both route to the same PIAF box (reasonably up-to-date). ...</description>
			<content:encoded><![CDATA[<div>One of my colleagues is having trouble with his Vitelity account(s).  He has two numbers, both route to the same PIAF box (reasonably up-to-date).  One of the numbers routes to his phone fine.  The other one doesn't - it fails with an 'ss-noservice' message.  <br />
<br />
If, on the other hand, he includes a &quot;catch-all&quot; inbound route, he can get the call to route to the second line on his phone.  The obvious answer is &quot;do that second thing.&quot;  <br />
<br />
The correct answer, though is something else.  We've been through the dial-plan with a fine toothed comb.<br />
<br />
Here's the output from the CLI and logs.<br />
<br />
<a href="http://pastebin.com/yiaG4XA9" target="_blank">http://pastebin.com/yiaG4XA9</a></div>

]]></content:encoded>
			<category domain="http://pbxinaflash.com/forum/forumdisplay.php?f=6">Providers</category>
			<dc:creator>Cynjut</dc:creator>
			<guid isPermaLink="true">http://pbxinaflash.com/forum/showthread.php?t=12237</guid>
		</item>
	</channel>
</rss>

