<?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>IPCPU——网络之路 &#187; VPN</title>
	<atom:link href="http://www.ipcpu.com/tag/vpn/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ipcpu.com</link>
	<description></description>
	<lastBuildDate>Sat, 03 Dec 2011 17:16:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>N2N VPN服务器的搭建</title>
		<link>http://www.ipcpu.com/2010/10/n2n-vpn/</link>
		<comments>http://www.ipcpu.com/2010/10/n2n-vpn/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 04:57:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[心情杂感]]></category>
		<category><![CDATA[Campagnol]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[n2n]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[架设]]></category>
		<category><![CDATA[运维]]></category>

		<guid isPermaLink="false">http://www.ipcpu.com/?p=773</guid>
		<description><![CDATA[2008年，ntop的作者Luca Deri开始研究p2p VPN，他一方面看到公众对p2p VPN有着强烈的需求，另一方面又不满足已有产品的现状，于是n2n诞生了。 如上图所示，n2n是一个二层架构的VPN网络，其中super node提供场所，让两个位于NAT/防火墙之后的edge node进行会面，一旦双方完成首次握手，剩下的数据流就之发生在两个edge node之间，如果有一方的NAT属于对称型(symmetrical)，super node则还需继续为双方提供数据包的转发;edge node负责数据流的加解密，原理很简单。 对于一个VPN而言，主要涉及封装和加解密两个步骤，edge node使用UDP协议进行封装，目的是为了更好的兼容防火墙的策略，因为很多防火墙禁用了非TCP/UDP协议禁用。加密算法则采用了twofish，好处开源、简便，处理速度快。 为了降低设计难度，n2n利用了tap/tun虚拟网卡，这样做得好处是一方面软件尺寸极小，一方面源码的依赖性极低，可以很容易移植到嵌入式设备中，目前有openwrt的版本，在未来的计划中，还将移植到android和iPhone中。 相对于hamachi，n2n最大的优势在于： 1. 开源，任何人都可以检查代码，看看是否有猫腻，而hamachi是闭源的，LogMeIn是否会截获密钥不得而知，一旦截获密钥，就可以对流经 hamachi服务器的数据包进行解码。n2n的加解密过程由edge node实现，只有两端的用户知道协商好的共享密钥，super node无从知晓。 2. 灵活性，n2n允许用户在Internet上自行创建super node，也可以利用任何一个公开的super node。 hamachi用户则必须登录到LogMeIn服务器才能创建隧道。 n2n支持的OS也非常广，Linux、FreeBSD、MAC OSX、甚至windows 官方网站：http://www.ntop.org/n2n/ 软件下载：http://sourceforge.net/projects/ntop/files/ 软件安装：下载1.3.2版本源码  解压 make make install即可 安装完后，系统多了两个命令  edge和 supernode，edge是客户端，supernode是服务端。 服务端用法：supernode -l &#60;listening port&#62; 就这么简单。 supernode -l 8888 客户端用法： edge -a 3.3.3.4 -c wss -k wss -l 127.0.0.1:8888 &#38; [...]]]></description>
			<content:encoded><![CDATA[<p>2008年，ntop的作者Luca Deri开始研究p2p VPN，他一方面看到公众对p2p VPN有着强烈的需求，另一方面又不满足已有产品的现状，于是n2n诞生了。<br />
<a href="http://www.ipcpu.com/wp-content/uploads/2010/10/2.png"><img class="aligncenter size-full wp-image-774" title="2" src="http://www.ipcpu.com/wp-content/uploads/2010/10/2.png" alt="" width="442" height="295" /></a><br />
如上图所示，n2n是一个二层架构的VPN网络，其中super node提供场所，让两个位于NAT/防火墙之后的edge node进行会面，一旦双方完成首次握手，剩下的数据流就之发生在两个edge node之间，如果有一方的NAT属于对称型(symmetrical)，super node则还需继续为双方提供数据包的转发;edge node负责数据流的加解密，原理很简单。</p>
<p>对于一个VPN而言，主要涉及封装和加解密两个步骤，edge node使用UDP协议进行封装，目的是为了更好的兼容防火墙的策略，因为很多防火墙禁用了非TCP/UDP协议禁用。加密算法则采用了twofish，好处开源、简便，处理速度快。<br />
为了降低设计难度，n2n利用了tap/tun虚拟网卡，这样做得好处是一方面软件尺寸极小，一方面源码的依赖性极低，可以很容易移植到嵌入式设备中，目前有openwrt的版本，在未来的计划中，还将移植到android和iPhone中。</p>
<p>相对于hamachi，n2n最大的优势在于：<br />
1. 开源，任何人都可以检查代码，看看是否有猫腻，而hamachi是闭源的，LogMeIn是否会截获密钥不得而知，一旦截获密钥，就可以对流经 hamachi服务器的数据包进行解码。n2n的加解密过程由edge node实现，只有两端的用户知道协商好的共享密钥，super node无从知晓。</p>
<p>2. 灵活性，n2n允许用户在Internet上自行创建super node，也可以利用任何一个公开的super node。</p>
<p>hamachi用户则必须登录到LogMeIn服务器才能创建隧道。<br />
n2n支持的OS也非常广，Linux、FreeBSD、MAC OSX、甚至windows</p>
<p><strong>官方网站</strong>：http://www.ntop.org/n2n/<br />
<strong>软件下载</strong>：http://sourceforge.net/projects/ntop/files/<span id="more-773"></span></p>
<p>软件安装：下载1.3.2版本源码  解压 make make install即可</p>
<p>安装完后，系统多了两个命令  edge和 supernode，edge是客户端，supernode是服务端。</p>
<p><strong>服务端用法</strong>：supernode -l &lt;listening port&gt; 就这么简单。<br />
supernode -l 8888</p>
<p><strong>客户端用法</strong>：<br />
edge -a 3.3.3.4 -c wss -k wss -l 127.0.0.1:8888 &amp;<br />
edge -a 你需要的第2个ip地址 -c 你的虚拟网名 -k 你的密码  -l 服务器的ip地址:端口 &amp;</p>
<p>-d &lt;tun device&gt;          | tun device name  可选<br />
-a &lt;tun IP address&gt;    | n2n IP address<br />
-c &lt;community&gt;           | n2n community name<br />
-k &lt;encrypt key&gt;         | Encryption key (ASCII) &#8211; also N2N_KEY=&lt;encrypt key&gt;<br />
-s &lt;netmask&gt;             | Edge interface netmask in dotted decimal notation (255.255.255.0)<br />
-l &lt;supernode host:port&gt; | Supernode IP:port<br />
-b                       | Periodically resolve supernode IP<br />
| (when supernodes are running on dynamic IPs)<br />
-p &lt;local port&gt;          | Local port used for connecting to supernode<br />
-u &lt;UID&gt;                 | User ID (numeric) to use when privileges are dropped<br />
-g &lt;GID&gt;                 | Group ID (numeric) to use when privileges are dropped<br />
-f                       | Fork and run as a daemon. Use syslog.<br />
-m &lt;MAC address&gt;         | Choose a MAC address for the TAP interface<br />
| eg. -m 01:02:03:04:05:06<br />
-M &lt;mtu&gt;                 | Specify n2n MTU (default 1400)<br />
-t                       | Use http tunneling (experimental)<br />
-r                       | Enable packet forwarding through n2n community</p>
<p><strong>其他事项</strong>：<br />
1.数据包使用UDP 53端口，和DNS的一样。</p>
<p>2.算然数据不直接通过supernode，但supernode对速度影响还是很大，建议搭建自己的supernode。</p>
<p>3.n2n 软件Windows 版客户端<br />
http://www.vpnhosting.cz/n2nguien.exe</p>
<p><strong>参考资料：</strong><br />
http://www.ppcn.net/n5690c39.aspx<br />
http://bbs.chinaunix.net/viewthread.php?tid=1596037<br />
http://hi.baidu.com/viccom/blog/item/a308b195c36d5d43d1135e16.html<br />
http://www.ichiayi.com/wiki/tech/n2nvpn<br />
http://www.cublog.cn/u3/103983/showart_2085197.html</p>
<p><span style="color: #0000ff;">==========后记============</span></p>
<p>后记：写此文时很仓促，很多东西都没写。补充一下：</p>
<p><strong>1.提供一个supernode  88.86.108.50:82 [vpnhosting.cz提供]</strong></p>
<p>2.提供服务端运行语句：</p>
<p>supernode -l 8848 &gt;/dev/null 2&gt;&amp;1 &amp;</p>
<p>先在前台运行，调试好以后，将所有输出 定向到 /dev/null 并且在后台运行</p>
<p>调试时，服务端可能会出现如下错误</p>
<p>15/Oct/2010 03:25:22 [supernode.c: 325] WARNING: Received packet with unknown protocol version (2): discarded</p>
<p>3.使用windows下客户端登录时，默认使用V2版本协议，服务端可能不识别，请将windows下客户端版本调至V1.</p>
<p>4.提供windows下服务端程序，程序来源互联网，<a href="http://www.ipcpu.com/wp-content/uploads/supernode.zip" target="_blank">点此下载//本站提供下载</a>，经测试该版本只能使用V2版本</p>
<p>5.提供地址一个，里面发布了windows版客户端和服务端，全部在DOS下开启命令</p>
<p><a href="http://www.gamespot.com/pages/forums/show_msgs.php?topic_id=26973101">http://www.gamespot.com/pages/forums/show_msgs.php?topic_id=26973101</a></p>
<p>6.提供windows下DOS版本N2N 客户端和服务端 由上面地址发布</p>
<p><a href="http://uploading.com/files/f29cf25d/n2n%2Bv1.3.3.rar/">http://uploading.com/files/f29cf25d/n2n%2Bv1.3.3.rar/</a></p>
<p>7.提供sourceforge开源项目一个，N2N 客户端GUI</p>
<p><a href="http://sourceforge.net/projects/n2nedgegui/">http://sourceforge.net/projects/n2nedgegui/</a></p>
<p>======================</p>
<p><strong>另附：Campagnol VPN  使用的一些感受，没有进行详细测试</strong></p>
<p>Campagnol 是一个分布式基于IP的 VPN程序，可以无配置的直接透过防火墙和 NATs，使用的是传输层的 UDP</p>
<p>原理是和N2N一样的，只不过他是使用的密钥方式管理。</p>
<p>下载地址：<br />
http://sourceforge.net/projects/campagnol/files/</p>
<p>使用方法：<br />
安装<br />
签发CA和密钥<br />
运行服务端和客户端</p>
<p>存在的缺陷：<br />
1.密钥方式管理，比较复杂<br />
2.对服务端依赖太多（CA）<br />
3.IP是由客户端自行制定，如何进行区分？</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipcpu.com/2010/10/n2n-vpn/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>openvpn相关问题解答</title>
		<link>http://www.ipcpu.com/2010/10/openvpn-some-question/</link>
		<comments>http://www.ipcpu.com/2010/10/openvpn-some-question/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 02:01:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[架设]]></category>

		<guid isPermaLink="false">http://www.ipcpu.com/?p=771</guid>
		<description><![CDATA[1.针对客户端做不同设置 配置文件中“client-config-dir”指明 Client 的专有配置文件目录。在这个目录下可以针对特定用户建立配置文件。 例如，要为用户 abc 指定一个 IP 地址（如10.1.1.5）而不是让 VPN Server 自动分配。 ifconfig-push 10.1.1.5 10.1.1.6 2.证书吊销 cd /openvpn-2.0.5/easy-rsa . vars ./revoke-full client1 这样会会在 keys 目录下面， 生成一个 crl.pem 文件。 然后再配置文件中 crl-verify crl.pem 重启服务即 3.关于重启服务 kill -SIGHUP xxx 重启服务后，客户端连接不会立即断掉，服务端会重新为客户端配置新的IP地址，但在双方重新建立连接过程中 ，客户端会协商使用原来的IP，协商成功原有IP就不会改变。 4.openvpn的管理界面 配置文件中加入management localhost 4444重启服务 然后 telnet localhost 4444登录，可以给管理界面设置密码，可以实现查看当前连接，踢掉当前连接等操作，踢 掉后客户端会自动重连。 5.监听地址 local 70.8.7.6 注释此行，默认监听所有地址。 参考资料: http://bbs.chinaunix.net/thread-503434-1-1.html http://bbs.chinaunix.net/viewthread.php?tid=513004 http://bbs.chinaunix.net/thread-830695-1-1.html [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1.针对客户端做不同设置</strong></p>
<p>配置文件中“client-config-dir”指明 Client 的专有配置文件目录。在这个目录下可以针对特定用户建立配置文件。</p>
<p>例如，要为用户 abc 指定一个 IP 地址（如10.1.1.5）而不是让 VPN Server 自动分配。<br />
ifconfig-push 10.1.1.5 10.1.1.6</p>
<p><strong>2.证书吊销</strong></p>
<p>cd /openvpn-2.0.5/easy-rsa<br />
. vars<br />
./revoke-full client1<br />
这样会会在 keys 目录下面， 生成一个 crl.pem 文件。</p>
<p>然后再配置文件中<br />
crl-verify crl.pem<br />
重启服务即</p>
<p><strong>3.关于重启服务</strong></p>
<p>kill -SIGHUP xxx<br />
重启服务后，客户端连接不会立即断掉，服务端会重新为客户端配置新的IP地址，但在双方重新建立连接过程中</p>
<p>，客户端会协商使用原来的IP，协商成功原有IP就不会改变。</p>
<p><strong>4.openvpn的管理界面</strong></p>
<p>配置文件中加入management localhost 4444重启服务<br />
然后 telnet localhost 4444登录，可以给管理界面设置密码，可以实现查看当前连接，踢掉当前连接等操作，踢</p>
<p>掉后客户端会自动重连。</p>
<p><strong>5.监听地址</strong></p>
<p>local 70.8.7.6<br />
注释此行，默认监听所有地址。</p>
<p><strong>参考资料:</strong><br />
http://bbs.chinaunix.net/thread-503434-1-1.html<br />
http://bbs.chinaunix.net/viewthread.php?tid=513004<br />
http://bbs.chinaunix.net/thread-830695-1-1.html<br />
http://www.xiaohui.com/dev/server/20070514-install-openvpn.htm<br />
http://www.xiaohui.com/dev/server/20070904-revoke-openvpn-client.htm</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipcpu.com/2010/10/openvpn-some-question/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenVPN服务器架设</title>
		<link>http://www.ipcpu.com/2010/10/openvpn-one/</link>
		<comments>http://www.ipcpu.com/2010/10/openvpn-one/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 14:00:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[架设]]></category>

		<guid isPermaLink="false">http://www.ipcpu.com/?p=768</guid>
		<description><![CDATA[1.kernel 需要支持 tun 设备, 需要加载 iptables 模块. 检查 tun 是否安装: 代码: root@a [/]# modinfo tun filename:    /lib/modules/2.4.20-31.9/kernel/drivers/net/tun.o description:  author:       license:     &#8220;GPL&#8221; 2.下载lzo和openvpn安装 3.CA的生成 进入openvpn安装目录下的easy-rsa文件夹 编辑vars，最后几条改成自己的 然后运行： source ./vars ./clean-all ./build-ca 4.DH加密算法生成 ./build-dh 5.服务器key生成 ./build-key-server server 6.客户端key生成 ./build-key client1 7.制作服务器端 把easy-rsa/2.0/keys下的ca.crt server.crt server.key  dh1024.pem 复制到特定文件夹，我这里用的/usr/local/openvpn/etc cp 安装目录/sample-config-files/server.conf   /usr/local/openvpn/etc 编辑server.conf选项 8.启动服务器 /usr/local/openvpn/sbin/openvpn &#8211;config /usr/local/openvpn/etc/server.conf &#62; /dev/null 2&#62;&#38;1 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1.kernel 需要支持 tun 设备, 需要加载 iptables 模块.</strong><br />
检查 tun 是否安装:<br />
代码:<br />
<a href="mailto:root@a">root@a</a> [/]# modinfo tun<br />
filename:    /lib/modules/2.4.20-31.9/kernel/drivers/net/tun.o<br />
description: <br />
author:      <br />
license:     &#8220;GPL&#8221;</p>
<p><strong>2.下载lzo和openvpn安装</strong></p>
<p><strong>3.CA的生成</strong><br />
进入openvpn安装目录下的easy-rsa文件夹<br />
编辑vars，最后几条改成自己的<br />
然后运行：<br />
source ./vars<br />
./clean-all<br />
./build-ca</p>
<p><strong>4.DH加密算法生成</strong><br />
./build-dh</p>
<p><strong>5.服务器key生成</strong></p>
<p>./build-key-server server<span id="more-768"></span></p>
<p><strong>6.客户端key生成</strong><br />
./build-key client1</p>
<p><strong>7.制作服务器端</strong><br />
把easy-rsa/2.0/keys下的ca.crt server.crt server.key  dh1024.pem 复制到特定文件夹，我这里用的/usr/local/openvpn/etc</p>
<p>cp 安装目录/sample-config-files/server.conf   /usr/local/openvpn/etc</p>
<p>编辑server.conf选项</p>
<p><strong>8.启动服务器</strong></p>
<p>/usr/local/openvpn/sbin/openvpn &#8211;config /usr/local/openvpn/etc/server.conf &gt; /dev/null 2&gt;&amp;1 &amp;</p>
<p><strong>9.客户端制作</strong></p>
<p>复制easy-rsa/2.0/keys中的ca.crt ca.key client1.crt client1.csr client1.key<br />
复制 安装目录/sample-config-files/client.conf修改选项，改成client.ovpn<br />
右键启用即可。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipcpu.com/2010/10/openvpn-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pptpd VPN服务器的架设</title>
		<link>http://www.ipcpu.com/2010/10/pptpd-vpn/</link>
		<comments>http://www.ipcpu.com/2010/10/pptpd-vpn/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 13:44:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PPTP]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[架设]]></category>

		<guid isPermaLink="false">http://www.ipcpu.com/?p=766</guid>
		<description><![CDATA[记录备忘，抄的内网论坛的。 一、pptpd VPN需要内核支持mppe，使用以下命令检测 modprobe ppp-compress-18 &#38;&#38; echo success 如果反馈信息为“success”则说明内核支持mppe 二、用以下命令检查PPP是否支持MPPE strings /usr/sbin/pppd &#124; grep -i mppe&#124; wc &#8211;lines 如果返回数值大于30就表示支持 三、要安装pptpd VPN，ppp和iptables这两个软件是必须安装的，安装命令： yum install -y ppp iptables 四、下载并安装pptpd 到http://poptop.sourceforge.net/ 下载pptpd的rpm包并安装 rpm -ivh http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-1.rhel5.1.i386.rpm 五、编辑配置文件 /etc/ppp/options.pptpd 内容如下： name pptpd refuse-pap refuse-chap refuse-mschap require-mschap-v2 require-mppe-128 proxyarp lock nobsdcomp novj novjccomp nologfd ms-dns 202.99.166.4 ms-dns 202.99.160.68 六、编辑配置文件 /etc/pptpd.conf 内容如下： [...]]]></description>
			<content:encoded><![CDATA[<p>记录备忘，抄的内网论坛的。<br />
<strong>一、pptpd VPN需要内核支持mppe，使用以下命令检测</strong><br />
modprobe ppp-compress-18 &amp;&amp; echo success</p>
<p>如果反馈信息为“success”则说明内核支持mppe<br />
<strong>二、用以下命令检查PPP是否支持MPPE</strong><br />
strings /usr/sbin/pppd | grep -i mppe| wc &#8211;lines</p>
<p>如果返回数值大于30就表示支持<br />
<strong>三、要安装pptpd VPN，ppp和iptables这两个软件是必须安装的，安装命令：</strong><br />
yum install -y ppp iptables<br />
<strong>四、下载并安装pptpd</strong></p>
<p>到<a href="http://poptop.sourceforge.net/">http://poptop.sourceforge.net/</a> 下载pptpd的rpm包并安装<span id="more-766"></span></p>
<p>rpm -ivh <a href="http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-1.rhel5.1.i386.rpm">http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-1.rhel5.1.i386.rpm</a></p>
<p><strong>五、编辑配置文件 /etc/ppp/options.pptpd 内容如下：</strong><br />
name pptpd</p>
<p>refuse-pap</p>
<p>refuse-chap</p>
<p>refuse-mschap</p>
<p>require-mschap-v2</p>
<p>require-mppe-128</p>
<p>proxyarp</p>
<p>lock</p>
<p>nobsdcomp</p>
<p>novj</p>
<p>novjccomp</p>
<p>nologfd</p>
<p>ms-dns 202.99.166.4</p>
<p>ms-dns 202.99.160.68</p>
<p><strong>六、编辑配置文件 /etc/pptpd.conf 内容如下：</strong><br />
option /etc/ppp/options.pptpd</p>
<p>logwtmp</p>
<p>localip 192.168.0.10</p>
<p>remoteip 192.168.1.11-15</p>
<p>#localip：VPN服务器的IP地址</p>
<p>#remoteip：VPN客户端的IP地址<br />
<strong>七、编辑配置文件 /etc/ppp/chap-secrets,配置用户名为ray，密码为123123，内容如下：</strong><br />
ray pptpd 123123 *</p>
<p>#格式：用户名 服务器名 密码 IP（*表示由服务器动态分配）</p>
<p><strong>另有参考资料：</strong><br />
<a href="http://ihipop.info/2010/06/1265.html">http://ihipop.info/2010/06/1265.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipcpu.com/2010/10/pptpd-vpn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>又一款免费VPN软件ifreevpn</title>
		<link>http://www.ipcpu.com/2010/01/free-vpn-software/</link>
		<comments>http://www.ipcpu.com/2010/01/free-vpn-software/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 03:02:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[软件分享]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[免费]]></category>

		<guid isPermaLink="false">http://www.ipcpu.com/?p=421</guid>
		<description><![CDATA[软件名称：ifreevpn 官方网站：http://thefreevpn.com/ USA &#124; UK &#124; Canada &#124; Italy &#124; Germany &#124; Sweden &#124; France &#124; China多条线路 无需注册，软件修改IE首页，请注意！ ============================================== 最新情报：官方网站已经访问不了了 为什么会有这么多人再找VPN呢？ 推荐大家使用Firefox+AutoProxy+SSH隧道访问国外网站。 详细内容大家可以谷歌一下，只有SSH隧道，还是推荐sshcenter的服务，便宜每月5块，效果不错。]]></description>
			<content:encoded><![CDATA[<p><strong>软件名称</strong>：ifreevpn</p>
<p><strong>官方网站</strong>：<a href="http://thefreevpn.com/">http://thefreevpn.com/</a></p>
<p>USA | UK | Canada | Italy | Germany | Sweden | France | China多条线路</p>
<p>无需注册，软件修改IE首页，请注意！</p>
<p>==============================================</p>
<p>最新情报：官方网站已经访问不了了</p>
<p>为什么会有这么多人再找VPN呢？</p>
<p>推荐大家使用Firefox+AutoProxy+SSH隧道访问国外网站。</p>
<p>详细内容大家可以谷歌一下，只有SSH隧道，还是推荐sshcenter的服务，便宜每月5块，效果不错。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipcpu.com/2010/01/free-vpn-software/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

