<?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/"
	>

<channel>
	<title>DarkIces</title>
	<atom:link href="http://blog.darkices.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.darkices.com</link>
	<description>DarkIce's Blog</description>
	<pubDate>Wed, 28 Apr 2010 06:41:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>php设置强制使用https访问</title>
		<link>http://blog.darkices.com/archive/php-force-https-visit.html</link>
		<comments>http://blog.darkices.com/archive/php-force-https-visit.html#comments</comments>
		<pubDate>Wed, 28 Apr 2010 06:41:03 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[技术]]></category>

		<category><![CDATA[https]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=892</guid>
		<description><![CDATA[<p>出于安全等考虑，可能需要设置强制https访问，那么php中可以采取如下设置。<br />
代码如下：</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox... 


<strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/add-ipv6-tunnel.html' rel='bookmark' title='Permanent Link: 添加IPv6管道'>添加IPv6管道</a></li>
<li><a href='http://blog.darkices.com/archive/php-code-domain-name-jump.html' rel='bookmark' title='Permanent Link: 域名跳转php代码'>域名跳转php代码</a></li>
<li><a href='http://blog.darkices.com/archive/build-ssh-proxy-on-vps.html' rel='bookmark' title='Permanent Link: 利用VPS架设ssh代理'>利用VPS架设ssh代理</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>出于安全等考虑，可能需要设置强制https访问，那么php中可以采取如下设置。<br />
代码如下：</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p892code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p8922"><td class="code" id="p892code2"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;HTTPS&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">&lt;&gt;</span><span style="color: #0000ff;">&quot;on&quot;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$xredir</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;https://&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;SERVER_NAME&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span>
        <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;REQUEST_URI&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>   <a href="http://www.php.net/header"><span style="color: #990000;">header</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Location: &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$xredir</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>如果要强制非https访问那么把<>改成==就可以了。</p>
<p>https访问需要响应的ssl证书，默认的不可信任倒是也没关系，如果需要可信任的证书，可参考以下文章：<br />
http://zou.lu/nginx-https-ssl-module/<br />
http://blog.s135.com/startssl/<br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/2b">http://dki.me/2b</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/add-ipv6-tunnel.html' rel='bookmark' title='Permanent Link: 添加IPv6管道'>添加IPv6管道</a></li>
<li><a href='http://blog.darkices.com/archive/php-code-domain-name-jump.html' rel='bookmark' title='Permanent Link: 域名跳转php代码'>域名跳转php代码</a></li>
<li><a href='http://blog.darkices.com/archive/build-ssh-proxy-on-vps.html' rel='bookmark' title='Permanent Link: 利用VPS架设ssh代理'>利用VPS架设ssh代理</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/php-force-https-visit.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>OpenVPN设置不同IP走不同路由</title>
		<link>http://blog.darkices.com/archive/openvpn-set-different-ip-through-different-route.html</link>
		<comments>http://blog.darkices.com/archive/openvpn-set-different-ip-through-different-route.html#comments</comments>
		<pubDate>Mon, 05 Apr 2010 15:24:34 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[技术]]></category>

		<category><![CDATA[openvpn]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=888</guid>
		<description><![CDATA[<p>方法一：<br />
默认走OpenVPN，把不走OpenVPN的IP按下列方法设置<br />
把类似于下面的代码加到OpenVPN的配置文件后面：</p>
<blockquote><p>max-routes 1000<br />
route 58.17.0.0 255.255.0.0 net_gateway<br />
route 58.18.... 


<strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/build-openvpn-on-ipv6.html' rel='bookmark' title='Permanent Link: 架设ipv6下的openvpn'>架设ipv6下的openvpn</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>方法一：<br />
默认走OpenVPN，把不走OpenVPN的IP按下列方法设置<br />
把类似于下面的代码加到OpenVPN的配置文件后面：</p>
<blockquote><p>max-routes 1000<br />
route 58.17.0.0 255.255.0.0 net_gateway<br />
route 58.18.0.0 255.254.0.0 net_gateway<br />
route 58.20.0.0 255.255.0.0 net_gateway<br />
route 58.24.0.0 255.254.0.0 net_gateway<br />
route 58.30.12.136 255.255.255.255 net_gateway</p></blockquote>
<p>附：<a href="http://kangzj.net/upload/freeip.txt">教育网freeip.txt</a> <a href="http://ftp.apnic.net/apnic/dbase/data/country-ipv4.lst">中国IP地址分配列表</a></p>
<p>方法二：<br />
默认不走OpenVPN，设定部分IP通过OpenVPN访问<br />
把类似于下面的代码加到OpenVPN的配置文件后面：</p>
<blockquote><p>route-nopull<br />
# vpnchina sever<br />
route 174.36.181.0 255.255.255.0 net_gateway<br />
#ustream<br />
route 96.17.8.0 255.255.255.0 vpn_gateway<br />
#no21984.org<br />
route 97.74.203.0 255.255.255.0 vpn_gateway<br />
#archive<br />
route 207.241.0.0 255.255.0.0 vpn_gateway<br />
#isohunt<br />
route 208.71.112.0 255.255.255.0 vpn_gateway<br />
# zkaip<br />
route 174.37.148.0 255.255.255.0 vpn_gateway<br />
#bit.ly<br />
route 168.143.173.0 255.255.255.0 vpn_gateway<br />
#adobe<br />
route 192.150.0.0 255.255.0.0 vpn_gateway<br />
# ke neng ba<br />
route 74.207.248.0 255.255.255.0 vpn_gateway<br />
# python<br />
route 82.94.164.0 255.255.255.0 vpn_gateway<br />
#ur.ly<br />
route 216.239.34.0 255.255.255.0 vpn_gateway<br />
#iphonedownloadblog<br />
route 66.33.209.0 255.255.255.0 vpn_gateway<br />
# uncyclopedia<br />
route 96.45.180.0 255.255.255.0 vpn_gateway<br />
#mediafire<br />
route 93.46.8.0 255.255.255.0 vpn_gateway<br />
route 8.7.198.0 255.255.255.0 vpn_gateway<br />
route 37.61.54.0 255.255.255.0 vpn_gateway<br />
# blackra1n<br />
route 74.220.215.0 255.255.255.0 vpn_gateway<br />
#r f a<br />
route 63.85.36.0 255.255.255.0 vpn_gateway<br />
#yam<br />
route 60.199.252.0 255.255.255.0 vpn_gateway<br />
#wei quan wang<br />
route 75.125.252.0 255.255.255.0 vpn_gateway<br />
#ff.im<br />
route 64.13.142.0 255.255.255.0 vpn_gateway<br />
# plurk<br />
route 74.120.121.0 255.255.255.0 vpn_gateway<br />
# b b c<br />
route 212.58.240.0 255.255.248.0 vpn_gateway<br />
# xiaochun<br />
route 210.157.5.0 255.255.255.0 vpn_gateway<br />
# dropbox<br />
route 174.129.212.0 255.255.255.0 vpn_gateway<br />
# wikimedia<br />
route 208.80.152.0 255.255.255.0 vpn_gateway<br />
# akamai<br />
route 63.150.131.0 255.255.255.0 vpn_gateway<br />
# flickr<br />
route 67.195.19.0 255.255.255.0 vpn_gateway<br />
route 69.147.90.0 255.255.255.0 vpn_gateway<br />
# twitbrowser<br />
route 97.74.144.0 255.255.255.0 vpn_gateway<br />
# ipaddl<br />
route 67.19.72.0 255.255.255.0 vpn_gateway<br />
# delicious<br />
route 76.13.6.0 255.255.255.0 vpn_gateway<br />
# sendspace<br />
route 216.151.186.0 255.255.255.0 vpn_gateway<br />
#emule<br />
route 74.53.185.0 255.255.255.0 vpn_gateway<br />
# dev-team<br />
route 72.32.231.0 255.255.255.0 vpn_gateway<br />
# hellotxt<br />
route 212.239.17.0 255.255.255.0 vpn_gateway<br />
# Mediafire<br />
route 205.196.120.0 255.255.255.0 vpn_gateway<br />
# Geocity<br />
route 202.93.87.0 255.255.255.0 vpn_gateway<br />
#tinypic<br />
route 209.17.74.0 255.255.255.0 vpn_gateway<br />
# ultraxs.com<br />
route 93.46.8.0 255.255.255.0 vpn_gateway<br />
# AOL<br />
route 64.12.0.0 255.255.0.0 vpn_gateway<br />
route 207.200.64.0 255.255.192.0 vpn_gateway<br />
route 205.188.0.0 255.255.0.0 vpn_gateway<br />
# NTT Twitter<br />
route 168.143.0.0 255.255.0.0 vpn_gateway<br />
route 128.121.0.0 255.255.0.0 vpn_gateway<br />
# Cloud Front (Twitter)<br />
route 216.137.32.0 255.255.224.0 vpn_gateway<br />
# Facebook<br />
route 159.106.121.0 255.255.255.0 vpn_gateway<br />
route 69.63.176.0 255.255.240.0 vpn_gateway<br />
route 66.220.144.0 255.255.240.0 vpn_gateway<br />
# Akamai (Facebook)<br />
route 72.246.0.0 255.254.0.0 vpn_gateway<br />
route 204.2.171.0 255.255.255.0 vpn_gateway<br />
# Youtube / Google<br />
route 8.8.0.0 255.255.0.0 vpn_gateway<br />
route 66.249.0.0 255.255.0.0 vpn_gateway<br />
route 74.125.0.0 255.255.0.0 vpn_gateway<br />
route 209.85.128.0 255.255.128.0 vpn_gateway<br />
route 202.78.112.0 255.255.240.0 vpn_gateway<br />
route 66.102.0.0 255.255.240.0 vpn_gateway<br />
route 208.65.152.0 255.255.252.0 vpn_gateway<br />
# Revsci<br />
route 216.223.0.0 255.255.0.0 vpn_gateway<br />
# Amazon<br />
route 174.129.0.0 255.255.0.0 vpn_gateway<br />
# Omroep<br />
route 145.58.0.0 255.255.0.0 vpn_gateway<br />
# Transip<br />
route 80.69.64.0 255.255.224.0 vpn_gateway<br />
# Hurricane Electric (mail-archive.com)<br />
route 72.52.64.0 255.255.192.0 vpn_gateway<br />
# GoDaddy<br />
route 64.202.160.0 255.255.224.0 vpn_gateway<br />
# PsiNET<br />
route 38.0.0.0 255.0.0.0 vpn_gateway<br />
# Wordpress<br />
route 72.233.0.0 255.255.128.0 vpn_gateway<br />
route 74.200.192.0 255.255.192.0 vpn_gateway<br />
route 76.74.254.0  255.255.255.128 vpn_gateway<br />
route 65.52.0.0 255.252.0.0 vpn_gateway<br />
# Spotify<br />
route 78.31.8.0 255.255.255.0 vpn_gateway<br />
# The Planet<br />
route 74.52.0.0 255.252.0.0 vpn_gateway<br />
# Slicehost / Posterous<br />
route 67.207.128.0 255.255.224.0 vpn_gateway<br />
# Softlayer / Twitpic<br />
route 174.36.0.0 255.254.0.0 vpn_gateway<br />
route 66.228.120.0 255.255.255.0 vpn_gateway<br />
# Vimeo<br />
route 66.235.112.0 255.255.240.0 vpn_gateway<br />
route 208.67.232.0 255.255.248.0 vpn_gateway<br />
route 72.21.192.0 255.255.224.0 vpn_gateway<br />
# Wefollow<br />
route 70.32.64.0 255.255.192.0 vpn_gateway<br />
# blogspot<br />
route 64.233.160.0 255.255.224.0 vpn_gateway<br />
route 72.14.192.0 255.255.192.0 vpn_gateway<br />
# badongo<br />
route 216.45.48.0 255.255.240.0 vpn_gateway<br />
# www.wenxuecity.com / psinet<br />
route 38.0.0.0 255.0.0.0 vpn_gateway<br />
# Twitpic<br />
route 74.86.0.0 255.255.0.0 vpn_gateway<br />
# www.dwnews.com / level3<br />
route 209.244.0.0 255.252.0.0 vpn_gateway<br />
# www.6park.com / the planet<br />
route 74.52.0.0 255.252.0.0 vpn_gateway<br />
# Backchina / the planet<br />
route 209.62.0.0 255.255.128.0 vpn_gateway<br />
# yFrog<br />
route 208.94.0.0 255.255.252.0 vpn_gateway<br />
# opera<br />
route 213.236.128.0 255.255.128.0 vpn_gateway</p></blockquote>
<p>方法三：<br />
直接使用chnroutes<br />
使用方法参见<a href="http://code.google.com/p/chnroutes/wiki/Usage" target="_blank">http://code.google.com/p/chnroutes/wiki/Usage</a></p>
<p>方法四：<br />
直接使用DOS命令添加路由。这种方法对其它各类的VPN应该是通用的。<br />
例如在命令行下运行如下命令（如果不熟悉的话，不推荐使用该方法）：</p>
<blockquote><p>route add 110.6.0.0 mask 255.254.0.0 %gw% metric 5<br />
route add 110.16.0.0 mask 255.252.0.0 %gw% metric 5<br />
route add 110.40.0.0 mask 255.252.0.0 %gw% metric 5<br />
route add 110.48.0.0 mask 255.255.0.0 %gw% metric 5<br />
route add 110.51.0.0 mask 255.255.0.0 %gw% metric 5<br />
route add 110.52.0.0 mask 255.254.0.0 %gw% metric 5<br />
route add 110.56.0.0 mask 255.248.0.0 %gw% metric 5<br />
route add 110.64.0.0 mask 255.254.0.0 %gw% metric 5<br />
route add 110.72.0.0 mask 255.254.0.0 %gw% metric 5</p></blockquote>
<p>附：<a href="http://chnroutes.googlecode.com/files/pre_created_for_win.zip">国内IP地址路由</a></p>
<p>参考文章：<br />
http://kangzj.net/how-to-add-local-route-for-openvpn/<br />
http://xiaolife.com/wordpress/use-openvpn-route-and-vpn_gateway/<br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/2a">http://dki.me/2a</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/build-openvpn-on-ipv6.html' rel='bookmark' title='Permanent Link: 架设ipv6下的openvpn'>架设ipv6下的openvpn</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/openvpn-set-different-ip-through-different-route.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>PR更新为1</title>
		<link>http://blog.darkices.com/archive/pr-change-to-1.html</link>
		<comments>http://blog.darkices.com/archive/pr-change-to-1.html#comments</comments>
		<pubDate>Sat, 03 Apr 2010 09:35:55 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[杂谈]]></category>

		<category><![CDATA[pr]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=886</guid>
		<description><![CDATA[<p>中午看到某人说自己的网址PR上升到5了，刚才发现自己的博客网址也升到1了。<br />
看来google是很重视愚人节的啊。。</p>
<p>开博差不多整3个月，在此留个记号。<br />
<blockquote>
<p style="padding-t... 


<strong><span style="text-decoration: underline;">没有相关文章。</span></strong>]]></description>
			<content:encoded><![CDATA[<p>中午看到某人说自己的网址PR上升到5了，刚才发现自己的博客网址也升到1了。<br />
看来google是很重视愚人节的啊。。</p>
<p>开博差不多整3个月，在此留个记号。<br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/29">http://dki.me/29</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">没有相关文章。</span></strong></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/pr-change-to-1.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>经典游戏重绘（转）</title>
		<link>http://blog.darkices.com/archive/%e7%bb%8f%e5%85%b8%e6%b8%b8%e6%88%8f%e9%87%8d%e7%bb%98%ef%bc%88%e8%bd%ac%ef%bc%89.html</link>
		<comments>http://blog.darkices.com/archive/%e7%bb%8f%e5%85%b8%e6%b8%b8%e6%88%8f%e9%87%8d%e7%bb%98%ef%bc%88%e8%bd%ac%ef%bc%89.html#comments</comments>
		<pubDate>Tue, 30 Mar 2010 07:22:33 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[杂谈]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=883</guid>
		<description><![CDATA[<p><a href="http://www.isweetriver.com/2010/videogame-remakes" target="_blank">http://www.isweetriver.com/2010/videogame-remakes</a></p>
<blockquote><p>Blizzard花了10年把星际争霸从1.x升到了2.x，哥是彻底的玻璃渣粉丝，但在版本... 


<strong><span style="text-decoration: underline;">没有相关文章。</span></strong>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.isweetriver.com/2010/videogame-remakes" target="_blank">http://www.isweetriver.com/2010/videogame-remakes</a></p>
<blockquote><p>Blizzard花了10年把星际争霸从1.x升到了2.x，哥是彻底的玻璃渣粉丝，但在版本号这点上，Blizzard和我们QQ无法匹敌，另一方面，只恨自己的T60年事已高，打开游戏效果全关，整个画面仿佛在放幻灯片，完全是凭借着精神力打败了电脑。</p>
<p>20世纪到21世纪，想想那些伴随着我们走过了无数美好时光的FC游戏如果现在用新的技术被重新制作出来，那会是什么样呢？</p></blockquote>
<p>图片就不转过来了，有兴趣的自己点第一个链接看吧，可惜没认出几个游戏。。。<br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/28">http://dki.me/28</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">没有相关文章。</span></strong></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/%e7%bb%8f%e5%85%b8%e6%b8%b8%e6%88%8f%e9%87%8d%e7%bb%98%ef%bc%88%e8%bd%ac%ef%bc%89.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google的https搜索</title>
		<link>http://blog.darkices.com/archive/google%e7%9a%84https%e6%90%9c%e7%b4%a2.html</link>
		<comments>http://blog.darkices.com/archive/google%e7%9a%84https%e6%90%9c%e7%b4%a2.html#comments</comments>
		<pubDate>Fri, 26 Mar 2010 08:01:42 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[杂谈]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=881</guid>
		<description><![CDATA[<p>https://www.google.com/uds/samples/apidocs/helloworld.html</p>
<p>https搜索，因此不会被审查，不会被reset。<br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/... 


<strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/reproduced-two-articles-on-the-google.html' rel='bookmark' title='Permanent Link: 关于google转载2篇文章'>关于google转载2篇文章</a></li>
<li><a href='http://blog.darkices.com/archive/google%e8%b5%b0%e4%ba%86.html' rel='bookmark' title='Permanent Link: Google走了'>Google走了</a></li>
<li><a href='http://blog.darkices.com/archive/west-chamber-plan.html' rel='bookmark' title='Permanent Link: 西厢计划'>西厢计划</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>https://www.google.com/uds/samples/apidocs/helloworld.html</p>
<p>https搜索，因此不会被审查，不会被reset。<br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/26">http://dki.me/26</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/reproduced-two-articles-on-the-google.html' rel='bookmark' title='Permanent Link: 关于google转载2篇文章'>关于google转载2篇文章</a></li>
<li><a href='http://blog.darkices.com/archive/google%e8%b5%b0%e4%ba%86.html' rel='bookmark' title='Permanent Link: Google走了'>Google走了</a></li>
<li><a href='http://blog.darkices.com/archive/west-chamber-plan.html' rel='bookmark' title='Permanent Link: 西厢计划'>西厢计划</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/google%e7%9a%84https%e6%90%9c%e7%b4%a2.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google走了</title>
		<link>http://blog.darkices.com/archive/google%e8%b5%b0%e4%ba%86.html</link>
		<comments>http://blog.darkices.com/archive/google%e8%b5%b0%e4%ba%86.html#comments</comments>
		<pubDate>Tue, 23 Mar 2010 01:40:24 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[杂谈]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=869</guid>
		<description><![CDATA[<p>Google发言人：我们并没有退出中国，香港是中国不可分割的一部分。如果有必要，我们可以将服务器放到台湾，因为台湾也是中国的一部分。再不行，可以放到钓鱼岛上去，那也是中国。</p>
... 


<strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/a-new-approach-to-china-by-google.html' rel='bookmark' title='Permanent Link: A new approach to china by google'>A new approach to china by google</a></li>
<li><a href='http://blog.darkices.com/archive/reproduced-two-articles-on-the-google.html' rel='bookmark' title='Permanent Link: 关于google转载2篇文章'>关于google转载2篇文章</a></li>
<li><a href='http://blog.darkices.com/archive/recognizing-courage-securing-online-freedom.html' rel='bookmark' title='Permanent Link: Recognizing courage, securing online freedom(from google)'>Recognizing courage, securing online freedom(from google)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Google发言人：我们并没有退出中国，香港是中国不可分割的一部分。如果有必要，我们可以将服务器放到台湾，因为台湾也是中国的一部分。再不行，可以放到钓鱼岛上去，那也是中国。</p>
<p>大陆Google服务可用情况http://www.google.com/prc/report.html#hl=en</p>
<p>Google申明英文版</p>
<h2 class="post-title"><a href="http://googleblog.blogspot.com/2010/03/new-approach-to-china-update.html" target="_blank">A  new approach to China: an update</a></h2>
<div class="date-header">3/22/2010 12:03:00 PM</div>
<p>On January 12, we <a href="http://googleblog.blogspot.com/2010/01/new-approach-to-china.html">announced  on this blog</a> that Google and more than twenty other U.S. companies  had been the victims of a sophisticated cyber attack originating from  China, and that during our investigation into these attacks we had  uncovered evidence to suggest that the Gmail accounts of dozens of human  rights activists connected with China were being routinely accessed by  third parties, most likely via phishing scams or malware placed on their  computers. We also made clear that these attacks and the surveillance  they uncovered—combined with attempts over the last year to further  limit free speech on the web in China including the persistent blocking  of websites such as Facebook, Twitter, YouTube, Google Docs and  Blogger—had led us to conclude that we could no longer continue  censoring our results on Google.cn.</p>
<p>So earlier today we stopped censoring our search services—Google Search,  Google News, and Google Images—on Google.cn. Users visiting Google.cn  are now being redirected to <a href="http://www.google.com.hk/">Google.com.hk</a>,  where we are offering uncensored search in simplified Chinese,  specifically designed for users in mainland China and delivered via our  servers in Hong Kong. Users in Hong Kong will continue to receive their  existing uncensored, traditional Chinese service, also from <a href="http://www.google.com.hk/">Google.com.hk</a>. Due to the increased  load on our Hong Kong servers and the complicated nature of these  changes, users may see some slowdown in service or find some products  temporarily inaccessible as we switch everything over.</p>
<p>Figuring out how to make good on our promise to stop censoring search on  Google.cn has been hard. We want as many people in the world as  possible to have access to our services, including users in mainland  China, yet the Chinese government has been crystal clear throughout our  discussions that self-censorship is a non-negotiable legal requirement.  We believe this new approach of providing uncensored search in  simplified Chinese from <a href="http://www.google.com.hk/">Google.com.hk</a> is a sensible solution to the challenges we&#8217;ve faced—it&#8217;s entirely  legal and will meaningfully increase access to information for people in  China. We very much hope that the Chinese government respects our  decision, though we are well aware that it could at any time block  access to our services. We will therefore be carefully monitoring access  issues, and have created <a href="http://www.google.com/prc/report.html#hl=en">this new web page</a>,  which we will update regularly each day, so that everyone can see which  Google services are available in China.</p>
<p>In terms of Google&#8217;s wider business operations, we intend to continue  R&amp;D work in China and also to maintain a sales presence there,  though the size of the sales team will obviously be partially dependent  on the ability of mainland Chinese users to access <a href="http://www.google.com.hk/">Google.com.hk</a>. Finally, we would  like to make clear that all these decisions have been driven and  implemented by our executives in the United States, and that none of our  employees in China can, or should, be held responsible for them.  Despite all the uncertainty and difficulties they have faced since we  made our announcement in January, they have continued to focus on  serving our Chinese users and customers. We are immensely proud of them.</p>
<p><span class="byline-author">Posted by David Drummond, SVP, Corporate  Development and Chief Legal Officer</span></p>
<h2><a href="http://www.google.com/press/new-approach-to-china/update.html" target="_blank">关于谷歌中国的最新声明</a></h2>
<p class="x-note">David Drummond, SVP, Corporate Development and Chief  Legal Officer</p>
<p>今年1月12日，我们在本博客上宣布，Google及另外二十余家美国公司受到了来自中国的、复杂的网络攻击，在对这些攻击进  行深入调查的过程中，通过我们所收集到的证据表明，几十个与中国有关的人权人士的Gmail帐号定期受到第三方的侵入，而这大部分侵入是通过安装在他们电 脑上的钓鱼软件或恶意软件进行的。这些攻击以及它们所暴露的网络审查问题，加上去年以来中国进一步限制网络言论自由，包括  对FaceBook、Twitter、YouTube、Google Docs 和 Blogger  等网站的持续屏蔽，使我们做出结论：我们不能继续在Google.cn搜索结果上进行自我审查。</p>
<p>从今天早上开始，我们已停止了在Google.cn搜索服务上的自我审查，包括 Google Search  （网页搜索）、Google News（资讯搜索）和Google Images （图片搜索）。 访问 Google.cn 的用  户从现在开始将被指向Google.com.hk，在这个域名上，我们将提供未经审查的简体中文搜索结果，这些为中国大陆用户设计的服务将通过我们在香港 的服务器实现。香港地区的用户还将继续通过Google.com.hk获得跟现在一样的、未经审查的繁体中文搜索服务。在我们进行迁移的过程中，由于香港 服务器负荷的增加以及这些变化的复杂程度，用户可能会发现搜索速度变慢，或发现某些产品暂时不能访问。</p>
<p>实施我们做出的在Google.cn上停止审查搜索结果的承诺是一个十分艰难的过程。我们希望全球尽可能多的用户都能访问到我们的服 务，包括在中国大陆的用户。中国政府在与我们讨论的过程中已经十分明确地表示，自我审查是一个不可谈判的法律要求。为此，我们相信，一个解决我们所面临挑 战的可行方案是在Google.com.hk上提供未经审查的简体中文搜索结果——它完全符合法律要求，同时也有助于提高中国大陆用户对信息的访问。我们 十分希望中国政府尊重我们的这一决定，尽管我们知道，用户对Google服务的访问有可能随时被阻止。为此，我们将密切监测网址访问问题，并制作了一个新 页面，用户可以实时地了解到在中国哪些Google服务是可用的。</p>
<p>至于Google的广泛的业务运营，我们计划继续在中国的研发工作，并将保留销售团队，然而销售团队的规模显然部分取决于中国大陆用户 能否访问Google.com.hk  。最后，我们要清楚表明：所有这些决定都是由美国的管理团队做出和实施的，没有任何一位中国员工能够、或者应该为这些决定负责。自我们在1月份发布博客以  来，尽管面临着众多的不确定性和困难，他们仍然坚守在工作岗位，专注于服务我们的中国用户和客户。我们为拥有这样的员工感到深深的骄傲。<br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/24">http://dki.me/24</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/a-new-approach-to-china-by-google.html' rel='bookmark' title='Permanent Link: A new approach to china by google'>A new approach to china by google</a></li>
<li><a href='http://blog.darkices.com/archive/reproduced-two-articles-on-the-google.html' rel='bookmark' title='Permanent Link: 关于google转载2篇文章'>关于google转载2篇文章</a></li>
<li><a href='http://blog.darkices.com/archive/recognizing-courage-securing-online-freedom.html' rel='bookmark' title='Permanent Link: Recognizing courage, securing online freedom(from google)'>Recognizing courage, securing online freedom(from google)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/google%e8%b5%b0%e4%ba%86.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>ssh代理工具之Tunnelier</title>
		<link>http://blog.darkices.com/archive/ssh-proxy-tools-tunnelier.html</link>
		<comments>http://blog.darkices.com/archive/ssh-proxy-tools-tunnelier.html#comments</comments>
		<pubDate>Sat, 20 Mar 2010 03:57:28 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[技术]]></category>

		<category><![CDATA[ssh]]></category>

		<category><![CDATA[Tunnelier]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=856</guid>
		<description><![CDATA[<p>前面介绍过一种ssh代理工具：<a href="http://dki.me/2" target="_blank">MyEnTunnel</a></a>。</p>
<p>所有的配置都设置好以后，如果想下次自动登录，点击左侧的Save Profile As保存配置文件，下次使用Load Profile... 


<strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/build-ssh-proxy-on-vps.html' rel='bookmark' title='Permanent Link: 利用VPS架设ssh代理'>利用VPS架设ssh代理</a></li>
<li><a href='http://blog.darkices.com/archive/openvpn-ssh-proxy-compare.html' rel='bookmark' title='Permanent Link: openvpn和ssh代理对比'>openvpn和ssh代理对比</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>前面介绍过一种ssh代理工具：<a href="http://dki.me/2" target="_blank">MyEnTunnel</a><a href="http://blog.darkices.com/archive/build-ssh-proxy-on-vps.html target="_blank"></a></p>
<p>Tunnelier是Bitvise团队开发的一个ssh客户端，功能包括ssh客户端、sftp客户端、端口转发功能（tunnel）。其中tunnel功能做的十分高效，比基于plink的MyEntunnel速度快很多。个人使用免费。</p>
<p>安装版：<a href="http://dl.bitvise.com/Tunnelier-Inst.exe" target="_blank">http://dl.bitvise.com/Tunnelier-Inst.exe</a><br />
绿色版：<a href="http://tp.vbap.com.au/download" target="_blank">http://tp.vbap.com.au/download</a></p>
<p>安装后界面上可以看出有很多功能，首先是基本配置：<br />
<img class="aligncenter size-full wp-image-857" title="tunnelier" src="http://blog.darkices.com/blog/wp-content/uploads/2010/03/tunnelier.jpg" alt="tunnelier" /><br />
Host填写ssh代理服务器的地址，Port一般是22端口，右边的Username和Password就是登陆的用户名密码。下面有一个Proxy选项，支持Http和Socks4/Socks5代理，这样局域网通过代理上网的话也可以使用ssh代理了，这样也解决了我自己和其他人在单位或实验室的问题。</p>
<p>其他配置：<br />
<img class="aligncenter size-full wp-image-858" title="tunnelier2" src="http://blog.darkices.com/blog/wp-content/uploads/2010/03/tunnelier2.jpg" alt="tunnelier2" /><br />
这个工具支持打开终端界面和ftp客户端，但是因为我在这只是使用ssh代理，所以上面的几个多选框都取消掉，而且我估计ssh代理的用户名也不会给这些权限的。</p>
<p>代理配置：<br />
<img class="aligncenter size-full wp-image-859" title="tunnelier1" src="http://blog.darkices.com/blog/wp-content/uploads/2010/03/tunnelier1.jpg" alt="tunnelier1" /></p>
<p>把代理Enabled选中，然后监听端口可以自选，我这里是7070端口。设置好代理以后的浏览器配置可以参看：<a href="http://dki.me/2" target="_blank">利用VPS架设ssh代理</a><a href="http://blog.darkices.com/archive/build-ssh-proxy-on-vps.html target="_blank"></a>。</p>
<p>所有的配置都设置好以后，如果想下次自动登录，点击左侧的Save Profile As保存配置文件，下次使用Load Profile导入即可。</p>
<p>Tunnelier对我而言最大的好处在于它支持通过代理连接，而plink是不支持的，至于速度暂时还没有明显感觉。</p>
<p>参考文章：<a href="http://kangzj.net/tunnelier-tutorial" target="_blank">Tunnelier使用教程</a><br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/22">http://dki.me/22</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/build-ssh-proxy-on-vps.html' rel='bookmark' title='Permanent Link: 利用VPS架设ssh代理'>利用VPS架设ssh代理</a></li>
<li><a href='http://blog.darkices.com/archive/openvpn-ssh-proxy-compare.html' rel='bookmark' title='Permanent Link: openvpn和ssh代理对比'>openvpn和ssh代理对比</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/ssh-proxy-tools-tunnelier.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>西厢计划</title>
		<link>http://blog.darkices.com/archive/west-chamber-plan.html</link>
		<comments>http://blog.darkices.com/archive/west-chamber-plan.html#comments</comments>
		<pubDate>Thu, 18 Mar 2010 10:20:31 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[技术]]></category>

		<category><![CDATA[west-chamber-plan]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=851</guid>
		<description><![CDATA[<p>不了解的可以自行先Google一下，不推荐baidu，因为你不会知道的更多。</p>
<p><a href="http://blog.youxu.info/2010/03/14/west-chamber/" target="_blank">西厢计划原理介绍的一篇文章</a></p>
<p><a href="http://blog.xiaog... 


<strong><span style="text-decoration: underline;">没有相关文章。</span></strong>]]></description>
			<content:encoded><![CDATA[<p>不了解的可以自行先Google一下，不推荐baidu，因为你不会知道的更多。</p>
<p><a href="http://blog.youxu.info/2010/03/14/west-chamber/" target="_blank">西厢计划原理介绍的一篇文章</a></p>
<p><a href="http://blog.xiaogaozi.org/2010/03/ubuntu.html" target="_blank">西厢计划Ubuntu下配置指南</a></p>
<p><a href="http://dki.me/21" target="_blank">配置好的虚拟机镜像下载地址</a></p>
<p>从原理可以看出，西厢计划不安装任何软件，只是是通过防火墙策略来达到突破GFVV的目的，所以这里不是翻墙，而是破墙。要想达到阻断改策略就需要过滤更多的流量，在资源和效率上可能暂时是达不到的。<br />
直接屏蔽掉IP也是可以达到阻断的目的，不过通过最简单的代理就可以突破IP的访问限制，所以这也不是问题。</p>
<p>该项目依赖于Linux内核功能。移植Windows工作正在进行中，现在已经提供Alpha版本下载。</p>
<p><a href="http://code.google.com/p/scholarzhang/" target="_blank">项目首页</a>*<a href="http://code.google.com/p/scholarzhang/wiki/README" target="_blank">项目介绍</a>*<a href="http://code.google.com/p/scholarzhang/downloads/list" target="_blank">下载页面</a>*<a href="https://groups.google.com/group/scholarzhang-dev" target="_blank">邮件列表</a></p>
<p>邮件列表需要申请才能有权查看。<br />
下载页面中west-chamber-win-0.03.rar就是Windows版本。scholarzhang-0.3.2-mingw32-alpha.zip是基于WinPcap的版本可以在MinGW32环境下编译运行，实现了连接混淆的部分，未实现反DNS劫持的部分，用户仍然可以试用，但不再维护。<br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/20">http://dki.me/20</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">没有相关文章。</span></strong></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/west-chamber-plan.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Recognizing courage, securing online freedom(from google)</title>
		<link>http://blog.darkices.com/archive/recognizing-courage-securing-online-freedom.html</link>
		<comments>http://blog.darkices.com/archive/recognizing-courage-securing-online-freedom.html#comments</comments>
		<pubDate>Sat, 13 Mar 2010 16:24:58 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[杂谈]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=844</guid>
		<description><![CDATA[<p>首先是关于google的另外一个消息来源：<br />
<a href="http://www.google.org.cn/posts/google-prepares-to-stop-censoring-in-china.html" target="_blank"> http://www.google.org.cn/posts/google-prepares-to-stop-censoring-in-china.html</a><br /... 


<strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/a-new-approach-to-china-by-google.html' rel='bookmark' title='Permanent Link: A new approach to china by google'>A new approach to china by google</a></li>
<li><a href='http://blog.darkices.com/archive/google%e8%b5%b0%e4%ba%86.html' rel='bookmark' title='Permanent Link: Google走了'>Google走了</a></li>
<li><a href='http://blog.darkices.com/archive/ghs-google-com-reverse-proxy.html' rel='bookmark' title='Permanent Link: ghs.google.com域名反向代理'>ghs.google.com域名反向代理</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>首先是关于google的另外一个消息来源：<br />
<a href="http://www.google.org.cn/posts/google-prepares-to-stop-censoring-in-china.html" target="_blank"> http://www.google.org.cn/posts/google-prepares-to-stop-censoring-in-china.html</a><br />
其中提到了一个其他地方也提到过的细节，华尔街日报的评论内容被修改过：<br />
<a href="http://blog.sina.com.cn/s/blog_502b846b0100hkgx.html" target="_blank"> http://blog.sina.com.cn/s/blog_502b846b0100hkgx.html</a></p>
<p>《华尔街日报》今天早上8点09发了一篇名为《谷歌即将就中国审查问题作出决定》(<a href="http://online.wsj.com/article/SB10001424052748704349304575116072164347864.html?KEYWORDS=google" target="_blank">点击原文链接</a>：<a href="http://online.wsj.com/article/SB10001424052748704349304575116072164347864.html?KEYWORDS=google" target="_blank">google nears decison on China censoring</a>)，援引知情人士的话说，谷歌计划在几周内停止审查中国网页搜索结果，但公司称不太可能完全撤出中国。</p>
<p>1个小时后，《华尔街日报》又悄悄修改了这篇文章的标题和正文，标题改为《谷歌准备停止在华审查》(Google Prepares to Stop Censoring in China)，并删除了知情人士的一句讲话，对比如下：<br />
原文：</p>
<p>It is looking likely that Google will make agreements with specific ministries, this person said. For example, Google could be prohibited from certain activities in Beijing and areas where the central government exerts significant influence, but the government may be more lenient about activities in China&#8217;s southern provinces, the person said.</p>
<p>译文：该知情人说，谷歌看起来有可能和具体部委签署不同的协议。举例来说，谷歌有可能在北京和其他受中央政府影响较大的地方被禁止从事某些活动，但政府可能对南方省市的业务网开一面。”<br />
=============================================</p>
<p>修改后：</p>
<p>It is looking likely that Google will make agreements with specific ministries about various parts of its business throughout the country, this person said.In addition to operating google.cn, the company has sales, research, and other operations, including investments in some Chinese companies, that could be allowed to continue operating even if google.cn is closed.</p>
<p>译文：该知情人说，谷歌看起来有可能和具体部委签署不同的协议。除了在中国运营google.cn网站，该公司还有销售、研发等业务，包括在一些中国公司的投资，如果google.cn被关闭，这些业务可能被允许继续运营。</p>
<p>对比：难道是报料人反悔，找到记者做了修改？不过这句“谷歌有可能在北京和其他受中央政府影响较大的地方被禁止从事某些活动，但政府可能对南方省市的业务网开一面”实在有点匪夷所思，不了解中国国情……</p>
<p><strong><em>DarkIce注：上文中提到过，在南方部分地区，凤凰卫视等也获得批准，但是北方并没有通过，所以也不是不可能。</em></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>然后是本文主题，google官方博客3/11/2010 12:02:00 PM发表的文章</p>
<p><a href="http://dki.me/1x" target="_blank">Recognizing courage, securing online freedom</a>。需要翻墙访问。</p>
<p>More than ever, governments around the world are threatening online free expression. Forty countries have taken measures to limit this freedom, up from only a handful a few years ago. Google and YouTube services are or have been blocked in 25 of those nations.</p>
<p>On Thursday night in Paris, we took an important step to highlight this crucial issue by sponsoring the first Netizen Prize (or more elegantly, “Le Prix de Net Citoyen”) awarded by the Paris-based advocacy group <a href="http://www.rsf.org/" target="_blank">Reporters Without Borders</a>. And on Friday, March 12, we’ll be helping highlight the fight for Internet freedom by marking the group’s <a href="http://www.rsf.org/World-Day-Against-Cyber-Censorship.html" target="_blank">World Day Against Cyber Censorship</a> on YouTube.</p>
<p>Fittingly, Reporters Without Borders chose to give the first Netizen Prize to the Iranian creators of the website <a href="http://www.we-change.org/" target="_blank">Change for Equality</a>, first established in 2006 to fight for changes in laws in Tehran that discriminate against women. That site has since become a well-known source of information on women’s rights in Iran, documenting arrests of women activists and becoming a rallying point for opponents of the regime.</p>
<p>Over the past year those leaders in Tehran have distinguished themselves — and earned the opprobrium of people all over the world — for their brutal crackdown on the rights of its critics to question their rule. Last year&#8217;s killing of unarmed Neda Agha-Soltan during post-election protests in Tehran, seen around the world on amateur video, has become a symbol of the regime&#8217;s ferocity — and the power of the Internet to reveal what governments do not want the world to see.</p>
<p>At the award ceremony in our Paris office, our Senior Vice President<a href="http://www.google.com/corporate/execs.html#david" target="_blank"> David Drummond</a> said that we are at a critical point in the future of the Internet: &#8220;All of us have a choice. We can allow repressive policies to take flight and spread across the globe, or we can work together against such challenges and uphold the fundamental human right to free expression.”</p>
<p>David went on to praise the role of NGOs like Reporters Without Borders, the Obama Administration’s commitment to the promotion of Internet freedom and the efforts of all groups that have joined the <a href="http://www.globalnetworkinitiative.org/" target="_blank">Global Network Initiative.</a> Under the initiative, major U.S. Internet companies, human rights group, socially responsive investors and academic institutions agreed to guidelines promoting free expression and protecting the privacy of their users around the world. “In the spirit of the undiplomatic American come to European shores,&#8221; he said, &#8220;let me make a plea for European governments, companies and groups to rise to the occasion. Any effort that is limited to the United States is bound to fall far short of its global potential.”</p>
<p>Posted by Robert Boorstin, Director, Public Policy</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>翻译如下：</p>
<p><a href="http://dki.me/1y" target="_blank">谷歌官方博客： 鼓起勇气，保卫网络自由</a>。同样需要翻墙访问。</p>
<p>撰文：Robert Boorstin<br />
发表时间：2010年3月11日 12:02:00 PM<br />
译者：月影 wmr AC<br />
校对：大师(@lmpprk) @xiaomi2020</p>
<p>世界上越来越多的政府开始威胁网络言论自由。几年来，40个国家采取各种措施限制这一自由，几年前不过只有少数几个而已。Google和YouTube服务被其中的25个国家封锁。</p>
<p>星期四晚上在巴黎，我们采取了一个重要的步骤来强调这一至关重要的话题：赞助总部位于巴黎的<a href="http://www.rsf.org/" target="_blank">记者无国界组织</a>授予的第一届“网络公民奖”（Netizen Prize，Le Prix de Net Citoyen）。3月12日星期五，我们将在YouTube建立“<a href="http://www.rsf.org/World-Day-Against-Cyber-Censorship.html" target="_blank">世界反对网络审查日</a>”来帮助对抗互联网审查的斗争。</p>
<p>恰逢其时，记者无国界组织授予伊朗“<a href="http://www.we-change.org/" target="_blank">为平等而改变</a>”（Change for Equality）网站的创始人第一届网络公民奖。该网站成立于2006年，致力于改变歧视妇女的德黑兰法律。在伊朗，该网站从成立起就成为著名的女权运动信息来源，记录被捕的妇女活动家并成为反抗当局统治的集结处。</p>
<p>去年，德黑兰的领导人臭名昭著——并且遭到世界人民的谴责——因为他们对治下的持有异见者实施血腥镇压。在拍客的视频上可以看到去年德黑兰选举期间他们杀害了手无寸铁的妮达（Neda Agha-Soltan），这已经成为该政权暴政的标志——同时也是互联网威力的一个体现，让世界看到政府不愿让人看到的东西的威力。</p>
<p>在我们巴黎办公室的颁奖典礼上，高级副总裁大卫•多姆德（<a href="http://www.google.com/corporate/execs.html#david" target="_blank">David Drummond</a>)表示，我们在互联网未来发展的关键时刻，“我们都要做出选择。要么我们容忍压制性的政策展开和扩散到全球，要么我们团结起来，拒绝接受并坚持言论自由这一基本人权。”</p>
<p>大卫•多姆德(David Drummond)进一步表扬了象“记者无国界组织”这样的NGO(非政府组织)的作用，和奥巴马政府承诺推进互联网自由，以及所有加入了“<a href="http://www.globalnetworkinitiative.org/" target="_blank">全球网络倡议</a>”的组织的努力。根据这一倡议，主要的美国互联网公司、人权组织、有责任感的投资者和学术机构一致同意在全球促进言论自由和保护其用户的隐私原则。大卫说到“在不同于[国别]外交的精神鼓舞下，美国人来到了欧洲海岸，请允许我请求欧洲的政府、公司和组织挺身而出，应对挑战。任何仅限于美国本土的作为，势必远弱于在全球范围内的类似行动具有的潜力。”</p>
<p>Posted by Robert Boorstin, Director, Public Policy<br />
由公共政策总监罗伯特.布尔斯丁（ Robert Boorstin）发表<br />
<blockquote>
<p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/1z">http://dki.me/1z</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/a-new-approach-to-china-by-google.html' rel='bookmark' title='Permanent Link: A new approach to china by google'>A new approach to china by google</a></li>
<li><a href='http://blog.darkices.com/archive/google%e8%b5%b0%e4%ba%86.html' rel='bookmark' title='Permanent Link: Google走了'>Google走了</a></li>
<li><a href='http://blog.darkices.com/archive/ghs-google-com-reverse-proxy.html' rel='bookmark' title='Permanent Link: ghs.google.com域名反向代理'>ghs.google.com域名反向代理</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/recognizing-courage-securing-online-freedom.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>据称google中国将于月底关闭</title>
		<link>http://blog.darkices.com/archive/google-cn-close-this-month.html</link>
		<comments>http://blog.darkices.com/archive/google-cn-close-this-month.html#comments</comments>
		<pubDate>Sat, 13 Mar 2010 09:15:15 +0000</pubDate>
		<dc:creator>DarkIce</dc:creator>
		
		<category><![CDATA[杂谈]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://blog.darkices.com/?p=839</guid>
		<description><![CDATA[<p>有消息称google将于3.15宣布退出中国的具体消息。而根据工信部的消息来看，停止google其他域名的访问也不是不可能的，届时包括gmail在内的所有google服务都将存在无法访问的可能，是不是又... 


<strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/reproduced-two-articles-on-the-google.html' rel='bookmark' title='Permanent Link: 关于google转载2篇文章'>关于google转载2篇文章</a></li>
<li><a href='http://blog.darkices.com/archive/google%e8%b5%b0%e4%ba%86.html' rel='bookmark' title='Permanent Link: Google走了'>Google走了</a></li>
<li><a href='http://blog.darkices.com/archive/a-new-approach-to-china-by-google.html' rel='bookmark' title='Permanent Link: A new approach to china by google'>A new approach to china by google</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>有消息称google将于3.15宣布退出中国的具体消息。而根据工信部的消息来看，停止google其他域名的访问也不是不可能的，届时包括gmail在内的所有google服务都将存在无法访问的可能，是不是又要有一个gmail的备份高峰呢。</p>
<p>以下为部分新闻内容摘选：<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
华尔街日报<br />
http://chinese.wsj.com/gb/20100312/bch184900.asp</p>
<p>　　李毅中：希望谷歌遵守中国的法律</p>
<p>中国工业和信息化部(Industry and Information Technology)部长李毅中周五表示，谷歌(Google Inc.)如果做出违背中国法律的事情，那么将是不友好、不负责任的行为。</p>
<p>李毅中在全国人大会议期间的一个新闻发布会上表示，如果谷歌不对其中文网站搜索结果进行审查，则不符合中国的法律规定。他希望这家互联网搜索巨头遵守中国的法律。</p>
<p>李毅中表示，谷歌有权决定是否退出中国，如果不退出，中国会表示欢迎；如果谷歌要退出，中国的互联网也会继续发展。</p>
<p>李毅中表示，中国对有害于社会的信息当然不会听之任之。他还强调了中国的立场：中国的互联网是开放的；中国政府也反对黑客攻击。</p>
<p>谷歌首席执行长施密特(Eric Schmidt)周三表示，谷歌与中国政府就其在华业务未来命运的谈判很快会有结果。</p>
<p>施密特在阿布扎比的一个媒体会议上向记者表示，谷歌正与中国政府展开积极谈判。他说，谷歌已决定不公布谈判情况，但此事不久就会有结果。</p>
<p>在被问及有关谷歌的谈判时，李毅中表示，很多事情都不在于工信部，因此在谷歌谈判方面他也不好回答。</p>
<p>两个月前，在遭受了谷歌所称的来自中国的严重网络攻击之后，谷歌表示将停止审查中文搜索引擎，并可能关闭在华业务。这家美国搜索巨头一直未提供公司与中国政府官员之间谈判进展的细节。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
http://www.cnemag.com.cn/fenxplun/newsfx/2010-03-12/186468.shtml</p>
<p>　　【独家】谷歌销售撤离细节曝光  Google.cn将月底关闭？</p>
<p>谷歌将关闭中国网站，拒绝过滤敏感词的Google.com是否会在中国遭到屏蔽尚不可知<br />
【《中国企业家》网站报道】3月11日上午，有谷歌关键词广告客户反映称，接收到来自谷歌大客户部的电话通知，表示Google.cn将于三月底关闭，客户投放在Google.cn的广告会变更到谷歌全球网站Google.com。谷歌同时承诺，不愿意在Google.com上投放关键词广告的客户可以按照流程退款。同时，之前广告投放合同的主体(谷歌中国或其代理商)会统一变更成为其代理商，不过，谷歌中国此前的客户服务团队将会被会保留，而且销售团队的总部将会变更到中国香港。</p>
<p>　　随后，《中国企业家》记者就此事电话咨询谷歌中国公关负责人，该负责人表示，目前谷歌与中国政府谈判尚未结束，公关部并未接到关闭Google.cn通知，同时，她表示已经询问过相关业务部门，并无发生通知客户Google.cn将关闭等事情发生。</p>
<p>　　不过12日上午，《华尔街日报》发表文章透露，谷歌计划停止审查中国网页搜索结果。《华尔街日报》在文中援引知情人士的话称， “目前看来，Google貌似将与中国若干部委，就其在华生意的不同领域签署协议。谷歌除了运营Google.cn，该公司在中国还有销售、研发等其他业务，以及部分在中国公司的投资，如果Google.Cn被关闭，这些业务可能会被允许继续运营。”</p>
<p>　　不过据网友透露，《华尔街日报》对该文进行过修改，此前援引自消息人士的话并非上述内容，而是“谷歌有可能和中国具体部委签署不同的协议。比如，谷歌有可能在北京和其他受中央政府影响较大的地方被禁止从事某些活动，但政府可能对南方省市的业务网开一面。”这一方案遭到网友质疑，认为不符合中国国情，不过此前，境外电视台如星空卫视、凤凰卫视等也获得在中国南方某些地区的落地，但是在北京等广大地区，他们并未获得落地的资格。</p>
<p>　　12日，在新浪微博上，谷歌再次成为热门讨论话题，关于谷歌中国撤退的传闻也越来越多。</p>
<p>　　发稿之前，记者再次致电谷歌中国公关负责人，该负责人未接电话。</p>
<p>　　【谷歌话题新进展】谷歌公关部负责人在12日下午17时接受《中国企业家》记者采访，再次对此事予以否认，同时她表示可能是销售部门和客户在沟通上产生误解。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
http://www.cnemag.com.cn/fenxplun/newsfx/2010-03-12/186474.shtml</p>
<p>　　ICP年检会是压垮Google.cn的最后一根稻草吗？</p>
<p>在谷歌将关闭中国网站google.cn的传言背景下，google.cn的ICP年检问题变得越发微妙<br />
　　【《中国企业家》网站专稿】就在有关谷歌将于三月底关闭google.cn的消息四起时，记者接到权威人士的消息称，谷歌的ICP年检将会在三月底进行。</p>
<p>　　按照中国的法律规定，在中国经营电信以及互联网业务必须要获得主管部门颁发的ICP牌照(互联网信息服务经营许可证)，谷歌在2006年进入中国后，一直与赶集网“共用”一张ICP牌照京ICP证 050124 号。牌照问题一度成为谷歌中国在中国运营合法性的最大隐患。直到2007年7月，谷歌中国正式公布，与赶集网组建的合资公司——北京谷翔信息技术有限公司正式拿到了信产部颁发的ICP 牌照，“ICP证合字B2-20070004号”成为谷歌中国三年来所使用的牌照。这与其他在中国运营的跨国互联网公司获得ICP牌照的方式一样，例如eBay使用与易趣合资公司的ICP牌照，亚马逊则使用卓越网的ICP牌照。</p>
<p>　　此前，国外媒体透露谷歌(Google Inc.)计划在几周内停止审查中国网页搜索结果，在此背景下，停止内容审查内容时间与谷歌中国ICP年检时间上的重叠引人联想。</p>
<blockquote><p style="padding-top: 15px; font-style: italic">转载请注明：转载自<a href="http://blog.darkices.com/">DarkIces.com</a><br />本文链接地址：<a href="http://dki.me/1w">http://dki.me/1w</a></p>
</blockquote>


<p><strong><span style="text-decoration: underline;">相关文章:</span></strong><ol><li><a href='http://blog.darkices.com/archive/reproduced-two-articles-on-the-google.html' rel='bookmark' title='Permanent Link: 关于google转载2篇文章'>关于google转载2篇文章</a></li>
<li><a href='http://blog.darkices.com/archive/google%e8%b5%b0%e4%ba%86.html' rel='bookmark' title='Permanent Link: Google走了'>Google走了</a></li>
<li><a href='http://blog.darkices.com/archive/a-new-approach-to-china-by-google.html' rel='bookmark' title='Permanent Link: A new approach to china by google'>A new approach to china by google</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.darkices.com/archive/google-cn-close-this-month.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
