<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>ipHouse Blog &#187; Support</title> <atom:link href="http://blogs.iphouse.net/category/support/feed/" rel="self" type="application/rss+xml" /><link>http://blogs.iphouse.net</link> <description>A friendly, local ISP with a view.</description> <lastBuildDate>Sat, 04 Feb 2012 04:14:51 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Debugging IPSec VPNs in FortiGate</title><link>http://blogs.iphouse.net/2012/01/20/debugging-ipsec-vpns-in-fortigate/</link> <comments>http://blogs.iphouse.net/2012/01/20/debugging-ipsec-vpns-in-fortigate/#comments</comments> <pubDate>Fri, 20 Jan 2012 23:09:55 +0000</pubDate> <dc:creator>Doug McIntyre</dc:creator> <category><![CDATA[ipHouse Products]]></category> <category><![CDATA[Online Security]]></category> <category><![CDATA[Support]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[technology]]></category> <category><![CDATA[vmForge]]></category> <category><![CDATA[VPN]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=2211</guid> <description><![CDATA[Debugging IPSec VPNs in FortiGate Debugging what is going wrong with a VPN setup is difficult. The IKE protocol is &#8220;chatty&#8221;, and negotiates back and forth between the two ends for several rounds. The GUI offers not much help, it is either  UP or Down. Most of the real debugging happens inside the CLI. One <a href="http://blogs.iphouse.net/2012/01/20/debugging-ipsec-vpns-in-fortigate/" class="more-link">More &#62;</a>]]></description> <content:encoded><![CDATA[<p><strong><span style="font-size: large;">Debugging IPSec VPNs in FortiGate</span></strong></p><p>Debugging what is going wrong with a VPN setup is difficult. The IKE protocol is &#8220;chatty&#8221;, and negotiates back and forth between the two ends for several rounds. The GUI offers not much help, it is either  UP or Down. Most of the real debugging happens inside the CLI.</p><p>One problem in particular that has always bugged me is that you need access to the end machines involved to initiate traffic across the link. The network admin typically doesn&#8217;t have direct access on the computers on either side of the VPN in order to initiate that traffic. I&#8217;ll show you a method that can be used to initiate traffic from that network as well.<br /> <span id="more-2211"></span><br /> Here are some basic steps to troubleshoot VPNs for FortiGate.</p><p>In IKE/IPSec, there are two phases to establish the tunnel. Phase1 is the basic setup and getting the two ends talking. Then IKE takes  over in Phase2 to negotiate the shared key with periodic key rotation as well as dealing with NAT-T (NAT tunnelling), and all the other &#8220;higher-end&#8221; parameters.</p><p>The first trouble shooting step is to verify your parameters are all correct and matching.</p><p>For Phase1, is the end gateway dynamic or static? Fortigate to Fortigate can use both Main and Aggressive modes for dynamic connections, but many other brands can not. In general, if you are supporting a dynamic IP client end, you will have to use Aggressive mode Phase1, so make sure that mode is set for dynamic clients. If this a static config, you should use Main mode for Phase1, which is a bit more secure on the initial handshake.</p><p>For Phase2, are both sides setup to use PFS? Replay Detection? Dead-peer detection? While most VPN setups include a set of encryption and hash algorithms, you only need one that are the same. The reason for the set is to offer many choices. In practice, just pick one that your base client supports and go from there. Now-a-days, AES256/SHA1 is probably supported across the board, and that is all I ever use. You don&#8217;t have to match the set of them exactly, each side just needs a common one to talk.</p><p>After that all checks out, we need to see what IKE is doing that is failing.</p><p>So SSH or console into the CLI.</p><p>If this is debugging a VDOM<br /> (like in this case), you may have to switch into the root VDOM if you<br /> are the system admin of the firewall as opposed to a VDOM admin.</p><pre>fgt300C-fw # config vdom
fgt300C-fw # edit root
current vf=root:0

fgt300C-fw (root) #</pre><p>as the diag commands are only available in the individual VDOMs or from the root VDOM for the system admin.</p><p>To enable debug logging on the console (should be default) do</p><pre>fgt300C-fw (root) # diagnose debug console</pre><p>To enable debugging output</p><pre>fgt300C-fw (root) # diagnose debug enable</pre><p>Phase1 debugging isn&#8217;t too useful. IKE/Phase2 debugging is where the problem almost always is. Lets turn on full debugging logs there.</p><pre>fgt300C-fw (root) # diagnose debug application ike -1</pre><p>Now, the problem I&#8217;ve always run up against is getting the tunnel to trigger to open up with traffic running on the link. You either have to conference in somebody with access to help you, or use this nifty trick&#8230;</p><p>Open another SSH connection to the FW CLI.  (If this is a VDOM, you&#8217;ll have to &#8216;conf vdom; edit &#8220;vdom3&#8243; to get into<br /> the VDOM context where the network is you want to troubleshoot).</p><p>Set the ping source IP address to be in the inside network of the host you are trying to troubleshoot..</p><pre>fgt300C-fw (vdom3) # execute ping-options source 172.30.3.254</pre><p>And now, ping away from the CLI in order to bring up the tunnel interface</p><pre>fgt300C-fw (vdom3) # execute ping 192.168.0.1</pre><p>(assuming 192.168.0.1 is an existing host only reachable via the VPN tunnel, and the ping service is allowed through the tunnel).</p><pre>fgt300C-fw (vdom3) # execute ping 192.168.0.1
PING 192.168.0.1 (192.168.0.1): 56 data bytes
64 bytes from 192.168.0.1: icmp_seq=0 ttl=64 time=46.9 ms
64 bytes from 192.168.0.1: icmp_seq=1 ttl=64 time=47.3 ms
64 bytes from 192.168.0.1: icmp_seq=2 ttl=64 time=45.5 ms
64 bytes from 192.168.0.1: icmp_seq=3 ttl=64 time=66.3 ms
64 bytes from 192.168.0.1: icmp_seq=4 ttl=64 time=45.7 ms

--- 192.168.0.1 ping statistics ---
5 packets transmitted, 5 packets received, 0% packet loss
round-trip min/avg/max = 45.5/50.3/66.3 ms</pre><p>The trick here is that you are source as the network you are setting up, which should trigger the tunnel to come up if it isn&#8217;t up already, and you can see real live traffic. I don&#8217;t know how many times I&#8217;ve been stuck on a conference call waiting for whoever had access to do something to get around to doing the test I asked of them.</p><p>Back in the first debug window, you should see a whole bunch of IPSec and IKE messages fly past on the screen.</p><p>You have to learn to pick out the lines that are important, and zone in on them as everything is flying by. Learn to pause the display (or do a quick &#8216;diag debug dis&#8217; to stop the output). Scrolling back and zeroing in on the one error out of 100 lines is going to be your key skill here.</p><p>If all is well, you should get something about the SA being established with the SPI value (not important).</p><pre>ike 3:MyVPN_GW:18690:MyVPN:49143: added IPsec SA: SPIs=939fc892/b54d030</pre><p>and of course, if it is configured for SNMP, something like</p><pre>ike 3:MyVPN_GW:18690:MyVPN:49143: sending SNMP tunnel UP trap</pre><p>is a nice confirmation that all is well with the VPN.</p><p>If you are seeing a lot of errors repeating with Phase1, and you see messages like</p><pre>ike 3:MyVPN_GW:18698: sent IKE msg (P1_RETRANSMIT): ....</pre><p>Most likely the problem is a mismatch preshare key for the VPN tunnel, as it isn&#8217;t passing out of P1 (which doesn&#8217;t have much to negotiate).</p><p>Also check again if this is dynamic client (generally requiring Aggressive mode) or a static connection that probably should be set to Main mode, but could be using Aggressive Mode.</p><p>If you don&#8217;t have a common encryption alg/hash, you should see some errors like..</p><pre>ike 3:MyVPN_GW:18707: no SA proposal chosen</pre><p>As it can&#8217;t find a matching SA between the two ends using the same encryption algorithm/hash combo to encrypt the tunnel. Fixup the encryption alg/hash and everything should go better.</p><p>The hardest problems to detect are different keylength timers (you&#8217;ll just have to review them on both sides to make sure your P1 and P2 keylife timers are identical on both sides). Problems that you encounter with different timers show up as a VPN that works for a while, but then stops work, and won&#8217;t come up unless you bounce both sides. With valid timers the same on both sides, the VPN should keep up and key rollovers happen automatically.</p><p>Also, DPD may not always negotiate. One side may have it on and let a VPN connection stay up for a certain time until the timer kicks off and closes the connection for the lack of keep-alive packets. Make sure both sides have it on, or both sides have it off.</p><p>There are a few other error conditions that may come up, but these are the more common errors.</p><p>The most important thing with the low level debugging like this is to learn to pick out the important error lines from all the rest of the junk flying by. It just takes practice. You may want to deliberately break an existing setup just to see what happens. But once you can zero in on that one error line out of a 100 that is important, it will be a lot easier to troubleshoot what problems may come at you.</p> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2012/01/20/debugging-ipsec-vpns-in-fortigate/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>ipMom: Part 6, Online Payment Time</title><link>http://blogs.iphouse.net/2011/07/13/ipmom-part-6-online-payment-time/</link> <comments>http://blogs.iphouse.net/2011/07/13/ipmom-part-6-online-payment-time/#comments</comments> <pubDate>Wed, 13 Jul 2011 15:49:01 +0000</pubDate> <dc:creator>Genevieve Ruebel</dc:creator> <category><![CDATA[Support]]></category> <category><![CDATA[technology]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=1362</guid> <description><![CDATA[&#160;]]></description> <content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/07/ipMom_OnlinePaymentTime1.jpg"><img class="aligncenter size-full wp-image-1363" title="ipMom_OnlinePaymentTime1" src="http://blogs.iphouse.net/wp-content/uploads/2011/07/ipMom_OnlinePaymentTime1.jpg" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><span id="more-1362"></span></p><p>&nbsp;</p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/07/ipMom_OnlinePaymentTime2.jpg"><img class="aligncenter size-full wp-image-1364" title="ipMom_OnlinePaymentTime2" src="http://blogs.iphouse.net/wp-content/uploads/2011/07/ipMom_OnlinePaymentTime2.jpg" alt="" width="554" height="428" /></a></p> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2011/07/13/ipmom-part-6-online-payment-time/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>ipMom: Part 5, Checking your Mailbox Quota</title><link>http://blogs.iphouse.net/2011/05/26/ipmom-part-5-checking-your-mailbox-quota/</link> <comments>http://blogs.iphouse.net/2011/05/26/ipmom-part-5-checking-your-mailbox-quota/#comments</comments> <pubDate>Thu, 26 May 2011 15:46:44 +0000</pubDate> <dc:creator>Genevieve Ruebel</dc:creator> <category><![CDATA[email]]></category> <category><![CDATA[Support]]></category> <category><![CDATA[Monitoring]]></category> <category><![CDATA[technology]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=1321</guid> <description><![CDATA[&#160;]]></description> <content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota1.png"><img class="aligncenter size-full wp-image-1322" title="ipMom_MailboxQuota1" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota1.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><span id="more-1321"></span></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota2.png"><img class="aligncenter size-full wp-image-1323" title="ipMom_MailboxQuota2" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota2.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota3.png"><img class="aligncenter size-full wp-image-1324" title="ipMom_MailboxQuota3" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota3.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota5.png"><img class="aligncenter size-full wp-image-1325" title="ipMom_MailboxQuota5" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota5.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota6.png"><img class="aligncenter size-full wp-image-1326" title="ipMom_MailboxQuota6" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota6.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota7.png"><img class="aligncenter size-full wp-image-1327" title="ipMom_MailboxQuota7" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_MailboxQuota7.png" alt="" width="554" height="428" /></a></p><p><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/logo_watermark_1-1_small2.jpg"><img class="alignright size-full wp-image-1331" title="logo_watermark_1" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/logo_watermark_1-1_small2.jpg" alt="" width="300" height="223" /></a></p><p>&nbsp;</p> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2011/05/26/ipmom-part-5-checking-your-mailbox-quota/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>ipMom: Part 4, Forward Your E-mail</title><link>http://blogs.iphouse.net/2011/05/12/ipmom-part-4-forward-your-e-mail/</link> <comments>http://blogs.iphouse.net/2011/05/12/ipmom-part-4-forward-your-e-mail/#comments</comments> <pubDate>Thu, 12 May 2011 17:47:46 +0000</pubDate> <dc:creator>Genevieve Ruebel</dc:creator> <category><![CDATA[email]]></category> <category><![CDATA[Support]]></category> <category><![CDATA[technology]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=1308</guid> <description><![CDATA[&#160;]]></description> <content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail1.png"><img class="aligncenter size-full wp-image-1309" title="ipMom_forwarde-mail1" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail1.png" alt="" width="475" height="367" /></a></p><p style="text-align: center;"><span id="more-1308"></span></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail2.png"><img class="aligncenter size-full wp-image-1310" title="ipMom_forwarde-mail2" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail2.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail3.png"><img class="aligncenter size-full wp-image-1311" title="ipMom_forwarde-mail3" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail3.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail4.png"><img class="aligncenter size-full wp-image-1312" title="ipMom_forwarde-mail4" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail4.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail5.png"><img class="aligncenter size-full wp-image-1313" title="ipMom_forwarde-mail5" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_forwarde-mail5.png" alt="" width="554" height="428" /></a></p><p><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/logo_watermark_1-1_small1.jpg"><img class="alignright size-full wp-image-1314" title="logo_watermark_1" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/logo_watermark_1-1_small1.jpg" alt="" width="300" height="223" /></a></p><p style="text-align: center;">&nbsp;</p> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2011/05/12/ipmom-part-4-forward-your-e-mail/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>ipMom: Part 3, Set up an auto-responder for e-mail</title><link>http://blogs.iphouse.net/2011/05/04/ipmom-part-3-set-up-an-auto-responder-for-e-mail/</link> <comments>http://blogs.iphouse.net/2011/05/04/ipmom-part-3-set-up-an-auto-responder-for-e-mail/#comments</comments> <pubDate>Wed, 04 May 2011 23:15:04 +0000</pubDate> <dc:creator>Genevieve Ruebel</dc:creator> <category><![CDATA[email]]></category> <category><![CDATA[Support]]></category> <category><![CDATA[technology]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=1290</guid> <description><![CDATA[]]></description> <content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation1-fix.jpg"><img class="aligncenter size-full wp-image-1293" title="ipMom_setupvacation1-fix" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation1-fix.jpg" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><span id="more-1290"></span></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation2.png"><img class="aligncenter size-full wp-image-1294" title="ipMom_setupvacation2" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation2.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation3.png"><img class="aligncenter size-full wp-image-1295" title="ipMom_setupvacation3" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation3.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation4.png"><img class="aligncenter size-full wp-image-1296" title="ipMom_setupvacation4" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation4.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation5.png"><img class="aligncenter size-full wp-image-1297" title="ipMom_setupvacation5" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation5.png" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation6.png"><img class="aligncenter size-full wp-image-1298" title="ipMom_setupvacation6" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/ipMom_setupvacation6.png" alt="" width="554" height="428" /></a></p><p><a href="http://blogs.iphouse.net/wp-content/uploads/2011/05/logo_watermark_1-1_small.jpg"><img class="alignright size-full wp-image-1299" title="logo_watermark_1" src="http://blogs.iphouse.net/wp-content/uploads/2011/05/logo_watermark_1-1_small.jpg" alt="" width="300" height="223" /></a></p> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2011/05/04/ipmom-part-3-set-up-an-auto-responder-for-e-mail/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>ipMom: Part 2, creating e-mail aliases</title><link>http://blogs.iphouse.net/2011/04/28/ipmom-part-2-creating-e-mail-aliases/</link> <comments>http://blogs.iphouse.net/2011/04/28/ipmom-part-2-creating-e-mail-aliases/#comments</comments> <pubDate>Thu, 28 Apr 2011 15:18:10 +0000</pubDate> <dc:creator>Genevieve Ruebel</dc:creator> <category><![CDATA[email]]></category> <category><![CDATA[technology]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=1274</guid> <description><![CDATA[&#160;]]></description> <content:encoded><![CDATA[<p style="text-align: center;">&nbsp;</p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias7.jpg"><img class="aligncenter size-full wp-image-1286" title="ipMom_createalias7" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias7.jpg" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><span id="more-1274"></span></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias2.jpg"><img class="aligncenter size-full wp-image-1277" title="ipMom_createalias2" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias2.jpg" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias3.jpg"><img class="aligncenter size-full wp-image-1278" title="ipMom_createalias3" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias3.jpg" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias4.jpg"><img class="aligncenter size-full wp-image-1279" title="ipMom_createalias4" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias4.jpg" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias5.jpg"><img class="aligncenter size-full wp-image-1280" title="ipMom_createalias5" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias5.jpg" alt="" width="554" height="428" /></a></p><p style="text-align: center;"><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias6.jpg"><img class="aligncenter size-full wp-image-1281" title="ipMom_createalias6" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_createalias6.jpg" alt="" width="554" height="428" /></a></p><p><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/logo_watermark_1-1_small1.jpg"><img class="alignright size-full wp-image-1282" title="logo_watermark_1" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/logo_watermark_1-1_small1.jpg" alt="" width="300" height="223" /></a></p> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2011/04/28/ipmom-part-2-creating-e-mail-aliases/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>ipMom: Part 1, changing your password</title><link>http://blogs.iphouse.net/2011/04/22/ipmom-part-1-changing-your-password/</link> <comments>http://blogs.iphouse.net/2011/04/22/ipmom-part-1-changing-your-password/#comments</comments> <pubDate>Fri, 22 Apr 2011 21:16:11 +0000</pubDate> <dc:creator>Genevieve Ruebel</dc:creator> <category><![CDATA[Support]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[technology]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=1250</guid> <description><![CDATA[]]></description> <content:encoded><![CDATA[<div><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange1.jpg"><img class="aligncenter size-full wp-image-1257" title="ipMom_passwordchange1" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange1.jpg" alt="" width="554" height="428" /></a></div><div><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange2.jpg"><span id="more-1250"></span><img class="aligncenter size-full wp-image-1258" title="ipMom_passwordchange2" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange2.jpg" alt="" width="554" height="428" /></a></div><div><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange3.jpg"><img class="aligncenter size-full wp-image-1259" title="ipMom_passwordchange3" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange3.jpg" alt="" width="554" height="428" /></a></div><div><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange4.jpg"><img class="aligncenter size-full wp-image-1260" title="ipMom_passwordchange4" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange4.jpg" alt="" width="554" height="428" /></a></div><div><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange5.jpg"><img class="aligncenter size-full wp-image-1261" title="ipMom_passwordchange5" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange5.jpg" alt="" width="554" height="428" /></a></div><div><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange6.jpg"><img class="aligncenter size-full wp-image-1262" title="ipMom_passwordchange6" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/ipMom_passwordchange6.jpg" alt="" width="554" height="428" /></a></div><div><a href="http://blogs.iphouse.net/wp-content/uploads/2011/04/logo_watermark_1-1_small.jpg"><img class="alignright size-full wp-image-1264" title="logo_watermark_1" src="http://blogs.iphouse.net/wp-content/uploads/2011/04/logo_watermark_1-1_small.jpg" alt="" width="210" height="156" /></a></div> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2011/04/22/ipmom-part-1-changing-your-password/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>IPv6 &#8211; Tech Talk with customers</title><link>http://blogs.iphouse.net/2011/02/21/ipv6-tech-talk-with-customers/</link> <comments>http://blogs.iphouse.net/2011/02/21/ipv6-tech-talk-with-customers/#comments</comments> <pubDate>Mon, 21 Feb 2011 13:46:35 +0000</pubDate> <dc:creator>Bil MacLeslie</dc:creator> <category><![CDATA[Broadband]]></category> <category><![CDATA[News]]></category> <category><![CDATA[Opinion]]></category> <category><![CDATA[Support]]></category> <category><![CDATA[Hosting]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=913</guid> <description><![CDATA[Last month there was a little concern in the general media about the Internet running out of IP space and some customers contacted us about their concerns. We love energetic customers with questions.  Below is one of our customers’ comment and question: “Dice predicted that IPv4 IPs would be completely allocated in the next 18 <a href="http://blogs.iphouse.net/2011/02/21/ipv6-tech-talk-with-customers/" class="more-link">More &#62;</a>]]></description> <content:encoded><![CDATA[<p>Last month there was a little concern in the general media about the Internet running out of IP space and some customers contacted us about their concerns. We love energetic customers with questions.  Below is one of our customers’ comment and question:</p><p style="padding-left: 30px;">“Dice predicted that IPv4 IPs would be completely allocated in the next 18 months.  Obviously (if this is true), they are interested in having people know something about IPv6 so they can have such expertise in their job exchange.</p><p style="padding-left: 30px;">Do we as users of ipHouse need to be concerned about hardware, software, other implications of this &#8212; DSL, DNS, etc., etc. &#8230;”</p><p><span id="more-913"></span>Our network engineer Doug McIntyre responded and sent this to our customer:</p><p style="padding-left: 30px;">The popular press picking up news about the<a href="http://labs.ripe.net/Members/mirjam/interesting-graph-ipv4-unassigned" target="_blank"> pending IPv4 exhaustion</a> is pretty much high gloss over any of the real meat of the matter.   The effects that this will have on the average user in the United States will be nil for at least 5 years if not longer. ISPs and the regional registrars will be sitting on their IPv4 pools, and there may be a space crunch if some new ISP takes off that can connect millions of devices in short order.  That could be read as – wireless carrier or cable company, but these companies have a large amount of IP space already.  Where the current crunch has been for some time, is in Asia.  China alone is <a href="http://www.reuters.com/article/2010/01/15/china-internet-idUSTOE60E06S20100115" target="_blank">quoted</a> at having something on the order of 400 million people now on the Net.</p><p style="padding-left: 30px;">IPv6 has been in testing for ages. I had IPv6 tunnels going in the 1990&#8242;s for the ISP I was working for at the time.  Needless to say, the ipHouse network core is full IPv6 routing.  Our website is available via IPv6:</p><pre>$ dig +noall +answer www.iphouse.com aaaa
 www.iphouse.com.      597      IN      AAAA      2001:4980:0:4000::1</pre><p style="padding-left: 30px;">In fact, many of our servers are using IPv6; DNS, SMTP, POP, IMAP, members, ipMom, and NOC servers have been using IPv6 since October 2010.</p><p style="padding-left: 30px;">Implementing IPv6 for hosting customers is very straightforward.  We&#8217;ve been doing it on a case by case basis as colocation customers request it.</p><p style="padding-left: 30px;">Right now, one big issue is the consumer grade CPE equipment Those hardware manufacturers can&#8217;t be bothered to do anything until they absolutely need to.  As a result, most DSL boxes can&#8217;t do IPv6 connectivity natively to this day.  All the major enterprise network hardware can though.  Obviously all of our stuff does it just fine (Cisco, Juniper, F5, Fortigate).</p><p style="padding-left: 30px;">How this will all play out in the end years down the road is, probably in Asia first, the lack of IPv4 addresses will start forcing access customers there only be able to get IPv6 addresses for their connections.  Thus, any content provider (ie. Google, Facebook, JoeBob Store) will be either forced to have a native IPv6 presence or their content will only be accessible through third party proxy gateways that convert it to IPv4.  (The first two companies I named already have IPv6 presence, it’s the little guys that may have to worry)  When the big IPv6 to 4 proxy gateways get so overloaded to be unusable any longer, those with native IPv6 presence will get the business that all these consumers are driving.</p><p style="padding-left: 30px;">For people already connected here is the US, there will be not much noticeable change at all. Eventually the CPE access devices driven by the requirements in Asia will trickle back to the US, and people here will be able to have access in either IPv4 or IPv6.  If you’ve got an IPv4 address today, as most US connections do, you’ll be fine.  There is very little reason for content providers to disable IPv4 when the vast majority of customers are accessing them via IPv4.</p><p>A few days later we got this question about IPv6:</p><p style="padding-left: 30px;">“Wondering what your plans are to support this with your home customers.  I have a Cisco 678 modem that I&#8217;m guessing doesn&#8217;t support it, but thought that maybe tunnels could be setup or something.  DNS might be a question, too.  Just thought I&#8217;d ask, because I know it&#8217;s just on the horizon.”</p><p>Again, our man Doug answered the question:</p><p style="padding-left: 30px;">Our website is fully up on IPv6, as well as DNS, and the rest of our network.   We do offer native IPv6 DSL connections, but as you state the 678 doesn&#8217;t support it.  In fact, there&#8217;s hardly *any* consumer grade hardware that supports native IPv6.  You can do it with Cisco IOS based hardware (ie. Cisco 887), or by hacking some of the other consumer stuff and putting the OpenWRT OS on them.   Doing a tunnel is easy enough, but its probably easier for you just to go to HE&#8217;s Tunnelbroker.net service and have it done automatically by them.  Most of the IPv6 peer interconnects happen where their tunnels terminate anyway, plus they offer a lot of tutorials and such there.  If you do want the tunnel to terminate here just let me know.</p><p>The customer followed up and confirmed to us what we suspected:</p><p style="padding-left: 30px;">“Just ran into this that confirmed that Cisco isn&#8217;t doing ipv6 for consumers but Netgear appears to be:  <a href="http://www.networkworld.com/news/2011/020811-cisco-linksys-ipv6.html">http://www.networkworld.com/news/2011/020811-cisco-linksys-ipv6.html</a> “</p><p>So how does IPv6 affect our customers?  It doesn’t affect them – yet.   Once IPv6 becomes the only address available to an end users, the content they want  access to  needs to be available via IPv6, and content providers will make sure they can be seen.</p><p>If you’ve got technical questions or comments, send them our way.  We love to talk tech.</p><p>-Peace</p><p>Bil</p> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2011/02/21/ipv6-tech-talk-with-customers/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>News from ipMom</title><link>http://blogs.iphouse.net/2010/08/26/news-from-ipmom/</link> <comments>http://blogs.iphouse.net/2010/08/26/news-from-ipmom/#comments</comments> <pubDate>Thu, 26 Aug 2010 18:45:02 +0000</pubDate> <dc:creator>Genevieve Ruebel</dc:creator> <category><![CDATA[email]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=460</guid> <description><![CDATA[The mother of all mothers &#8220;ipMom&#8221; has gained yet another new feature. If you have a Dialup, DSL or similar account at ipHouse with a &#8216;primary account&#8217; within an iphouse.com, bitstream.net, pro-ns.net or goldengate.net domain you can now self-order additional POP mailboxes, and access an overview of mailboxes related to your primary account. Check it <a href="http://blogs.iphouse.net/2010/08/26/news-from-ipmom/" class="more-link">More &#62;</a>]]></description> <content:encoded><![CDATA[<p>The mother of all mothers &#8220;ipMom&#8221; has gained yet another new feature.</p><p><span id="more-460"></span></p><p>If you have a Dialup, DSL or similar account at ipHouse with a &#8216;primary account&#8217; within an iphouse.com, bitstream.net, pro-ns.net or goldengate.net domain you can now self-order additional POP mailboxes, and access an overview of mailboxes related to your primary account.</p><p>Check it out by logging into <a title="ipMom Login" href="https://ipmom.iphouse.com/" target="_blank">ipMom</a> using your primary account.  You will see a new link titled &#8216;Add Mailbox&#8217; under the &#8216;Add Services&#8217; section of the menu.  You will also see &#8216;Account Overview&#8217; under the Billing section.  You will be able to see your existing mailboxes and will be able to add new ones.  If you are already using all mailboxes that come with your account and you want to add a new one, you can check off an agreement to be billed for the new mailbox and a new POP mailbox will be added.  The new mailbox will be on to the next bill that is sent out (all billing information will stay the same).</p><p>You will not be able to delete mailboxes through ipMom.  If you do need to delete a mailbox, please email support@iphouse.net or billing@iphouse.net and we will be glad to help you out.</p><p>Customers with their own domain names who purchase mailboxes in blocks of ten will continue to enjoy the same admin control they currently have over their mailbox blocks.</p><p>We hope our customers enjoy this feature and we are excited for new things to come&#8230;:)</p> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2010/08/26/news-from-ipmom/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Undeliverable mail</title><link>http://blogs.iphouse.net/2010/01/19/undeliverable-mail/</link> <comments>http://blogs.iphouse.net/2010/01/19/undeliverable-mail/#comments</comments> <pubDate>Tue, 19 Jan 2010 19:27:47 +0000</pubDate> <dc:creator>Andrew Will-Holmberg</dc:creator> <category><![CDATA[email]]></category><guid isPermaLink="false">http://blogs.iphouse.net/?p=154</guid> <description><![CDATA[One of the most common email related support calls I get is someone wondering why they&#8217;re receiving &#8220;Undeliverable Mail Returned to Sender&#8221; notifications when sending out email to a particular email address. These &#8220;bounce back&#8221; messages will tell you why the email couldn&#8217;t be delivered, but often times the language used isn&#8217;t immediately understandable by <a href="http://blogs.iphouse.net/2010/01/19/undeliverable-mail/" class="more-link">More &#62;</a>]]></description> <content:encoded><![CDATA[<p>One of the most common email related support calls I get is someone wondering why they&#8217;re receiving &#8220;Undeliverable Mail Returned to Sender&#8221; notifications when sending out email to a particular email address. These &#8220;bounce back&#8221; messages will tell you why the email couldn&#8217;t be delivered, but often times the language used isn&#8217;t immediately understandable by someone who isn&#8217;t an IT professional, or &#8220;into computer stuff&#8221;. I thought I&#8217;d go over some of the more common undeliverable errors, and explain what they mean. I made a test email address for this purpose, blogtest@iphouse.com &#8211; and then sent several emails to it that were intended to be bounced for various reasons. Here&#8217;s the first bounce back message:</p><pre>This is the mail system at host smtpin-2.iphouse.net.

I'm sorry to have to inform you that your message could not
be delivered to one or more recipients. It's attached below.</pre><pre><a href="mailto:blogtest@iphouse.com">&lt;blogtest@iphouse.com&gt;</a>: permission denied. Command output: maildrop: maildir
    over quota.
</pre><p><span id="more-154"></span>Breaking this error down; the first part tells us what server issued the rejection. In this case it was the host &#8220;smtpin-2.iphouse.net&#8221; &#8211; the mail server responsible for receiving email for the email address blogtest@iphouse.com   The second part tells us who we were sending the email to, in this case it was sent to testblog@iphouse.com  The third part tells us the error type, as in a permanent or temporary error. A permanent error means that the email won&#8217;t be delivered. A temporary error means that the sending mail server ought to try again later.  In this case it says &#8220;Permission Denied&#8221; &#8211; that&#8217;s a permanent error. The fourth part of this error message tells us why the email was rejected, in this case it says &#8220;Command output: maildrop: maildir over quota&#8221;. What this means is that the service &#8220;maildrop&#8221; says that the Mail Directory (maildir) is over quota &#8211; the mailbox is full. What this means for us the sender, is that we shouldn&#8217;t bother trying to send that person anymore email until they clear out their overstuffed mailbox. There isn&#8217;t anything we can do about it other that calling that person up to tell them that their mailbox is full.</p><p>Here&#8217;s the next error bounceback:</p><pre>Unable to deliver message to: <a href="mailto:blogtest@iphouse.com">&lt;blogtest@iphouse.com&gt;</a>
Delivery failed for the following reason:
smtpin-2.iphouse.net[216.250.188.181] responded with failure: 550 5.7.1 black
listed URL host ***.********.net by .black.uribl.com

This has been a permanent failure.  No further delivery attempts will be made.</pre><p>I did make one edit to this error message, I replaced the blacklisted URL with a bunch of asterisks (*). I don&#8217;t see any reason to give a spammy site any more traffic than it already has. OK, so let&#8217;s break this error down. The first part of this error message tells us who we were sending the email to, in this case blogtest@iphouse.com was the intended recipient. The second part tells us what server issued the rejection, in this case it was the server smtpin-2.iphouse.net &#8211; so it was the recipient&#8217;s mail server issuing the rejection, not the sender&#8217;s. The third part tells us what kind of rejection it was, and why it was rejected. In this case the error code was &#8220;550&#8243; (I&#8217;ll go into error codes later), and that the email was rejected because it had a link to a website (the one I used ***** to hide), which happened to be on the blacklist &#8220;black.uribl.com&#8221;. The last part is just another note that this was a permanent error, in case you didn&#8217;t already know that that&#8217;s what a 550 is. What this bounce back message means for us the sender is that we had a link to a website in our email that a spam filter on the recipient&#8217;s mail server didn&#8217;t like. We&#8217;ve got a few options here. The simplest thing would be to send the person a new email, but this time not include the offending website link. If we think that the website in question should not be on this blacklist in the first place (mistakenly listed), then we can always go to uribl.com and request that the offending website be removed from their list. Not all blacklists let you do this, but plenty do &#8211; and as it so happens, uribl.com lets you request removals. Another option would be to contact the intended recipient to tell them that a spam filter of theirs is rejecting that link. The intended recipient could then follow up with their IT staff, or their ISP. I suppose the final option would be to try to &#8220;game the filter&#8221; by breaking up the link a bit. For example, let&#8217;s say that iphouse.com was blacklisted somehow. I could try sending the person a link to iphouse.com like this:  www (dot) iphouse (dot) com    A human reading this ought to be able to figure out your intent, whereas a spam filter might be tricked.</p><p>Here&#8217;s the next error bounce back:</p><pre><a href="mailto:testblog@iphouse.com">&lt;testblog@iphouse.com&gt;</a>: host smtpgrey-2.iphouse.net[216.250.190.161] said: 550
    5.1.1 <a href="mailto:testblog@iphouse.com">&lt;testblog@iphouse.com&gt;</a>: Recipient address rejected: User unknown (in
    reply to RCPT TO command)</pre><p>The first part of this error message tells us who we were sending the email to, in this case testblog@iphouse.com was the intended recipient. The second part tells us what server issued the rejection, in this case it was the server smtpgrey-2.iphouse.net &#8211; so it was the recipient&#8217;s mail server issuing the rejection, not the sender&#8217;s. The third part tells us what kind of rejection it was, and why it was rejected. It&#8217;s another 550, so a permanent rejection. It was rejected because the User was Unknown. This means that the email address doesn&#8217;t exist. If you caught the mistake in the email address right off the bat, plus 10 points for you. I accidentally sent an email to &#8220;testblog@iphouse.com&#8221; instead of &#8220;blogtest@iphouse.com&#8221;. Oops. As a funny aside, I actually generated this bounce back message accidentally when I was aiming for another type of bounce back. It took me a moment to catch my mistake. I guess that&#8217;s what more coffee is for&#8230;..    Anyhoo, what this means for us the sender, is that we just need to send out a new email, but this time type in the correct address. If you&#8217;re absolutely positively 100% double plus certain that you didn&#8217;t make any typo in the email you sent out, go ahead and look for the typo anyhow. It&#8217;s really easy to miss certain things like a &#8220;,&#8221; instead of a &#8220;.&#8221;, or a letter out of place. If your double check doesn&#8217;t yield any typos, and you&#8217;re certain that the address is a valid one, you might want to contact the intended recipient to inform them that something is amiss regarding their email address.</p> ]]></content:encoded> <wfw:commentRss>http://blogs.iphouse.net/2010/01/19/undeliverable-mail/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using memcached
Page Caching using memcached
Database Caching 1/18 queries in 0.018 seconds using memcached
Object Caching 632/659 objects using memcached

Served from: blogs.iphouse.net @ 2012-02-07 06:22:02 -->
