<?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>Ian Dunn &#187; Networking</title>
	<atom:link href="http://iandunn.name/category/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://iandunn.name</link>
	<description>Seattle-based web developer blogging about tips and solutions</description>
	<lastBuildDate>Fri, 18 May 2012 18:11:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Connecting to a PPTP VPN from an OpenVZ CentOS VPS</title>
		<link>http://iandunn.name/connecting-to-a-pptp-vpn-from-an-openvz-centos-vps/</link>
		<comments>http://iandunn.name/connecting-to-a-pptp-vpn-from-an-openvz-centos-vps/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 17:25:08 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Linux / Unix]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[OpenVZ / Virtuozzo / Plesk]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Kernel Modules]]></category>
		<category><![CDATA[MPPE]]></category>
		<category><![CDATA[PPP]]></category>
		<category><![CDATA[PPTP]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://iandunn.name/?p=1281</guid>
		<description><![CDATA[When setting up the PPTP and PPP packages on an OpenVZ VPS in order to connect to a VPN, there are <a title="How to install pptpd on vpn openvz linux vps" href="http://www.linuxhelp.in/2011/05/how-to-install-pptpd-on-vpn-openvz.html">a few extra steps</a> you need to take that you don&#8217;t have to do with a non-virtualized box. First, you have to load the following kernel modules on the hardware node and/or <a title="CentOS Persistent Module Loading" href="http://www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-kernel-modules-persistant.html">set them to automatically start during the boot up process</a> : After doing that you should... [<a href="http://iandunn.name/connecting-to-a-pptp-vpn-from-an-openvz-centos-vps/">more</a>]]]></description>
			<content:encoded><![CDATA[<p>When setting up the PPTP and PPP packages on an OpenVZ VPS in order to connect to a VPN, there are <a title="How to install pptpd on vpn openvz linux vps" href="http://www.linuxhelp.in/2011/05/how-to-install-pptpd-on-vpn-openvz.html">a few extra steps</a> you need to take that you don&#8217;t have to do with a non-virtualized box.</p>
<p><strong>First</strong>, you have to load the following kernel modules on the hardware node and/or <a title="CentOS Persistent Module Loading" href="http://www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-kernel-modules-persistant.html">set them to automatically start during the boot up process</a>:</p>
<pre class="brush: bash; title: ; notranslate">

modprobe ppp_mppe
modprobe ppp_deflate
modprobe zlib_deflate
modprobe ppp_async
modprobe ppp_generic
modprobe slhc
modprobe crc_ccitt
</pre>
<p>After doing that you should see something similiar to this when running <em>lsmod</em></p>
<pre class="brush: bash; title: ; notranslate">

[root@me ~]# lsmod | grep ppp
ppp_mppe 39816 0
ppp_deflate 39168 0
zlib_deflate 52760 1 ppp_deflate
ppp_async 45056 0
ppp_generic 63632 4 ppp_mppe,ppp_deflate,ppp_async
slhc 39680 1 ppp_generic
crc_ccitt 35200 1 ppp_async
</pre>
<p><strong>Second</strong>, you have to tweak the VPS&#8217;s conf file:</p>
<pre class="brush: bash; title: ; notranslate">

vzctl stop [VEnumber]
vzctl set [VEnumber] --features ppp:on --save
vzctl start [VEnumber]
vzctl set [VEnumber] --devices c:108:0:rw --save
vzctl exec [VEnumber] mknod /dev/ppp c 108 0
vzctl exec [VEnumber] chmod 600 /dev/ppp
</pre>
<p>Once that&#8217;s done, you can <a title="Connect to PPTP VPN from Linux only by one command" href="http://www.adminsehow.com/2010/04/connect-to-pptp-vpn-from-linux-only-by-one-command/">follow the normal instructions</a>.</p>
<p>After that, you might need to uncomment the <em>require-mppe-128</em> or <em>mppe required,stateless</em> line in <em>/etc/ppp/options.pptp</em> (depending on the VPN server). You may also need to manually create a static route to the network, with <em>route add -net 10.1.1.0 netmask 255.255.255.0 ppp0</em>.</p>
<p>You can check <em>/var/log/messages</em> for details about negotiation errors.</p>
]]></content:encoded>
			<wfw:commentRss>http://iandunn.name/connecting-to-a-pptp-vpn-from-an-openvz-centos-vps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deflating the Hype Behind Cloud Computing</title>
		<link>http://iandunn.name/deflating-the-hype-behind-cloud-computing/</link>
		<comments>http://iandunn.name/deflating-the-hype-behind-cloud-computing/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 06:18:16 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Buzzwords]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Collocation]]></category>
		<category><![CDATA[Hype]]></category>
		<category><![CDATA[Mark Maunder]]></category>

		<guid isPermaLink="false">http://iandunn.name/?p=1074</guid>
		<description><![CDATA[In a lot of ways I&#8217;m leery of the recent trends towards converting traditional products that you buy once and own into services that you have to lease every month, and hosting data with centralized corporate networks instead of locally, so I appreciate Mark Maunder&#8217;s post on <a title="Your Vision May be Clouded" href="http://markmaunder.com/2011/10/31/clouded-vision/">his experiences collocating his company&#8217;s hardware instead of using the cloud</a> . I think there are valid cases for the cloud,... [<a href="http://iandunn.name/deflating-the-hype-behind-cloud-computing/">more</a>]]]></description>
			<content:encoded><![CDATA[<p>In a lot of ways I&#8217;m leery of the recent trends towards converting traditional products that you buy once and own into services that you have to lease every month, and hosting data with centralized corporate networks instead of locally, so I appreciate Mark Maunder&#8217;s post on <a title="Your Vision May be Clouded" href="http://markmaunder.com/2011/10/31/clouded-vision/">his experiences collocating his company&#8217;s hardware instead of using the cloud</a>. I think there are valid cases for the cloud, but there are also <a title="The Desktop or the Cloud?" href="http://www.filterjoe.com/2009/05/29/the-desktop-or-the-cloud/">a lot of drawbacks</a> that get dismissed in all the hype surrounding it.</p>
]]></content:encoded>
			<wfw:commentRss>http://iandunn.name/deflating-the-hype-behind-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Correct Way to Roll Cables</title>
		<link>http://iandunn.name/the-correct-way-to-roll-cables/</link>
		<comments>http://iandunn.name/the-correct-way-to-roll-cables/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 21:01:57 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Cabling]]></category>

		<guid isPermaLink="false">http://iandunn.name/?p=684</guid>
		<description><![CDATA[This video explains <a href="http://www.youtube.com/watch?v=ccGwO8BisjU">the right way to roll cables</a> , alternating over- and under-hand loops to maintain the natural curve of the cable. Using this method helps avoid knots, makes it quicker to unravel, reduces wear on the cable and makes it easier to get a clean, symmetrical coil. The video is geared towards audio cables, but applies equally to networking and... [<a href="http://iandunn.name/the-correct-way-to-roll-cables/">more</a>]]]></description>
			<content:encoded><![CDATA[<p>This video explains <a href="http://www.youtube.com/watch?v=ccGwO8BisjU">the right way to roll cables</a>, alternating over- and under-hand loops to maintain the natural curve of the cable. Using this method helps avoid knots, makes it quicker to unravel, reduces wear on the cable and makes it easier to get a clean, symmetrical coil. The video is geared towards audio cables, but applies equally to networking and other types of cabling.</p>
<p>At the end he demonstrates a way to secure the ends without velcro straps, which is useful because straps and ties are less common in the IT world. I don&#8217;t think his method works well for stiffer cables, like CAT5, though, so I prefer to run the last 2-3&#8242; through the entire loop, alternating inside and outside, and then slipping the end between two parallel sections to hold it in place.</p>
]]></content:encoded>
			<wfw:commentRss>http://iandunn.name/the-correct-way-to-roll-cables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memorable IP Address</title>
		<link>http://iandunn.name/memorable-ip-address/</link>
		<comments>http://iandunn.name/memorable-ip-address/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 21:16:29 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[IP Addresses]]></category>

		<guid isPermaLink="false">http://iandunn.name/workblog/?p=248</guid>
		<description><![CDATA[If you&#8217;re troubleshooting a network&#8217;s uplink to the Internet and want a memorable external IP address to ping, then you can use 4.2.2.2, which is one of Verizon&#8217;s DNS servers.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re troubleshooting a network&#8217;s uplink to the Internet and want a memorable external IP address to ping, then you can use 4.2.2.2, which is one of Verizon&#8217;s DNS servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://iandunn.name/memorable-ip-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

