<?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>清风无影 &#187; 网络日志</title>
	<atom:link href="http://imvoo.com/category/diary/feed" rel="self" type="application/rss+xml" />
	<link>http://imvoo.com</link>
	<description>移动网络化生活，关注智能手机、网络、cms</description>
	<lastBuildDate>Sat, 25 Feb 2012 16:16:58 +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>pptp及l2tp安装教程篇一安装pptp</title>
		<link>http://imvoo.com/archives/615.html</link>
		<comments>http://imvoo.com/archives/615.html#comments</comments>
		<pubDate>Wed, 22 Feb 2012 12:00:23 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[l2tp]]></category>
		<category><![CDATA[pptp]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://imvoo.com/?p=615</guid>
		<description><![CDATA[网上已经有了pptp和l2tp的一键安装包，虽然很方便，但是大部分的网上教程和安装包都是需要编译的，其实合理利用各种各样的源]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>网上已经有了pptp和l2tp的一键安装包，虽然很方便，但是大部分的网上教程和安装包都是需要编译的，其实合理利用各种各样的源，可以省却不少功夫，安装的时间也比编译的快了很多。</p>
<p><span id="more-615"></span></p>
<p>该篇文章是安装pptp，下一篇将写安装l2tp。这实际是是根据记忆写的，可能在步骤或配置上会有遗漏，争取下次用虚拟机自己动手安装来试试，如有错误，请指教。</p>
<p>1、首先要安装pptp的源，以Centos 6为例：</p>
<pre class="brush: bash; title: 代码; notranslate">

yum update

yum install ppp iptables

rpm -Uvh http://poptop.sourceforge.net/yum/stable/rhel6/pptp-release-current.noarch.rpm

yum install pptpd
</pre>
<p>这时会显示：Package pptpd-1.3.4-2.el6.x86_64 already installed and latest version</p>
<p>2、/etc/pptpd.conf的内容是这样的，参照这里修改文件即可，千万不要覆盖了，因为原文件就是一个教你怎么配置的教程啊，看网上的一些教程上来就是rm 然后touch，再写入教程上提供的配置，这样完全没有必要，还少了一个学习的地方。</p>
<pre class="brush: bash; title: 代码; notranslate">

option /etc/ppp/options.pptpd

localip 192.168.10.2

remoteip 192.168.10.234-238,192.168.10.245

1

3、/etc/ppp/options.pptpd的配置

1

name pptpd

refuse-pap
refuse-chap
refuse-mschap

require-mschap-v2

require-mppe-128

ms-dns 8.8.8.8
ms-dns 8.8.4.4

proxyarp

novj
novjccomp

nologfd
</pre>
<p>我记得不错的话，这个配置文件里，只需要想改两个dns服务器即可，这里用的是Google的DNS服务器。</p>
<p>4、离成功快了，现在给pptpd加一个帐号吧，vim打开/etc/ppp/chap-secrets，加上</p>
<pre class="brush: bash; title: 代码; notranslate">

test   pptpd   test12345        *
</pre>
<div>意思是，用户名为test，用的是pptpd服务，密码是test12345，不限定IP地址为*</div>
<div>5、用户名、密码都有了，现在是不是可以连接了？答案是肯定的，如果在确认你的防火墙打开了pptp端口的情况下，这时就可以连接pptp服务器了，连接之前记得重启一下service pptpd restart来让配置生效。</div>
<div>但是这时虽然可以连接，却不能上网，这是因为我们还没有设置转发，现在只能上内网（用来上公司内部网的，到这里应该就可以了吧？）</div>
<div>但是，因为众所周知的原因，我们搭建这个东东，并不是用来上内网的，所以，下面让我们继续设置吧。</div>
<div>6、编辑/etc/sysconfig/iptables，网上看的iptables 的相关文档，都不推荐这样子来设定iptables</div>
<div>
<pre class="brush: bash; title: 代码; notranslate">&lt;/pre&gt;
&lt;/div&gt;
&lt;div&gt;
*nat
 <img src='http://imvoo.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> REROUTING ACCEPT [6:312]
:INPUT ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
 <img src='http://imvoo.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> OSTROUTING ACCEPT [0:0]
-A POSTROUTING -s 192.168.10.0/24 -o eth0 -j MASQUERADE
COMMIT

;在filter段里加入下面的

-A INPUT -p tcp --dport 1723 -j ACCEPT
-A INPUT -p tcp --dport 47 -j ACCEPT
-A INPUT -p gre -j ACCEPT
</pre>
<p>7、不直接编辑的情况下</p>
<pre class="brush: bash; title: 代码; notranslate">

iptables -A POSTROUTING -s 192.168.10.0/24 -o eth0 -j MASQUERADE
</pre>
<p>8、注意开启IP地址的转发功能</p>
<pre class="brush: bash; title: 代码; notranslate">

echo 1 &gt; /proc/sys/net/ipv4/ip_forward
</pre>
<p>&nbsp;</p>
<p>要点：</p>
<p>1、iptables防火墙的设置</p>
<p>2、IP的转发</p>
<p>&nbsp;</p>
<p>参考：</p>
<p>1、http://www.diahosting.com/dload/pptpd.sh</p>
<p>2、http://phorum.study-area.org/index.php?topic=16243.0</p>
</div>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/612.html" title="yum安装带mpm-itk的apache">yum安装带mpm-itk的apache</a></li><li><a href="http://imvoo.com/archives/444.html" title="CentOS下LNMP环境的建立">CentOS下LNMP环境的建立</a></li><li><a href="http://imvoo.com/archives/410.html" title="Nginx在Centos5下的service启动脚本">Nginx在Centos5下的service启动脚本</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/615.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>yum安装带mpm-itk的apache</title>
		<link>http://imvoo.com/archives/612.html</link>
		<comments>http://imvoo.com/archives/612.html#comments</comments>
		<pubDate>Wed, 22 Feb 2012 01:27:01 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[mpm-itk]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://imvoo.com/?p=612</guid>
		<description><![CDATA[上一篇关于mpm-itk的文章是我自己编译的文件，后来才发现在网上有一个源编译的就是apache2 with mpm-itk]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>上一篇关于mpm-itk的文章是我自己编译的文件，后来才发现在网上有一个源编译的就是apache2 with mpm-itk，这样就更省事了，这个源的更新还能跟的上apache2的版本，在这里分布一下。</p>
<p><span id="more-612"></span></p>
<p>1、首先要创建repo文件</p>
<p>第一步的说明，都可以在<a href="http://centos.alt.ru/repository/centos" target="_blank">http://centos.alt.ru/repository/centos</a>/readme.txt中找到。</p>
<p>下面以centos6为例</p>
<pre class="brush: bash; title: 代码; notranslate">

[CentALT]
name=CentALT Packages for Enterprise Linux 6 - $basearch
baseurl=http://centos.alt.ru/repository/centos/6/$basearch/
enabled=1
gpgcheck=0
</pre>
<p>最好将enabled=1改成0，因为该源中还有一些其它软件，在update时会有冲突。</p>
<p>或者</p>
<pre class="brush: bash; title: 代码; notranslate">

for i386
rpm -ihv http://download.fedora.redhat.com/pub/epel/6/i386/epel-release-6-5.noarch.rpm

for x86_64
rpm -ihv http://download.fedora.redhat.com/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm
</pre>
<p>同样更改enabled=0。</p>
<p>2、安装httpd apache2</p>
<p>在服务器中还没有安装httpd时</p>
<pre class="brush: bash; title: 代码; notranslate">

yum --enablerepo=CentALT install httpd
</pre>
<p>升级用</p>
<pre class="brush: bash; title: 代码; notranslate">

yum --enablerepo=CentALT update httpd
</pre>
<p>3、部分设置</p>
<p>安装后，并不是以mpm-itk方式运行的，这时需要进行一些设置，将/etc/sysconfig/httpd 文件中的</p>
<pre class="brush: bash; title: 代码; notranslate">
; HTTPD=/usr/sbin/httpd.itk
</pre>
<p>去掉注释</p>
<p>在/etc/httpd/conf.d/里创建itk.conf文件，内容为下：</p>
<pre class="brush: bash; title: 代码; notranslate">

##
## Server-Pool Size Regulation (MPM specific)
##
&lt;IfModule itk.c&gt;
 LoadModule php5_module modules/libphp5.so
&lt;/IfModule&gt;

&lt;IfModule itk.c&gt;
 &lt;IfModule sapi_apache2.c&gt;
 php_value session.save_path /tmp
 &lt;/IfModule&gt;
&lt;/IfModule&gt;

# itk MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
&lt;IfModule itk.c&gt;
StartServers 8
MinSpareServers 5
MaxSpareServers 20
ServerLimit 256
MaxClients 256
MaxRequestsPerChild 4000
&lt;/IfModule&gt;
</pre>
<p>现在将可以启动或重新启动httpd</p>
<pre class="brush: bash; title: 代码; notranslate">
service restart httpd
</pre>
<p>在&lt;VirtualHost&gt;&lt;/VirtualHost&gt;里添加：</p>
<pre class="brush: bash; title: 代码; notranslate">&lt;/pre&gt;
&lt;IfModule itk.c&gt;

AssignUserId someuser someuser

&lt;/IfModule&gt;
&lt;pre&gt;</pre>
<div></div>
<div>如有不当之外，请指教。</div>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/615.html" title="pptp及l2tp安装教程篇一安装pptp">pptp及l2tp安装教程篇一安装pptp</a></li><li><a href="http://imvoo.com/archives/590.html" title="Apache with mpm-itk 2.2.19 for centos6.0">Apache with mpm-itk 2.2.19 for centos6.0</a></li><li><a href="http://imvoo.com/archives/444.html" title="CentOS下LNMP环境的建立">CentOS下LNMP环境的建立</a></li><li><a href="http://imvoo.com/archives/410.html" title="Nginx在Centos5下的service启动脚本">Nginx在Centos5下的service启动脚本</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/612.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>体验Linode日本vps</title>
		<link>http://imvoo.com/archives/595.html</link>
		<comments>http://imvoo.com/archives/595.html#comments</comments>
		<pubDate>Fri, 17 Feb 2012 07:46:39 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[linode]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[盛大云]]></category>

		<guid isPermaLink="false">http://imvoo.com/?p=595</guid>
		<description><![CDATA[体验Linode日本vps,购了一个Linode日本Vps，同于以前用过Linode的Vps，自然是轻车熟路]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>好久没有写日志，也就没有打理这个网站。昨天晚上心血来潮，购了一个Linode日本Vps，同于以前用过Linode的Vps，自然是轻车熟路，一路申请一来。把原服务器上的网站打包，然后直接wget到新VPS上，差不多一个小时，就迁移完成了。</p>
<p><span id="more-595"></span></p>
<p>在迁移过程中，涉及到解析时候，到万网去看了看，发现大喜事，万网的域名可以直接申请转移了，发到邮箱。而不用像以前那样要邮寄资料。</p>
<p>快！很快！同时我还在体验着盛大云主机（电信，我的是联通）。Linode的日本服务器比盛大云还快。当然，盛大云体验的时候无法选择联通IP。</p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/533.html" title="Vps自动备份web和mysql数据库脚本">Vps自动备份web和mysql数据库脚本</a></li><li><a href="http://imvoo.com/archives/528.html" title="ssh auth认证方式连接Linux服务器">ssh auth认证方式连接Linux服务器</a></li><li><a href="http://imvoo.com/archives/527.html" title="免费使用一年的Amazon云计算主机">免费使用一年的Amazon云计算主机</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/595.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vps自动备份web和mysql数据库脚本</title>
		<link>http://imvoo.com/archives/533.html</link>
		<comments>http://imvoo.com/archives/533.html#comments</comments>
		<pubDate>Thu, 28 Oct 2010 03:26:26 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[备份]]></category>
		<category><![CDATA[脚本]]></category>

		<guid isPermaLink="false">http://imvoo.com/archives/533.html</guid>
		<description><![CDATA[为服务安装上了Dropbox，设定为每天4:00-6:00 开启同步服务。在之前运行两个脚本，自动备份web文件夹和mysql数据库。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>用Vps什么事都要自己费心，备份也是。像Linode里的备份服务是要收费的，一个月是5美元。与其花这5美元，不如自己丰衣足食。为服务安装上了Dropbox，设定为每天4:00-6:00 开启同步服务。在之前运行两个脚本，自动备份web文件夹和mysql数据库。</p>
<p>两个脚本都是备份文件到/root/Dropbox/backup目录里，并自动删除10天前的备份。web备份是每周行一次，删除30天前的备份。</p>
<p><span id="more-533"></span></p>
<h3>一、备份WEB文件夹</h3>
<p>1、备份/home/users/public_html目录</p>
<p>2、修改crontab为每周第一天3：22时运行</p>
<pre class="brush: bash; title: 代码; notranslate">22 3 * * 0 root run-parts /etc/cron.weekly</pre>
<p>3、复制脚本到/etc/cron.weekly目录</p>
<p>4、修改权限</p>
<pre class="brush: bash; title: 代码; notranslate">
chmod 0755 /etc/cron.weekly/webbackup.sh
</pre>
<p>5、脚本如下</p>
<pre class="brush: bash; title: 代码; notranslate">
#!/bin/sh

filename=`date +%Y%m%d`

backup_dir=&quot;/root/Dropbox/backup/web&quot;

#delete all files 10 days ago

find $backup_dir -mtime +30 -name &quot;*&quot; -exec rm -rf {} \;

#each user you want backup

users=&quot;baidu sina&quot;

for user in ${users}; do

tar zcvf $backup_dir/$user$filename.tar.gz /home/$user/public_html

done
</pre>
<p>6、注意filename那句不是单引号，在tab键上方</p>
<p>7、要备份的用户的public_html目录，就把该用户填入users</p>
<h3>二、Mysql数据库每日备份</h3>
<p>1、为了安全，新建用户backup，用强密码（自动生成即可），全局权限为select,lock tables</p>
<p>2、每日3：00开始执行，修改crontab</p>
<p>3、复制脚本到/etc/cron.daily</p>
<p>4、修改权限</p>
<p>5、脚本内容</p>
<pre class="brush: bash; title: 代码; notranslate">

#!/bin/sh

dbuser=&quot;backup&quot;

dbpassword=&quot;youpassword&quot;

datas=&quot;db1 db2 db3&quot;

filename=`date +%Y%m%d`

bin_dir=&quot;/usr/local/mysql/bin&quot;

backup_dir=&quot;/root/Dropbox/backup/mysql&quot;

#delete all files 10 days ago

find $backup_dir -mtime +10 -name &quot;*&quot; -exec rm -rf {} \;

#Do each database backup

for data in ${datas}; do

    $bin_dir/mysqldump --opt -u$dbuser -p$dbpassword $data | gzip &gt; $backup_dir/$data$filename.sql.gz

done
</pre>
<p>6、同上一个第6条</p>
<p>7、要备份的数据库填入datas</p>
<h3>三、感受</h3>
<p>因为都在美国的原因，备份到dropbox的速度很快，一个10M的文件备份到dropbox，从开启dropbox服务，马上刷新dropbox的网站就可以看到了。</p>
<p>如果流量很紧张的话，也可以设定dropbox为每周运行，或每5天运行等。应该是需要设定要备份周期，或者结合起来使用。</p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/595.html" title="体验Linode日本vps">体验Linode日本vps</a></li><li><a href="http://imvoo.com/archives/527.html" title="免费使用一年的Amazon云计算主机">免费使用一年的Amazon云计算主机</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/533.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ssh auth认证方式连接Linux服务器</title>
		<link>http://imvoo.com/archives/528.html</link>
		<comments>http://imvoo.com/archives/528.html#comments</comments>
		<pubDate>Tue, 26 Oct 2010 03:00:17 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[linode]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://imvoo.com/?p=528</guid>
		<description><![CDATA[介绍下在Windows和Linux分别用SSH auth认证方式连接Linux服务器的方法。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>介绍下在Windows和Linux分别用SSH auth认证方式连接Linux服务器的方法。为了更安全，请把服务器上的密码认证方式关掉吧，当然，在关掉之前，请确认能用密钥认证连接上去，不然的话，就悲剧了。解决方法也是有的，如Linode的Ajax Console，可以输入密码进入，这就要求应该把Linode的用户名和密码也设置的不容易猜到。在密码设置安全的情况下，其它的安全工作就交给Linode吧。而VPS的安全工作还是需要我们自己做的。<span id="more-528"></span></p>
<h2>一、sshd配置文件</h2>
<pre class="brush: bash; title: 代码; notranslate">

vim /etc/ssh/sshd_config

Protocol 2

ServerKeyBits 1024

PermitRootLogin no

PasswordAuthentication no

PermitEmptyPasswords no
</pre>
<p>AuthorizedKeysFile      .ssh/authorized_keys这句，是为什么要把id_rsa.pub改成这个文件名的原因，可以改成其它的。</p>
<h2>二、两种生成密钥的方式</h2>
<p>在下面全程处理其间，用密码认证登陆的窗口不要关闭。</p>
<h3>1、在Linux服务器下生成密钥</h3>
<pre class="brush: bash; title: 代码; notranslate">

ssh-keygen -t rsa
</pre>
<p>检查一下是否生成</p>
<pre class="brush: bash; title: 代码; notranslate">

cd ~/.ssh/

ls
</pre>
<p>正常情况下有两文件，id_rsa和id_rsa.pub。其中id_rsa.pub是公钥文件，需要放在服务器上的。id_rsa是私钥，下载下来备用。</p>
<p>用puttykeygen.exe程序，导入id_rsa，然后生成putty可以使用的私钥。</p>
<h3>2、在Putty里生成</h3>
<p>打开Puttykengen.exe程序，点击生成，然后在空白处移动鼠标，生成密钥。生成成功之后，在一文本框里的文件直接得到到服务器上。</p>
<pre class="brush: bash; title: 代码; notranslate">

vim ~/.ssh/authorized_keys
</pre>
<p>如果复制到记事本，然后再粘贴的话，格式会改变。保存退出。</p>
<p>点保存私钥，把生成的ppk文件放在putty目录。</p>
<p>为了能在Linux下用该私钥，还请在菜单 转换-&gt;导出openssh密钥，文件名id_rsa。</p>
<h2>三、分别在Windows和Linux下连接</h2>
<h3><span style="font-weight: normal;">还是不要关闭密码连接的putty客户端。</span></h3>
<h3>1、Windows连接</h3>
<p>个人感觉，在Windows里最好用的还是Putty，建议下载Putty中文版，还是便携的。<a href="http://code.google.com/p/puttycn/" target="_blank">点击这里下载</a>。</p>
<p>用Putty，在连接connect-&gt;ssh-&gt;认证auth里输入文件名.ppk即可。（要便携）</p>
<h3>2、Linux连接</h3>
<p>把下载的id_rsa文件，放到~/.ssh/目录下，然后更改权限为400。只要不被组成员和其它成员有权限即可。</p>
<p>连接用终端</p>
<pre class="brush: bash; title: 代码; notranslate">

ssh 用户名@服务器
</pre>
<p>如果你的Linux与服务器的用户名相同，可以直接ssh 服务器。</p>
<h2>四、注意</h2>
<p>上面，一直在警示不要关闭密码连接的putty客户端。因为如果因为权限的问题或其它问题导致密钥方式连接不上，就悲剧了。如果出现问题：</p>
<pre class="brush: bash; title: 代码; notranslate">

cat /etc/log/secure
</pre>
<p>一般在客户端会提示：server-refused-our-key</p>
<p>查看到底是什么问题，一般来说是因为权限的原因，可以检查 /home/用户名，/home/用户名/.ssh，和/home/用户名/.ssh/authorized_keys看权限是否输入正确。</p>
<p>当然，在上面的ssh配置，可以把</p>
<pre class="brush: bash; title: 代码; notranslate">

PasswordAuthentication no

改成

#PasswordAuthentication no
</pre>
<p>后，一直到密钥认证可以连接为止，再修改回来，重启sshd服务。</p>
<blockquote><p>我的Linode推荐链接：<span style="font-family: monospace; line-height: normal; font-size: 12px; -webkit-border-horizontal-spacing: 16px; -webkit-border-vertical-spacing: 16px;"><a href="http://www.linode.com/?r=23088caa5bc161f4f9499c969075436e03465e6a" target="_blank">http://www.linode.com/?r=23088caa5bc161f4f9499c969075436e03465e6a</a></span></p></blockquote>
<h2><span style="font-weight: normal; font-size: 13px;">看看哪些用户可以在终端登陆，把不需要终端登陆的用户禁掉吧，即把 shell改成/sbin/nologin，需要登陆的用户就改成ssh密钥认证。</span></h2>
<p>下面是我的一Vps日志信息，多么的严重啊，正在玩猜猜猜呢。</p>
<pre class="brush: bash; title: 代码; notranslate">
cat /var/log/secure | grep &quot;Invalid&quot;
2010-10-24T13:49:53.049759+08:00 server sshd[997]: Invalid user admin from 72.46.126.20
2010-10-24T13:49:55.604691+08:00 server sshd[1004]: Invalid user test from 72.46.126.20
2010-10-24T13:50:00.922369+08:00 server sshd[1008]: Invalid user backup from 72.46.126.20
2010-10-24T13:50:03.911972+08:00 server sshd[1010]: Invalid user guest from 72.46.126.20
2010-10-26T04:22:49.634938+08:00 server sshd[9398]: Invalid user oracle from 59.151.119.180
2010-10-26T04:22:51.356569+08:00 server sshd[9400]: Invalid user test from 59.151.119.180
2010-10-26T04:22:53.077738+08:00 server sshd[9402]: Invalid user test from 59.151.119.180
2010-10-26T04:22:54.807528+08:00 server sshd[9404]: Invalid user test from 59.151.119.180
2010-10-26T04:22:56.536495+08:00 server sshd[9406]: Invalid user test from 59.151.119.180
2010-10-26T04:22:58.265747+08:00 server sshd[9408]: Invalid user test from 59.151.119.180
2010-10-26T04:22:59.987859+08:00 server sshd[9410]: Invalid user test from 59.151.119.180
2010-10-26T04:23:01.717557+08:00 server sshd[9412]: Invalid user test from 59.151.119.180
2010-10-26T04:23:03.918525+08:00 server sshd[9414]: Invalid user test from 59.151.119.180
2010-10-26T04:23:09.008367+08:00 server sshd[9416]: Invalid user user from 59.151.119.180
2010-10-26T04:23:10.730715+08:00 server sshd[9418]: Invalid user user from 59.151.119.180
2010-10-26T04:23:12.456085+08:00 server sshd[9420]: Invalid user user from 59.151.119.180
2010-10-26T04:23:14.185438+08:00 server sshd[9422]: Invalid user user from 59.151.119.180
2010-10-26T04:23:15.914612+08:00 server sshd[9424]: Invalid user oracle from 59.151.119.180
2010-10-26T04:23:17.644185+08:00 server sshd[9426]: Invalid user oracle from 59.151.119.180
2010-10-26T04:23:19.371199+08:00 server sshd[9428]: Invalid user oracle from 59.151.119.180
2010-10-26T05:38:02.172549+08:00 server sshd[10168]: Invalid user dasusr1 from 118.70.253.8
2010-10-26T05:38:03.689410+08:00 server sshd[10170]: Invalid user install from 118.70.253.8
</pre>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/595.html" title="体验Linode日本vps">体验Linode日本vps</a></li><li><a href="http://imvoo.com/archives/318.html" title="比N97强大的新机麻雀Sparrow曝光">比N97强大的新机麻雀Sparrow曝光</a></li><li><a href="http://imvoo.com/archives/204.html" title="Ubuntu 8.10即将发布，已有下载">Ubuntu 8.10即将发布，已有下载</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/528.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>域名从万网转向name.com</title>
		<link>http://imvoo.com/archives/461.html</link>
		<comments>http://imvoo.com/archives/461.html#comments</comments>
		<pubDate>Sat, 10 Apr 2010 17:27:46 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[name.com]]></category>
		<category><![CDATA[域名]]></category>
		<category><![CDATA[转移]]></category>

		<guid isPermaLink="false">http://imvoo.com/?p=461</guid>
		<description><![CDATA[把域名转移到name.com的好处有很多，自从下次说要把剩下的域名转移出去之后，到现在才开始实施。1、国外的几个注册商的服务要比国内的强很多。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p><img class="alignleft" title="name.com" src="http://www.name.com/media/logo.name.com.png?1.00" alt="Name.com" />把域名转移到name.com的好处有很多，自从下次说<a href="http://imvoo.com/archives/386.html" target="_blank">要把剩下的域名转移出去</a>之后，到现在才开始实施。1、国外的几个注册商的服务要比国内的强很多。2、name.com的操作简单。3、name.com自带whois保护，这些在其它注册商那里是需要收费的。这次转移域名的申请表时填的是name.com，收到转移码之后，习惯性地跑到Godadyy时，操作到whois保护需要收取不菲的费用时，才想起来，原计划是要转到Name.com的。<br />
<span id="more-461"></span></p>
<h3>正确填写域名转移申请表</h3>
<p>从万网下载申请表后，把需要填写的项都填上，附上必要的身份证明。注意需要申请人，ID所有人和域名所有人的签字。走EMS寄到万网，填写好手机号，万网收到后，EMS会向你的手机号发送已签收的短信。</p>
<p>在万网北京公司收到后的第二天，万网青岛公司打电话过来问（这个人经常打电话过来）是不是要转移域名，然后问为什么不在万网了。回答之后，她说会在今天或明天会让技术人员发送转移码。</p>
<h3>转移到Name.com</h3>
<p>邮寄资料到收到转移码是5天时间，按国内注册商的惯例，转移域名也是5天。所以操作完这步，就继续等待吧。</p>
<p>1、选择Transfer Domain Names</p>
<p>在accounts界面</p>
<p><img class="aligncenter" src="http://xpgolg.bay.livefilestore.com/y1p4nOZE8MlmujsuruBTGlRo9eRQCFeAh9SfBJ8sySZnN9ojfZteERUq9fkbA0fWvl5vcKKZxx7YP188YL1i8FEkOcWlMgZVdVv/024.png" alt="Name.com转移域名" /></p>
<p>2、输入要转移的域名和转移码</p>
<p><img class="aligncenter" src="http://xpgolg.bay.livefilestore.com/y1pKT8liJfmC43E7FVbyP5a6CN8sRL9h-dONI9XmWu5-7iYEwEBPaONgtAdattpfyHQcHtdwjigCt515LV_j5ZRSmp4Rdp7LO9p/025.png" alt="Name.com转移域名" /></p>
<p>3、等待确认转移邮件</p>
<p>因为确认邮件是发往域名所有者的邮箱，所以一定要注意邮箱是否能用。</p>
<p>To PROCEED with the transfer, please click on the following URL:</p>
<p>https://www.name.com/transfers_in/accept.php?key=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</p>
<p>打开上面的地址，需要登陆，就可以确认了。</p>
<p>4、等待转移</p>
<p>剩下的还是等待，打开邮件里的网址之后，确认转移。选择View Registrar Transfers，可能查看目前的转移状态。</p>
<h3>结语</h3>
<p>无论从价格上，还是从注册商的服务上来说，没有理由不转到国外去。深层次的原因，大家都深知肚明，这里就不说了。从这次转移到Name.com来说，7.99美元的价格，虽然比优惠的Godaddy6.99美元要贵，但是多了一个Whois保护，还是物超所值的。</p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/402.html" title="cm域名重新热注及几条域名短讯">cm域名重新热注及几条域名短讯</a></li><li><a href="http://imvoo.com/archives/386.html" title="今天转移了一个域名到GoDaddy">今天转移了一个域名到GoDaddy</a></li><li><a href="http://imvoo.com/archives/492.html" title="2010年7月1日，.com和.net域名涨价分别为7%,10%">2010年7月1日，.com和.net域名涨价分别为7%,10%</a></li><li><a href="http://imvoo.com/archives/426.html" title="突然有了预测能力">突然有了预测能力</a></li><li><a href="http://imvoo.com/archives/425.html" title="博客新域名启用http://imvoo.com">博客新域名启用http://imvoo.com</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/461.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>今天转移了一个域名到GoDaddy</title>
		<link>http://imvoo.com/archives/386.html</link>
		<comments>http://imvoo.com/archives/386.html#comments</comments>
		<pubDate>Sat, 06 Jun 2009 14:35:57 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[GoDaddy]]></category>
		<category><![CDATA[域名]]></category>
		<category><![CDATA[转移]]></category>

		<guid isPermaLink="false">http://imvoo.com/archives/386.html</guid>
		<description><![CDATA[今天转移的这个域名是拍卖所得，提供了转移码，所以转向国外的注册商是很方便的，再说上面专门提示不要转向万网。就拿转向Godaddy来作为转移处女转了。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p><img class="alignleft" src="http://lh3.ggpht.com/_SbB9RxjJztk/SiqBfBkUY_I/AAAAAAAABJQ/l5HRbTfztlQ/s400/godaddy.png" alt="Godaddy Logo" width="124" height="71" />早就说要把名下的几个域名转移到Godaddy，但是却一直没有实施，一是麻烦，二是忙，三是注册商好几个。注册商有万网、易名、商务中国的下级注册商还有两个小的注册商。像二级注册商那里更麻烦，曾经咨询过，说要把资料寄给他们，然后他们再把资料寄给商务中国。这一圈的资料寄过去，估计要花上百元了。</p>
<p>今天转移的这个域名是拍卖所得，提供了转移码，所以转向国外的注册商是很方便的，再说上面专门提示不要转向万网。就拿转向Godaddy来作为转移处女转了。</p>
<p><span id="more-386"></span></p>
<p>转移的教程是从网上搜到的，大体的步骤就说一下，图就从简。</p>
<div class="wp-caption aligncenter" style="width: 413px"><img title="Transfer Domain to Go Daddy" src="http://lh3.ggpht.com/_SbB9RxjJztk/SiqBCor6vWI/AAAAAAAABIw/YOG0AxgFiqo/s512/domain1.jpg" alt="Transfer Domain to Go Daddy" width="403" height="359" /><p class="wp-caption-text">Transfer Domain to Go Daddy</p></div>
<ol>
<li>前面的检查域名邮箱和是否可以转移的步骤就省略了，因为是购买的关系，这两项工作域名原持有方已经做完；</li>
<li>到Godaddy的Domain菜单下选择Transfer Domains to  Go Daddy，然后按照步骤下一步操作，注意一些服务选项，选上可是要多花钱的；</li>
<li>这是我检查邮箱时已经收到了由原域名持有人转发来的Transaction ID和Secruity Code的邮件。Subject:Transfer of YouDomain.COM ；</li>
<li>到 Godaddy 的My Domains下 Pendding Transfer 管理界面找到转移的域名，选择该域名，点击右上角的Authorization下拉菜单的Begin Transfer Authorization；</li>
<li> 在弹出的窗口中输入Transaction ID 和Security Code，域名管理员（Whois里的Administrator 邮箱）才能收到这 2 个验证信息，然后点击下一步；</li>
<li>信息填写正确后，需要输入 Authentication Code，也就是域名转移密码；</li>
<li>经过5－7天的等待即可完全转入到Godaddy，如果原域名注册商不反对的话，就会很顺利。等域名转入成功，再Update；<span style="font-family: mceinline;">于6月12日转移成功，转移成功之后还需要修改原所有人信息。</span></li>
</ol>
<div class="wp-caption aligncenter" style="width: 277px"><img class=" " title="Begin Transfer Authorization" src="http://lh5.ggpht.com/_SbB9RxjJztk/SiqBXU5BACI/AAAAAAAABJM/JpVnIiKTVbI/s400/domain4.jpg" alt="Begin Transfer Authorization" width="267" height="316" /><p class="wp-caption-text">Begin Transfer Authorization</p></div>
<p>这一步时，我总在点那个黑按钮，没有注意到下拉菜单，以为是Tooltips，还以为是网络中断了，后来仔细看的时候才发现。</p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/461.html" title="域名从万网转向name.com">域名从万网转向name.com</a></li><li><a href="http://imvoo.com/archives/402.html" title="cm域名重新热注及几条域名短讯">cm域名重新热注及几条域名短讯</a></li><li><a href="http://imvoo.com/archives/492.html" title="2010年7月1日，.com和.net域名涨价分别为7%,10%">2010年7月1日，.com和.net域名涨价分别为7%,10%</a></li><li><a href="http://imvoo.com/archives/426.html" title="突然有了预测能力">突然有了预测能力</a></li><li><a href="http://imvoo.com/archives/425.html" title="博客新域名启用http://imvoo.com">博客新域名启用http://imvoo.com</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/386.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>在Blogger上启用了域名绑定</title>
		<link>http://imvoo.com/archives/377.html</link>
		<comments>http://imvoo.com/archives/377.html#comments</comments>
		<pubDate>Thu, 14 May 2009 00:26:30 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[博客]]></category>
		<category><![CDATA[域名]]></category>

		<guid isPermaLink="false">http://imvoo.com/?p=377</guid>
		<description><![CDATA[除了经常被墙外，Blogger是完美的，最重要的是可以绑定域名，虽然ghs.google.com现在还被墙奸着。
]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p><img class="alignleft" src="http://lh3.ggpht.com/_SbB9RxjJztk/Sgro_OOUJyI/AAAAAAAABDc/LGgu23731oM/s400/logo40.jpg" alt="Blogger" width="150" height="40" />在Blogger上申请博客的时间应该是2007年5月12日，因为可以在博客上看到第一篇日志的时间就是这个时候，很巧合的是5月11日时又重新启用了Blogger的博客，正正好是2年。</p>
<p>除了经常被墙外，Blogger是完美的，最重要的是可以绑定域名，虽然ghs.google.com现在还被墙奸着。</p>
<p><span id="more-377"></span></p>
<p>我绑定的域名是<a href="http://blog.imvoo.com" target="_blank">http://blog.imvoo.com</a>，以后在这里就简短的写一些东西，一些不适合在主博客上发表的东西就全部写到上面了。域名的Cname是写的google.proxy.laifuer.cn.</p>
<p><strong>Blogger知识</strong></p>
<blockquote><p>Blogger(http://www.blogger.com)目前是Google旗下一家大型的博客服务网站。它也是第一家大规模博客服务的提供商，由旧金山一家名为 Pyra Labs 的小型公司于 1999 年 8 月创办。<br />
Blogger.com是Pyra Labs的旗舰产品。Blogger的成长速度惊人，曾创下单月过百万注册用户的纪录。但在很长时间里，它没有赚到钱，连线上广告业务也没有。原始资本快花光了，一些员工也辞职了，包括当初一起创立Blogger的部分成员。Pyra试图扭转颓势，于是引入了Blogspot的付费模式，效果一般。很明显，简单的copy模式是不够的，Pyra需要更多资金来维持正常运转。<br />
2003年中，Google收购了Blogger.com，向其注入资金。Blogger于2004年5月请来专业设计师重新设计了页面。目前它已成为人们最常用的工具之一，在推广Google Adsense上也起到了一定作用。</p></blockquote>
<p><strong>去除导航条</strong></p>
<p>新版Blogger可以用如下方法隐藏Navbar： 在模板修改Page Elements那一项，加入一个”HTML/JavaScript” Element，写入代码 <br />
#navbar-iframe { height: 0px; visibility: hidden; display: none } <br />
#navbar-iframe { height: 0px; visibility: hidden; display: none } <br />
即可去掉navbar。</p>
<p><strong>截图留念</strong></p>
<p>时间上是完全的巧合，</p>
<p style="text-align: center;"><img class="aligncenter" src="http://lh3.ggpht.com/_SbB9RxjJztk/SgrosUZPUyI/AAAAAAAABDY/fIirB1poCsY/s512/blogger.jpg" alt="Blogger截图" width="486" height="423" /></p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/426.html" title="突然有了预测能力">突然有了预测能力</a></li><li><a href="http://imvoo.com/archives/425.html" title="博客新域名启用http://imvoo.com">博客新域名启用http://imvoo.com</a></li><li><a href="http://imvoo.com/archives/424.html" title="博客域名即将更换">博客域名即将更换</a></li><li><a href="http://imvoo.com/archives/492.html" title="2010年7月1日，.com和.net域名涨价分别为7%,10%">2010年7月1日，.com和.net域名涨价分别为7%,10%</a></li><li><a href="http://imvoo.com/archives/461.html" title="域名从万网转向name.com">域名从万网转向name.com</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/377.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>从善用佳软被盗看待域名安全问题</title>
		<link>http://imvoo.com/archives/340.html</link>
		<comments>http://imvoo.com/archives/340.html#comments</comments>
		<pubDate>Tue, 17 Mar 2009 07:08:34 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[域名]]></category>
		<category><![CDATA[域名注册]]></category>
		<category><![CDATA[安全]]></category>
		<category><![CDATA[木马]]></category>

		<guid isPermaLink="false">http://imvoo.com/archives/340.html</guid>
		<description><![CDATA[不但要把域名的密码设置复杂，你的注册邮箱的密码也要设置复杂一些，因为域名的一些操作是要通过邮箱才能进行的，如果邮箱失陷了，那域名也就不安全了。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>从小众软件上看到的消息称，善用佳软 (xbeta.info 现已没有解析) 域名于 15-Mar-2009 12:56:32 UTC 也就是 北京时间 2009年03月15日 20:56:32 被盗。</p>
<p>Godaddy等国外的域名可以线上转出，而国内的域名注册商基本上没有线上转出，即使可以也很复杂，但是国内的域名注册商不开放线上转出的初衷不是安全问题，而是绑定用户不转出赚取最大利润。</p>
<p><span id="more-340"></span></p>
<p>虽然国外注册商面临着域名被盗的危险，但还是在国外注册比较安全一些，以免发生电玩巴士等网站域名突然被停止解析的问题。</p>
<p><strong>设置复杂密码，提高域名的安全性：</strong></p>
<p>从善用佳软的案例可以看到，在有人尝试密码时，Godday会锁定域名，转出时也会邮件通知。</p>
<p>这就要求我们尽量采用复杂的密码而且经常更换密码。在得到尝试密码通知信时，要高度重试，马上修改密码或者锁定转出域名。</p>
<p>不但要把域名的密码设置复杂，你的注册邮箱的密码也要设置复杂一些，因为域名的一些操作是要通过邮箱才能进行的，如果邮箱失陷了，那域名也就不安全了。</p>
<p><strong>防范木马，注意帐户被盗：</strong></p>
<p>从被盗是防止木马偷取电脑上存在的帐户密码，我记得曾经做过一个加壳的，本来可以查出的木马后，杀毒软件检测不出来了。杀毒软件不是万能的，但是没有杀毒软件也是不行，平时上网时就要注意，一般的不认识的网站不要点击，虽然认识的网站也有可能被种上木马。</p>
<blockquote><p>原文链接：</p>
<p>最近收到过 Godaddy 提醒，有人试我密码，需要激活。然后，今天看到邮件，说域名已取消续费，被转让。正与 Godaddy 联系中。</p>
<p>1. 不是未续费的原因。我于08年12月续了2年的注册费，见此邮件 。</p>
<p>2. 近期有其他 IP 试图破获密码登录，并导致 Godaddy 账户锁定保护，Godaddy 于3月15日08:00发来邮件 ，我进行了解锁（但重视不够，未更改密码）。</p>
<p>3. 3月15日 21:17：Godaddy 发来邮件，说 DOMAIN OWNERSHIP TRANSFER</p>
<p>4. 目前查知，当前的 http://xbeta.info 持有人是土耳其网友，已发信与对方联系。</p></blockquote>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/492.html" title="2010年7月1日，.com和.net域名涨价分别为7%,10%">2010年7月1日，.com和.net域名涨价分别为7%,10%</a></li><li><a href="http://imvoo.com/archives/461.html" title="域名从万网转向name.com">域名从万网转向name.com</a></li><li><a href="http://imvoo.com/archives/426.html" title="突然有了预测能力">突然有了预测能力</a></li><li><a href="http://imvoo.com/archives/425.html" title="博客新域名启用http://imvoo.com">博客新域名启用http://imvoo.com</a></li><li><a href="http://imvoo.com/archives/424.html" title="博客域名即将更换">博客域名即将更换</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/340.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>于今天2月17日再次更换模板</title>
		<link>http://imvoo.com/archives/299.html</link>
		<comments>http://imvoo.com/archives/299.html#comments</comments>
		<pubDate>Tue, 17 Feb 2009 11:25:10 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[iNove]]></category>
		<category><![CDATA[Maxthon2]]></category>
		<category><![CDATA[oriental]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[主题]]></category>
		<category><![CDATA[模板]]></category>

		<guid isPermaLink="false">http://imvoo.com/archives/299.html</guid>
		<description><![CDATA[iNove模板在wordpress官网上有很高的支持率，很长一段时间了，都是排在第一页。选模板的时候，还有一个oriental供选择，在两相比较之后，更倾向于选择前者。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>本来打算用Maxthon模板很长一段时间的，原来觉得该模板很好看，上次更换模板是在去年的8月，用了差不多半年后，产生了审美疲劳，于是在今天更换了<a href="http://wordpress.org/extend/themes/inove">iNove</a>模板。</p>
<p><span id="more-299"></span></p>
<p>该模板在wordpress官网上有很高的支持率，很长一段时间了，都是排在第一页。选模板的时候，还有一个<a href="http://wordpress.org/extend/themes/oriental">oriental</a>供选择，在两相比较之后，更倾向于选择前者。iNove模板更简洁，有些地方有些apple的风格，oriental是橙色的风格，怕的是看久了之后，也会有疲劳感觉。如果没有特殊情况的话，将使用iNove很长时间，随官方网站更新，再来点微调，换换CSS什么的。</p>
<p>这个已经做好了网站被K页的情况了，上次因为换模板，被百度K到只剩几页的结果了，估计这次也是在劫难逃吧。换模板对一个网站来说，是很平常的事，但是搜索引擎好像不是这么看的，因为换模板的时候，一些关键字的顺序什么的也改变了，这像以前的Maxthon模板是被我修改过的，把目录移到了上面，而这次的模板我就没有修改，所以上面的导航是页面导航，而目录导航在side里面了，也就是默认的，没有更改的原因，是我想对这个主题持续跟踪更新。</p>
<p>最后，对原来的Maxthon wordpress主题来个留影纪念。</p>
<p style="text-align: left;">
<p style="text-align: left;">maxthon主题留影</p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/313.html" title="WordPress的留言模板代码输出未闭合的Bug">WordPress的留言模板代码输出未闭合的Bug</a></li><li><a href="http://imvoo.com/archives/185.html" title="Wordpress模板：修改后的Maxthon2模板，支持Widget">Wordpress模板：修改后的Maxthon2模板，支持Widget</a></li><li><a href="http://imvoo.com/archives/335.html" title="从本博客的搜索引擎收录历史看网站优化">从本博客的搜索引擎收录历史看网站优化</a></li><li><a href="http://imvoo.com/archives/310.html" title="修正几个地方 让网站通过W3C标准验证">修正几个地方 让网站通过W3C标准验证</a></li><li><a href="http://imvoo.com/archives/301.html" title="对iNove的修改 停用 All in One Seo">对iNove的修改 停用 All in One Seo</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/299.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>打开浏览器（IE）就自动关机（现象同断电）解决方案</title>
		<link>http://imvoo.com/archives/259.html</link>
		<comments>http://imvoo.com/archives/259.html#comments</comments>
		<pubDate>Tue, 13 Jan 2009 12:18:11 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[浏览器]]></category>
		<category><![CDATA[自动关机]]></category>

		<guid isPermaLink="false">http://imvoo.com/archives/259.html</guid>
		<description><![CDATA[打开IE，包括IE6，IE7，IE8，空白页的时候很正常，打开简单的网页时（如Google）没有异常，打开复杂网页（如新浪首页），就会出现自动关机现象，此现象并不像是从开始菜单关机的步骤，就像是突然停电、断电一样。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>本来想写的标题是“谈谈<strong>打开浏览器</strong>（IE）就<strong>自动关机</strong>（现象同<strong>断电</strong>）不完全解决方案    <br />”，但是因为太长，就截取了一部分。</p>
<p>症状：打开IE，包括IE6，IE7，IE8，空白页的时候很正常，打开简单的网页时（如Google）没有异常，打开复杂网页（如新浪首页），就会出现自动关机现象，此现象并不像是从开始菜单关机的步骤，就像是突然停电、<strong>断电</strong>一样。</p>
<p> <span id="more-259"></span>
<p>不完全解决：</p>
<p>从启动U盘上的PE系统启动，没有上述的现象，如是想到是系统问题。重装系统后，一切正常，用360安全卫士更新安全补丁后，又出现如上现象，于是判断是安全补丁的问题。因为安装的是SP3，安全补丁有30多，不确定是哪个的情况下，把补丁全部删除了， 又能正常上网了。联想到一个月之前，没有自动关机现象，所以出问题的应该是最近一个月的补丁，在网上可以搜到最近一个月的补丁是哪些，用排除法就可以找到出问题的补丁了。因为时间关系和不是本人电脑的问题，根本的解决问题方法没有找到，只找到了大概的解决方向，如果你有出现这个问题，可以按时间顺序删除安装的补丁，直到可以正常为止。</p>
<p>另：我的电脑及公司附近其它电脑都没有这个问题，看来是该补丁与某些硬件有冲突。</p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/388.html" title="万能充电器引起N81自动关机">万能充电器引起N81自动关机</a></li><li><a href="http://imvoo.com/archives/307.html" title="IE8应该坚持走网页标准化道路">IE8应该坚持走网页标准化道路</a></li><li><a href="http://imvoo.com/archives/173.html" title="ie双击变成了创建快捷方式，网上的解决办法">ie双击变成了创建快捷方式，网上的解决办法</a></li><li><a href="http://imvoo.com/archives/52.html" title="css加注释，IE下不起作用">css加注释，IE下不起作用</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/259.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>吸取教训：百度事件令韩国门户打寒颤</title>
		<link>http://imvoo.com/archives/220.html</link>
		<comments>http://imvoo.com/archives/220.html#comments</comments>
		<pubDate>Sun, 07 Dec 2008 15:13:14 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[百度]]></category>
		<category><![CDATA[竞价排名]]></category>

		<guid isPermaLink="false">http://imvoo.com/archives/220.html</guid>
		<description><![CDATA[韩国《朝鲜日报》昨日撰文称，竞价排名黑幕不仅令百度企业形象受损，还引发了集体诉讼风险，这一事件也引起提供类似业务的韩国门户网站Naver和Daum等的关注。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>导语：韩国《朝鲜日报》昨日撰文称，竞价排名黑幕不仅令百度企业形象受损，还引发了集体诉讼风险，这一事件也引起提供类似业务的韩国门户网站Naver和Daum等的关注。 </p>
<p><span id="more-220"></span>
<p><strong>以下为文章全文：</strong>
<p>掌控中国网络搜索市场70%的中国最大门户网站百度因拍卖搜索排名而面临着集体诉讼危机。
<p>英国《金融时报》1日报道说：“百度因为‘拍卖搜索排名’而面临集体诉讼危机。”所谓“拍卖搜索排名”，是指在网上搜索特定产品或服务时，企业花钱越多，搜索排名越高。
<p>例如，如果搜索“送花企业”，交纳广告费最多的企业会在搜索名单中列“第一”或第二、三位。不仅在中国，Naver和Daum等韩国门户网站也都采取这种方式，因此，针对百度的集体诉讼结果备受关注。
<p>特别是，百度和韩国门户网站一样，虽然收取广告费并出售搜索排名，但并没有明确指出这种行为实际上是做广告。有人指出，虽然韩国的Naver从今年9月份开始加上“AD”一词，但普通人很难看出这是广告。
<p>带头对百度提出集体诉讼的律师李长青说：“中国国内已经有50家企业要对百度提起诉讼。参加企业超过100家以后，我们将立刻提起诉讼。”律师团计划把百度侵害商标权和欺诈、不公平行为等当作问题。
<p>律师团主张说：“百度在搜索结果中排除没有参与拍卖的企业，这种行为显然是垄断市场的作态。”
<p>另外，百度方面对此主张说：“目前已启动新的程序，即阻止对无照企业的搜索并在搜索结果中明确标记交钱的企业。”</p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/409.html" title="IP地址对搜索引擎收录（百度）收录的影响">IP地址对搜索引擎收录（百度）收录的影响</a></li><li><a href="http://imvoo.com/archives/385.html" title="百度改变直接搜索域名的结果">百度改变直接搜索域名的结果</a></li><li><a href="http://imvoo.com/archives/349.html" title=".tel域名和chi.mp服务">.tel域名和chi.mp服务</a></li><li><a href="http://imvoo.com/archives/335.html" title="从本博客的搜索引擎收录历史看网站优化">从本博客的搜索引擎收录历史看网站优化</a></li><li><a href="http://imvoo.com/archives/320.html" title="从一个关键字 看看Live Search和百度的搜索更正">从一个关键字 看看Live Search和百度的搜索更正</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/220.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>服务器转入国内，速度比国外快多了</title>
		<link>http://imvoo.com/archives/177.html</link>
		<comments>http://imvoo.com/archives/177.html#comments</comments>
		<pubDate>Tue, 21 Oct 2008 02:36:57 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[hostmonster]]></category>
		<category><![CDATA[主机]]></category>

		<guid isPermaLink="false">http://imvoo.com/?p=177</guid>
		<description><![CDATA[服务器转入国内，相比国外真是快啊。以前用的是hostmonster的主机，相对于国外的主机，hostmonster算是快的了，主要问题就是经常被挡在墙外。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>服务器转入国内，相比国外真是快啊。以前用的是hostmonster的主机，相对于国外的主机，hostmonster算是快的了，主要问题就是经常被挡在墙外。现在主机在国内，不会发生挡在墙外的情况，而且速度快了好几倍，用起来也舒服多了。<span id="more-177"></span></p>
<p>如果你做的英文站，主要受众为国外人士，那么建议你还是用国外的主机。建议不要看那些主机比容量，容量毕竟是小问题，那么多你也用不完，而且国外的主机限制Cpu，我的限制在1.5%。有时，一批量生成html就会超标。</p>
<p>如果是中文的站，还是放在国内吧。麻烦是麻烦一点。</p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/160.html" title="Hostmonster后台进不去">Hostmonster后台进不去</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/177.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>即将推出-更快更好的 Hotmail</title>
		<link>http://imvoo.com/archives/161.html</link>
		<comments>http://imvoo.com/archives/161.html#comments</comments>
		<pubDate>Sat, 20 Sep 2008 16:51:44 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[hotmail]]></category>

		<guid isPermaLink="false">http://imvoo.com/archives/161.html</guid>
		<description><![CDATA[收到Hotmail来信说，即将推出性能更好，速度更快的Windows Live Hotmail，登录和查看电子邮件的速度提高70%。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p> 收到Hotmail来信说，即将推出性能更好，速度更快的Windows Live Hotmail，登录和查看电子邮件的速度提高70%。</p>
<p> <span id="more-161"></span>
<p>&#160;</p>
<blockquote><p><img height="66" src="http://ads1.msn.com/ads/pronws/Wave3_Hotmail_Email/chs/WAVE3_int_r2_c3.gif" width="387" border="0" />
<p><strong>速度更快捷。* </strong>登录和查看电子邮件的速度提高 70 %。      <br /><strong>设计更简洁明晰。</strong> Windows Live&#8482; Hotmail&#174; 结合了经典版和完全版的优点，您可以尽享 Hotmail 提供的所有功能。       <br /><strong>电子邮件展现更多个性色彩。</strong> 新的主题和颜色使您可以设计个性化的收件箱，让您的个性大放异彩。       <br /><strong>联系更紧密。</strong> 只需在&quot;收件人&quot;行中键入几个字符，系统就会根据您键入的字符给出最匹配的电子邮件联系人选择。另外，您可以更方便地向一组联系人发送电子邮件。       <br /><strong>更酷的功能即将推出。</strong> 我们已经对 Hotmail 进行了更多值得期待的大更新，例如<strong>不断增加的存储空间</strong>、<strong>Hotmail 中的 IM</strong> 功能，以及<strong>全新的日历功能</strong>（您可以与家人和朋友轻松共享您的日历）。</p>
<p>*根据 Microsoft 在 2008 年 7 月进行的测试，在宽带连接中，Hotmail 在执行以下操作时速度提高了 70%：登录、查看电子邮件、打开电子邮件。在低速网络连接中，上述测试速度提高了 56%。     <br />Microsoft 尊重您的隐私。请阅读我们的联机<a href="http://Microsoft.windowslive.com/Key=17542.QlJs.D.HX.YgK36">隐私声明</a>。       <br />如果您希望不再接收来自 MSN 或 Windows Live 的促销信息或调查邮件，请单击<a href="http://Microsoft.windowslive.com/Key=17542.QlJs.F.HX.KMHscV">此处</a>以取消订阅。若要为其他 Microsoft 通信设置联系人首选项，请参阅 <a href="http://Microsoft.windowslive.com/Key=17542.QlJs.G.HX.CLBRGj">Microsoft 隐私声明</a>中的通信首选项部分。      </p>
<p><img src="http://Microsoft.windowslive.com/images/blankpixel.gif/Key=17542.QlJs..HX.Jcg151" /></p>
</blockquote>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/258.html" title="Hotmail或将向用户推出Pop3服务">Hotmail或将向用户推出Pop3服务</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/161.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hostmonster后台进不去</title>
		<link>http://imvoo.com/archives/160.html</link>
		<comments>http://imvoo.com/archives/160.html#comments</comments>
		<pubDate>Sat, 20 Sep 2008 16:47:45 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[hostmonster]]></category>

		<guid isPermaLink="false">http://imvoo.com/archives/160.html</guid>
		<description><![CDATA[我的博客所在的主机是hostmonster，现在想进后台修改一下东西，发现后台进不去了。首页可以进去，首页的ip是74.220.195.150，我的主机所在后台的ip是74.220.207.172，我想会不会是被伟大的墙给屏蔽了呢]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p>我的博客所在的主机是hostmonster，现在想进后台修改一下东西，发现后台进不去了。首页可以进去，首页的ip是74.220.195.150，我的主机所在后台的ip是74.220.207.172，我想会不会是被伟大的墙给屏蔽了呢？具体如下：</p>
<p> <span id="more-160"></span>
<p>&#160;</p>
<p>Pinging hostmonster.com [74.220.195.150] with 32 bytes of d </p>
<p>Reply from 74.220.195.150: bytes=32 time=223ms TTL=44    <br />Reply from 74.220.195.150: bytes=32 time=223ms TTL=44     <br />Reply from 74.220.195.150: bytes=32 time=223ms TTL=44     <br />Reply from 74.220.195.150: bytes=32 time=224ms TTL=44 </p>
<p>Ping statistics for 74.220.195.150:    <br />&#160;&#160;&#160; Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),     <br />Approximate round trip times in milli-seconds:     <br />&#160;&#160;&#160; Minimum = 223ms, Maximum = 224ms, Average = 223ms </p>
<p>C:\Documents and Settings\Yusuf&gt;ping host172.hostmonster.co </p>
<p>Pinging host172.hostmonster.com [74.220.207.172] with 32 by </p>
<p>Request timed out.    <br />Request timed out.     <br />Request timed out.     <br />Request timed out. </p>
<p>Ping statistics for 74.220.207.172:    <br />&#160;&#160;&#160; Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),</p>
<p>等到期了，就把博客搬到国内了，唉。</p>
<p>另：据搜索可以在<a href="http://login.hostmonster.com/logout">http://login.hostmonster.com/logout</a>里进入后台。</p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/177.html" title="服务器转入国内，速度比国外快多了">服务器转入国内，速度比国外快多了</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/160.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>中国银杏网正在制作模板</title>
		<link>http://imvoo.com/archives/125.html</link>
		<comments>http://imvoo.com/archives/125.html#comments</comments>
		<pubDate>Sat, 23 Aug 2008 16:46:01 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[网络日志]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[模板]]></category>
		<category><![CDATA[银杏网]]></category>

		<guid isPermaLink="false">http://imvoo.com/archives/125.html</guid>
		<description><![CDATA[当然，phpcms比dedecms强大的多，去年，我就制作了一个phpcms的垃圾站，很好很强大，但就是因为模板制作太麻烦了，所以就放弃了。]]></description>
			<content:encoded><![CDATA[<div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><p><img class="picasa alignleft" src="http://lh6.ggpht.com/_SbB9RxjJztk/SLA6RHRhVgI/AAAAAAAAAKk/SBLEZOh3OxY/s400/AE%7E%607KI%7BDS%24%24E4%60JPN5JY34.jpg" alt="" width="176" height="84" />中国银杏网用的cms系统是dedecms，因为dedecms在国内流行的几个<strong>cms</strong>中，模板制作是最容易的，感觉最复杂的是phpcms，有些地方设置的多余了，有的模块只用到一次，却要新建一个，还是dedecms的好，可以很方便的用Dreamweaver制作。</p>
<p><span id="more-125"></span></p>
<p>当然，phpcms比dedecms强大的多，去年，我就制作了一个phpcms的垃圾站，很好很强大，但就是因为模板制作太麻烦了，所以就放弃了。</p>
<p>今年的工作目标是制作1－2个站，重中之重就是中国银杏网，这个模板大概还有二周的时间完成，任务还很艰巨，因为要一边制作模板，一边还要设计网站的分类。</p>
<p>分享一下模板图片，仿制的Qzone，把颜色改了一改，Qzone的主页还是很漂亮的。</p>
<div class="wp-caption aligncenter" style="width: 397px"><img class="picasa " src="http://lh4.ggpht.com/_SbB9RxjJztk/SLA6QyW8LbI/AAAAAAAAAKc/TDA6RosLPSw/s400/%5D%28QCSJLS6D%5B%60W7K%60%5D%400B4L3.jpg" alt="" width="387" height="299" /><p class="wp-caption-text">头条</p></div>
<p style="text-align: center;"> </p>
<div style="float:right"><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END -->
<!-- UJian Button BEGIN -->
	<script type="text/javascript" src="http://v1.ujian.cc/code/ujian.js?type=slide"></script>
<!-- UJian Button END --></div><div style="clear:both; margin-top:5px; margin-bottom:5px;"></div><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href="http://imvoo.com/archives/313.html" title="WordPress的留言模板代码输出未闭合的Bug">WordPress的留言模板代码输出未闭合的Bug</a></li><li><a href="http://imvoo.com/archives/310.html" title="修正几个地方 让网站通过W3C标准验证">修正几个地方 让网站通过W3C标准验证</a></li><li><a href="http://imvoo.com/archives/299.html" title="于今天2月17日再次更换模板">于今天2月17日再次更换模板</a></li><li><a href="http://imvoo.com/archives/260.html" title="phpcms2008模板制作技巧集合">phpcms2008模板制作技巧集合</a></li><li><a href="http://imvoo.com/archives/94.html" title="因为换了模板，百度搜索里的内容只剩11条了">因为换了模板，百度搜索里的内容只剩11条了</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://imvoo.com/archives/125.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

