<?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>老管网络日志 &#124; funpower blog</title>
	<atom:link href="http://guanjianfeng.com/feed" rel="self" type="application/rss+xml" />
	<link>http://guanjianfeng.com</link>
	<description>昨夜星辰 ... ...</description>
	<lastBuildDate>Thu, 04 Feb 2010 15:19:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>aix上添加或删除默认路由</title>
		<link>http://guanjianfeng.com/archives/1139</link>
		<comments>http://guanjianfeng.com/archives/1139#comments</comments>
		<pubDate>Thu, 04 Feb 2010 15:10:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[服务器维护]]></category>
		<category><![CDATA[计算机\网络]]></category>
		<category><![CDATA[随写]]></category>
		<category><![CDATA[aix]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[route]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1139</guid>
		<description><![CDATA[在服务器上PING其它网段的地址，发现是丢一个包通一个包，原因是服务器上设置了两个默认网关造成的，如下。
[P550]/ &#62;#netstat -rn
Routing tables
Destination Gateway Flags Refs Use If Exp Groups
Route Tree for Protocol Family 2 (Internet):
default 192.0.0.253 UG 0 3858210 en0 &#8211; -
default 192.168.1.254 UG 0 23564 en2 &#8211; -
127/8 127.0.0.1 U 14 14363 lo0 &#8211; -
192.0.0.0 192.0.0.15 UHSb 0 0 en0 &#8211; - =
&#62;
192.0.0/24 192.0.0.15 U 5 9129174 en0 &#8211; -
192.0.0.15 127.0.0.1 UGHS [...]]]></description>
			<content:encoded><![CDATA[<p>在服务器上PING其它网段的地址，发现是丢一个包通一个包，原因是服务器上设置了两个默认网关造成的，如下。</p>
<blockquote><p>[P550]/ &gt;#netstat -rn<br />
Routing tables<br />
Destination Gateway Flags Refs Use If Exp Groups</p>
<p>Route Tree for Protocol Family 2 (Internet):<br />
<span style="color: #ff0000;">default 192.0.0.253 UG 0 3858210 en0 &#8211; -<br />
default 192.168.1.254 UG 0 23564 en2 &#8211; -<br />
</span>127/8 127.0.0.1 U 14 14363 lo0 &#8211; -<br />
192.0.0.0 192.0.0.15 UHSb 0 0 en0 &#8211; - =<br />
&gt;<br />
192.0.0/24 192.0.0.15 U 5 9129174 en0 &#8211; -<br />
192.0.0.15 127.0.0.1 UGHS 2 7 lo0 &#8211; -<br />
192.0.0.255 192.0.0.15 UHSb 0 4 en0 &#8211; -<br />
192.168.1.0 192.168.1.8 UHSb 0 0 en2 &#8211; - =<br />
&gt;<br />
192.168.1/24 192.168.1.8 U 0 4 en2 &#8211; -<br />
192.168.1.8 127.0.0.1 UGHS 19 11138 lo0 &#8211; -<br />
192.168.1.255 192.168.1.8 UHSb 0 4 en2 &#8211; -</p></blockquote>
<p>只需删除其中一条无用的就可以，操作如下：</p>
<p>使用lsattr -EI inet0命令来查看服务器上的网络信息：</p>
<blockquote><p>[P550]/ &gt;#lsattr -El inet0<br />
authm 65536 Authentication Methods<br />
True<br />
bootup_option no Use BSD-style Network Configurati<br />
on True<br />
gateway Gateway<br />
True<br />
hostname P550 Host Name<br />
True<br />
rout6 IPv6 Route<br />
True<br />
<span style="color: #ff0000;">route net,-hopcount,0,,0,192.0.0.253 Route<br />
</span>True<br />
<span style="color: #ff0000;">route net,-hopcount,0,,0,192.168.1.254 Route<br />
</span>True</p></blockquote>
<p>有两条默认路由(net,-hopcount开头)，通过chdev命令来删除其中一条，使服务器网络正常：</p>
<blockquote><p>[P550]/ &gt;#chdev -l inet0 -a delroute=&#8221;net,-hopcount,0,,0,192.168.1.254&#8243;<br />
inet0 changed</p></blockquote>
<p>再使用netstat -rn来查看网络信息：</p>
<blockquote><p>[P550]/ &gt;#netstat -rn<br />
Routing tables<br />
Destination Gateway Flags Refs Use If Exp Groups</p>
<p>Route Tree for Protocol Family 2 (Internet):<br />
<span style="color: #ff0000;">default 192.0.0.253 UG 0 3858210 en0 &#8211; -</span><br />
127/8 127.0.0.1 U 14 14363 lo0 &#8211; -<br />
192.0.0.0 192.0.0.15 UHSb 0 0 en0 &#8211; - =<br />
&gt;<br />
192.0.0/24 192.0.0.15 U 5 9129174 en0 &#8211; -<br />
192.0.0.15 127.0.0.1 UGHS 2 7 lo0 &#8211; -<br />
192.0.0.255 192.0.0.15 UHSb 0 4 en0 &#8211; -<br />
192.168.1.0 192.168.1.8 UHSb 0 0 en2 &#8211; - =<br />
&gt;<br />
192.168.1/24 192.168.1.8 U 0 4 en2 &#8211; -<br />
192.168.1.8 127.0.0.1 UGHS 19 11138 lo0 &#8211; -<br />
192.168.1.255 192.168.1.8 UHSb 0 4 en2 &#8211; -</p></blockquote>
<p>可以看出，只剩下了一条到192.0.0.253的默认网关，再去PING其它网段的服务器地址就正常了。如果想把下一跳地址改为192.0.0.254，则需要先将253的这条先删除：</p>
<blockquote><p>[P550]/ &gt;#chdev -l inet0 -a delroute=&#8221;net,-hopcount,0,,0,192.0.0.253&#8243;<br />
inet0 changed</p></blockquote>
<p>再添加一条至192.0.0.254的默认路由：</p>
<blockquote><p>[P550]/ &gt;#chdev -l inet0 -a route=&#8221;net,-hopcount,0,,0,192.0.0.254&#8243;<br />
inet0 changed</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1139/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用K2主题的图片“边框”功能</title>
		<link>http://guanjianfeng.com/archives/1136</link>
		<comments>http://guanjianfeng.com/archives/1136#comments</comments>
		<pubDate>Tue, 19 Jan 2010 13:28:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随写]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1136</guid>
		<description><![CDATA[一直喜欢“K2”主题中对图片自动添加“边框”后再显示图片的功能，如下：

但发现最近几个K2版本都把这个功能给去除了。今天花点时间对照了原来的CSS样式表，终于把这功能给添加上了。如果你和我一样发现这个问题，可以使用下面的方法试一下。
1、进入WORDPRESS后台，选择外观-&#62;编辑，使用ctrl+f搜索 &#8220;a img&#8221; ，然后将以下CSS删除。
a img {
border: none;
}
2、然后在刚才删除的位置添加如下代码即可。
.entry-content img {
margin: 0 5px;
padding: 4px;
border: 1px solid #ccc;
max-width: 100%;
}
#primary table img {
max-width: none;
}
a img {
margin: 0 5px;
padding: 4px;
border: 1px solid #ccc;
max-width: 100%;
}
]]></description>
			<content:encoded><![CDATA[<p>一直喜欢“<a href="http://getk2.com/">K2</a>”主题中对图片自动添加“边框”后再显示图片的功能，如下：</p>
<p><img class="alignnone size-full wp-image-1137" title="jpgtest" src="http://guanjianfeng.com/wp-content/uploads/2010/01/jpgtest.jpg" alt="" width="300" height="200" /></p>
<p>但发现最近几个<a href="http://getk2.com/">K2</a>版本都把这个功能给去除了。今天花点时间对照了原来的CSS样式表，终于把这功能给添加上了。如果你和我一样发现这个问题，可以使用下面的方法试一下。</p>
<p>1、进入<a href="http://wordpress.org/">WORDPRESS</a>后台，选择外观-&gt;编辑，使用ctrl+f搜索 &#8220;a img&#8221; ，然后将以下CSS删除。</p>
<blockquote><p>a img {<br />
border: none;<br />
}</p></blockquote>
<p>2、然后在刚才删除的位置添加如下代码即可。</p>
<blockquote><p>.entry-content img {<br />
margin: 0 5px;<br />
padding: 4px;<br />
border: 1px solid #ccc;<br />
max-width: 100%;<br />
}</p>
<p>#primary table img {<br />
max-width: none;<br />
}</p>
<p>a img {<br />
margin: 0 5px;<br />
padding: 4px;<br />
border: 1px solid #ccc;<br />
max-width: 100%;<br />
}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1136/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>黑霉各大运营商主题，适用于83xx</title>
		<link>http://guanjianfeng.com/archives/1102</link>
		<comments>http://guanjianfeng.com/archives/1102#comments</comments>
		<pubDate>Tue, 12 Jan 2010 10:10:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BlackBerry黑莓]]></category>
		<category><![CDATA[随写]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[主题]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1102</guid>
		<description><![CDATA[各大运营商的主题各自都有特色，之前就使用过T-MOBILE的主题，感觉很不错。最近从网上搜集了些各大运营商各自的主题，有兴趣的朋友可以试用下。各主题版权归各大运营商所有。
所有主题打包下载（下载地址1、备用下载2、备用下载3）
1、T-Mobile ，有三种版本
（1）白色版（下载1、2）


（2）蓝色版（下载1、2）


（3）黑色版（下载1、2）


2、Cingular Wireless (下载1、2)

3、Verizon (下载1、2)


4、Rogers (下载1、2)


5、TIM (下载1、2)


6、Orange (下载1、2)

7、Vodafone (下载1、2)


8、O2 , today(下载1、2),  zen(下载1、2)


9、Telefonica (下载1、2)


]]></description>
			<content:encoded><![CDATA[<p>各大运营商的主题各自都有特色，之前就使用过<a href="http://guanjianfeng.com/archives/883">T-MOBILE的主题</a>，感觉很不错。最近从网上搜集了些各大运营商各自的主题，有兴趣的朋友可以试用下。各主题版权归各大运营商所有。</p>
<p>所有主题打包下载（<a href="http://www.brsbox.com/filebox/down/fc/91d249b2c7a3f20b15119e0b8b4fd0ce">下载地址1</a>、<a href="http://www.uushare.com/user/funpower/file/2423584">备用下载2</a>、<a href="http://u.115.com/file/f669aa1036">备用下载3</a>）</p>
<div id="_mcePaste">1、T-Mobile ，有三种版本</div>
<div>（1）白色版（<a href="http://www.brsbox.com/filebox/down/fc/14c2344f0fc03593651e22e1bd83d4a1">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423542">2</a>）</div>
<div><img class="alignnone size-full wp-image-1103" title="2010_01_12_12_13_44" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_13_44.jpg" alt="" width="320" height="240" /></div>
<div><img class="alignnone size-full wp-image-1104" title="2010_01_12_12_13_58" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_13_58.jpg" alt="" width="320" height="240" /></div>
<div>（2）蓝色版（<a href="http://www.brsbox.com/filebox/down/fc/c06b4b9d44e6a63e13ce7cd86773aaf9">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423548">2</a>）</div>
<div><img class="alignnone size-full wp-image-1105" title="2010_01_12_12_15_47" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_15_47.jpg" alt="" width="320" height="240" /></div>
<div><img class="alignnone size-full wp-image-1106" title="2010_01_12_12_15_58" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_15_58.jpg" alt="" width="320" height="240" /></div>
<div>（3）黑色版（<a href="http://www.brsbox.com/filebox/down/fc/04ebdb757ed3902338f532456d9ffdd1">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2421397">2</a>）</div>
<div><img class="alignnone size-full wp-image-1126" title="2010_01_12_12_09_57" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_09_57.jpg" alt="" width="320" height="240" /></div>
<div><img class="alignnone size-full wp-image-1127" title="2010_01_12_12_10_55" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_10_55.jpg" alt="" width="320" height="240" /></div>
<div>2、Cingular Wireless (<a href="http://www.brsbox.com/filebox/down/fc/69bc2b6aab57a90fbc4640531b0e7d3f">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423544">2</a>)</div>
<div><img class="alignnone size-full wp-image-1109" title="2010_01_12_11_52_02" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_11_52_02.jpg" alt="" width="320" height="240" /></div>
<div id="_mcePaste">3、Verizon (<a href="http://www.brsbox.com/filebox/down/fc/517af6d97bdde40926630a21501f5cfa">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423546">2</a>)</div>
<div><img class="alignnone size-full wp-image-1110" title="2010_01_12_12_17_53" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_17_53.jpg" alt="" width="320" height="240" /></div>
<div><img class="alignnone size-full wp-image-1111" title="2010_01_12_12_18_10" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_18_10.jpg" alt="" width="320" height="240" /></div>
<div id="_mcePaste">4、Rogers (<a href="http://www.brsbox.com/filebox/down/fc/1b907894b4234c944bc4f9f97d3415b2">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423547">2</a>)</div>
<div><img class="alignnone size-full wp-image-1112" title="2010_01_12_12_02_08" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_02_08.jpg" alt="" width="320" height="240" /></div>
<div><img class="alignnone size-full wp-image-1113" title="2010_01_12_12_02_40" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_02_40.jpg" alt="" width="320" height="240" /></div>
<div id="_mcePaste">5、TIM (<a href="http://www.brsbox.com/filebox/down/fc/1caf79704ce1c4cf6321773d3f58a39b">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423549">2</a>)</div>
<div><img class="alignnone size-full wp-image-1114" title="2010_01_12_12_07_25" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_07_25.jpg" alt="" width="320" height="240" /></div>
<div><img class="alignnone size-full wp-image-1115" title="2010_01_12_12_07_48" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_07_48.jpg" alt="" width="320" height="240" /></div>
<div id="_mcePaste">6、Orange (<a href="http://www.brsbox.com/filebox/down/fc/df6b9a583c41a72b92b49e8594290273">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423550">2</a>)</div>
<div><img class="alignnone size-full wp-image-1116" title="2010_01_12_11_58_43" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_11_58_43.jpg" alt="" width="320" height="240" /></div>
<div id="_mcePaste">7、Vodafone (<a href="http://www.brsbox.com/filebox/down/fc/bacf9ad31f2671b3c5484e5005af1222">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423552">2</a>)</div>
<div><img class="alignnone size-full wp-image-1117" title="2010_01_12_12_24_03" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_24_03.jpg" alt="" width="320" height="240" /></div>
<div><img class="alignnone size-full wp-image-1118" title="2010_01_12_12_24_24" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_24_24.jpg" alt="" width="320" height="240" /></div>
<div id="_mcePaste">8、O2 , today(<a href="http://www.brsbox.com/filebox/down/fc/22cce0a6bf36239786fc80e056ffd3c7">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423553">2</a>),  zen(<a href="http://www.brsbox.com/filebox/down/fc/61debc718eaea2371d820dac47deb4ea">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423540">2</a>)</div>
<div><img class="alignnone size-full wp-image-1119" title="2010_01_12_11_55_29" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_11_55_29.jpg" alt="" width="320" height="240" /></div>
<div><a href="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_11_55_50.jpg"><img class="alignnone size-full wp-image-1120" title="2010_01_12_11_55_50" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_11_55_50.jpg" alt="" width="320" height="240" /></a></div>
<div id="_mcePaste">9、Telefonica (<a href="http://www.brsbox.com/filebox/down/fc/caa91259480af2114e6e75b63dfc4b32">下载1</a>、<a href="http://www.uushare.com/user/funpower/file/2423541">2</a>)</div>
<div><img class="alignnone size-full wp-image-1121" title="2010_01_12_12_05_16" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_05_16.jpg" alt="" width="320" height="240" /></div>
<div><img class="alignnone size-full wp-image-1122" title="2010_01_12_12_05_32" src="http://guanjianfeng.com/wp-content/uploads/2010/01/2010_01_12_12_05_32.jpg" alt="" width="320" height="240" /></div>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1102/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>让foobar支持播放ape格式的音乐</title>
		<link>http://guanjianfeng.com/archives/1096</link>
		<comments>http://guanjianfeng.com/archives/1096#comments</comments>
		<pubDate>Thu, 07 Jan 2010 06:13:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随写]]></category>
		<category><![CDATA[音乐]]></category>
		<category><![CDATA[ape]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[foobar]]></category>
		<category><![CDATA[softwave]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1096</guid>
		<description><![CDATA[从官方http://www.foobar2000.org/download下载的foobar默认是不支持ape格式的音乐，如果你是一位音乐发烧友，肯定知道APE格式的音乐：
APE是目前流行的数字音乐文件格式之一。与MP3这类有损压缩方式不同，APE是一种无损压缩音频技术，也就是说当你将从音频CD上读取的音频数据文件压缩成APE格式后，你还可以再将APE格式的文件还原，而还原后的音频文件与压缩前的一模一样，没有任何损失。APE的文件大小大概为CD的一半，但是随着宽带的普及，APE格式受到了许多音乐爱好者的喜爱，特别是对于希望通过网络传输音频CD的朋友来说，APE可以帮助他们节约大量的资源。APE也是日本一个著名服装品牌。
默认的foobar播放ape音乐会出现错误Unable to open item for plyback(Unsupported file format)，如下图：

可以通过安装foobar官方网站上提供的插件来解决此问题。进入插件下载页面，下载Monkey&#8217;s Audio decoder 2.1.4，下载后，解压缩后得到foo_input_monkey.dll文件，拷贝至foobar安装目录的components文件夹下，就可以正常播放APE格式的音乐了。
]]></description>
			<content:encoded><![CDATA[<p>从官方<a href="http://www.foobar2000.org/download">http://www.foobar2000.org/download</a>下载的foobar默认是不支持<a href="http://baike.baidu.com/view/8754.htm">ape格式的音乐</a>，如果你是一位音乐发烧友，肯定知道APE格式的音乐：</p>
<blockquote><p>APE是目前流行的数字音乐文件格式之一。与MP3这类有损压缩方式不同，APE是一种无损压缩音频技术，也就是说当你将从音频CD上读取的音频数据文件压缩成APE格式后，你还可以再将APE格式的文件还原，而还原后的音频文件与压缩前的一模一样，没有任何损失。APE的文件大小大概为CD的一半，但是随着宽带的普及，APE格式受到了许多音乐爱好者的喜爱，特别是对于希望通过网络传输音频CD的朋友来说，APE可以帮助他们节约大量的资源。APE也是日本一个著名服装品牌。</p></blockquote>
<p>默认的foobar播放ape音乐会出现错误Unable to open item for plyback(Unsupported file format)，如下图：</p>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2010/01/foorbarape1.gif"><img class="alignnone size-full wp-image-1097" title="foorbarape1" src="http://guanjianfeng.com/wp-content/uploads/2010/01/foorbarape1.gif" alt="" width="373" height="385" /></a></p>
<p>可以通过安装foobar官方网站上提供的插件来解决此问题。<a href="http://www.foobar2000.org/components">进入插件下载页面</a>，下载<a href="http://www.foobar2000.org/components/view/foo_input_monkey">Monkey&#8217;s Audio decoder 2.1.4</a>，下载后，解压缩后得到foo_input_monkey.dll文件，拷贝至foobar安装目录的components文件夹下，就可以正常播放APE格式的音乐了。</p>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1096/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>再见，2009年</title>
		<link>http://guanjianfeng.com/archives/1092</link>
		<comments>http://guanjianfeng.com/archives/1092#comments</comments>
		<pubDate>Thu, 31 Dec 2009 14:06:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随写]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1092</guid>
		<description><![CDATA[每天的工作、生活，感觉2009年一转眼就过去了。2010年要好好规划下自己的下一步。制定详细的目标！
祝我的家人、朋友下一年身体健康、工作顺利！
]]></description>
			<content:encoded><![CDATA[<p>每天的工作、生活，感觉2009年一转眼就过去了。2010年要好好规划下自己的下一步。制定详细的目标！</p>
<p>祝我的家人、朋友下一年身体健康、工作顺利！</p>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1092/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP StorageWorks EVA Simulation v2.0(EVA8000模拟器)</title>
		<link>http://guanjianfeng.com/archives/1086</link>
		<comments>http://guanjianfeng.com/archives/1086#comments</comments>
		<pubDate>Thu, 31 Dec 2009 14:03:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[服务器维护]]></category>
		<category><![CDATA[计算机\网络]]></category>
		<category><![CDATA[随写]]></category>
		<category><![CDATA[eva8000]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[storageworks]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1086</guid>
		<description><![CDATA[HP StorageWorks EVA8000模拟器，使用它，可以进行相关的实验，能够比较形象的了解HP存储的相关操作过程及原理。
模拟程序下载(备份下载)、相关学习文档下载(备份下载)
程序部分界面：




]]></description>
			<content:encoded><![CDATA[<p>HP StorageWorks EVA8000模拟器，使用它，可以进行相关的实验，能够比较形象的了解HP存储的相关操作过程及原理。</p>
<p><a href="http://www.avnet.it/downloads/configurators/HP/Simulatore_EVA/">模拟程序下载</a>(<a href="http://u.115.com/file/f6f7de9ef0">备份下载</a>)、<a href="http://www.brsbox.com/filebox/down/fc/3060d34d7d9003f850f72cdb1540c859">相关学习文档下载</a>(<a href="http://u.115.com/file/f6d3cb5875">备份下载</a>)</p>
<p>程序部分界面：</p>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/hpeva1.gif"><img class="alignnone size-full wp-image-1087" title="hpeva1" src="http://guanjianfeng.com/wp-content/uploads/2009/12/hpeva1.gif" alt="" width="600" height="450" /></a></p>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/hpeva2.jpg"><img class="alignnone size-full wp-image-1088" title="hpeva2" src="http://guanjianfeng.com/wp-content/uploads/2009/12/hpeva2.jpg" alt="" width="600" height="431" /></a></p>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/hpeva3.jpg"><img class="alignnone size-full wp-image-1089" title="hpeva3" src="http://guanjianfeng.com/wp-content/uploads/2009/12/hpeva3.jpg" alt="" width="600" height="431" /></a></p>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/hpeva4.jpg"><img class="alignnone size-full wp-image-1090" title="hpeva4" src="http://guanjianfeng.com/wp-content/uploads/2009/12/hpeva4.jpg" alt="" width="600" height="431" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1086/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress升级至中文版2.9，主题K2升级至1.0.2</title>
		<link>http://guanjianfeng.com/archives/1074</link>
		<comments>http://guanjianfeng.com/archives/1074#comments</comments>
		<pubDate>Wed, 30 Dec 2009 23:50:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[随写]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[主题]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1074</guid>
		<description><![CDATA[1、wordpress升级至中文版2.9
http://cn.wordpress.org/速度还有时间段，昨天试了好多次都没成功，今天早上起来就升级成功，还是早晨的网速快。
WordPress 2.9 带来几个全新的特性（官方介绍）：
1、全局回收站，可以把你的文章或者评论之类的放入回收站；
2、内置了图像编辑器；
3、批量插件更新功能；
4、更简单的视频插入。

2、主题K2升级至1.0.2
一直使用的K2的主题，升级完WP后，去K2主页上查看，发现版本已经是1.0.2了，直接将其升级。使用K2主题我基本不做修改，只是将三栏的宽度稍做修改：总宽度改为980px，左栏为660px，右栏为220px。
]]></description>
			<content:encoded><![CDATA[<p><strong>1、wordpress升级至中文版2.9</strong></p>
<p><a href="http://cn.wordpress.org/">http://cn.wordpress.org/</a>速度还有时间段，昨天试了好多次都没成功，今天早上起来就升级成功，还是早晨的网速快。</p>
<blockquote><p>WordPress 2.9 带来几个全新的特性（<a href="http://wordpress.org/development/2009/12/wordpress-2-9/">官方介绍</a>）：<br />
1、全局回收站，可以把你的文章或者评论之类的放入回收站；<br />
2、内置了图像编辑器；<br />
3、批量插件更新功能；<br />
4、更简单的视频插入。</p></blockquote>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/wp2.9.jpg"><img class="alignnone size-full wp-image-1075" title="wp2.9" src="http://guanjianfeng.com/wp-content/uploads/2009/12/wp2.9.jpg" alt="" width="476" height="288" /></a></p>
<p><strong>2、主题K2升级至1.0.2</strong></p>
<p>一直使用的<a href="http://getk2.com/">K2</a>的主题，升级完WP后，去K2主页上查看，发现版本已经是1.0.2了，直接将其升级。使用K2主题我基本不做修改，只是将三栏的宽度稍做修改：总宽度改为980px，左栏为660px，右栏为220px。</p>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1074/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco3845路由器登陆问题</title>
		<link>http://guanjianfeng.com/archives/1069</link>
		<comments>http://guanjianfeng.com/archives/1069#comments</comments>
		<pubDate>Wed, 30 Dec 2009 05:08:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机\网络]]></category>
		<category><![CDATA[随写]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1069</guid>
		<description><![CDATA[
Cisco3845路由器，一般使用在大中型分支机构中，路由器出厂默认安装了Cisco SDM模块（路由器及安全配置工具），这样，在登陆时就会出现如下提示：
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
Cisco Router and Security Device Manager (SDM) is installed on this device.
This feature requires the one-time use of the username &#8220;cisco&#8221;
with the password &#8220;cisco&#8221;. The default username and password have a privilege level of 15.
Please change these publicly known initial credentials using SDM or the IOS CLI.
Here are the Cisco IOS commands.
username &#60;myuser&#62; privilege [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/cisco3845.gif"><img class="alignnone size-full wp-image-1070" title="cisco3845" src="http://guanjianfeng.com/wp-content/uploads/2009/12/cisco3845.gif" alt="cisco3845" width="250" height="104" /></a></p>
<p><a href="http://www.cisco.com/web/CN/products/products_netsol/routers/products/3800/index.html">Cisco3845路由器</a>，一般使用在大中型分支机构中，路由器出厂默认安装了<a href="http://www.cisco.com/web/CN/products/products_netsol/routers/products/sdm/index.html">Cisco SDM</a>模块（路由器及安全配置工具），这样，在登陆时就会出现如下提示：</p>
<blockquote><p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Cisco Router and Security Device Manager (SDM) is installed on this device.<br />
This feature requires the one-time use of the username &#8220;cisco&#8221;<br />
with the password &#8220;cisco&#8221;. The default username and password have a privilege level of 15.</p>
<p>Please change these publicly known initial credentials using SDM or the IOS CLI.<br />
Here are the Cisco IOS commands.</p>
<p>username &lt;myuser&gt; privilege 15 secret 0 &lt;mypassword&gt;<br />
no username cisco</p>
<p>Replace &lt;myuser&gt; and &lt;mypassword&gt; with the username and password you want to use.</p>
<p>For more information about SDM please follow the instructions in the QUICK START<br />
GUIDE for your router or go to <a href="http://www.cisco.com/go/sdm">http://www.cisco.com/go/sdm</a><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
User Access Verification</p>
<p>Username:</p></blockquote>
<p>使用用户名和密码都为cisco来登陆路由器，然后再添加用户，再使用no username cisco命令将默认用户cisco删除，如果你没有创建用户，而直接将cisco用户删除再保存了配置，下次进入后使用cisco路由器就不能登陆了。</p>
<p>经过查看路由器配置，con和vty口的配置如下：</p>
<blockquote><p>line con 0<br />
login local<br />
line aux 0<br />
line vty 0 4<br />
access-class 23 in<br />
privilege level 15<br />
login local<br />
transport input telnet<br />
line vty 5 15<br />
access-class 23 in<br />
privilege level 15<br />
login local<br />
transport input telnet</p></blockquote>
<p>发现是在con和vty口上使用了login local认证，这样就会使用cisco sdm来认证，所以，这里只需将login local修改为login，就可以跳过cisco sdm的认证，如下：</p>
<blockquote><p>enable password 15 cisco<br />
!<br />
line con 0<br />
password cisco<br />
login<br />
line aux 0<br />
line vty 0 4<br />
password cisco<br />
login<br />
transport input telnet<br />
line vty 5 15<br />
password cisco<br />
login<br />
transport input telnet</p></blockquote>
<p>现在进不去路由器，只能通过修改enable密码的方法来进入路由器，再进行以下的修改：</p>
<p>1、将电脑与路由器的console口相连，启动路由器，按下[ctrl]+[break]，如下，出现rommon命令提示符：</p>
<blockquote><p>System Bootstrap, Version 12.4(13r)T, RELEASE SOFTWARE (fc1)<br />
Technical Support: <a href="http://www.cisco.com/techsupport">http://www.cisco.com/techsupport</a><br />
Copyright (c) 2006 by cisco Systems, Inc.</p>
<p>System Bootstrap, Version 12.4(13r)T11, RELEASE SOFTWARE (fc1)<br />
Technical Support: <a href="http://www.cisco.com/techsupport">http://www.cisco.com/techsupport</a><br />
Copyright (c) 2008 by cisco Systems, Inc.</p>
<p>Total memory size = 256 MB &#8211; DIMM0 = 256 MB, DIMM1 = 0 MB<br />
c3845 platform with 262144 Kbytes of main memory<br />
Main memory is configured to 72/0(dimm 0/1) bit mode with ECC enabled<br />
Upgrade ROMMON initialized</p>
<p>monitor: command &#8220;boot&#8221; aborted d<br />
monitor: command &#8220;boot&#8221; aborted due to user interrupt<br />
rommon 1 &gt;</p></blockquote>
<p>2、输入confreg，如下，记录下0&#215;2102，do you wish处选择no</p>
<blockquote><p>rommon 1 &gt; confreg<br />
Configuration Summary<br />
(Virtual Configuration Register:<span style="color: #ff0000;"> 0&#215;2102</span>)<br />
enabled are:<br />
load rom after netboot fails<br />
console baud: 9600<br />
boot: image specified by the boot system commands<br />
or default to: cisco2-c3845</p>
<p>do you wish to change the configuration? y/n [n]:</p></blockquote>
<p>3、通过confreg命令来修改配置寄存器的值，使路由器忽略NVRAM中的启动配置文件。输入confreg 0&#215;2142来修改寄存器值，再输入i重启路同器，如下：</p>
<blockquote><p>rommon 2 &gt; confreg 0&#215;2142<br />
rommon 3 &gt; i</p></blockquote>
<p>4、启动后会进入用户exec模式，出现系统配置对话柜时输入no跳过，如下：</p>
<blockquote><p>&#8212; System Configuration Dialog &#8212;</p>
<p>Would you like to enter the initial configuration dialog? [yes/no]: no<br />
Press RETURN to get started!</p></blockquote>
<p>5、使用enable命令进入配置模式，再使用sh run命令查看，这时会发现配置全部消失，因为这里是跳过NVRAM来启动路由器的，使用copy命令将NVRAM中的配置文件复制到现在的启动（running-config）配置文件中，</p>
<blockquote><p>Router&gt;en<br />
Router#copy startup-config running-config</p></blockquote>
<p>6、接下来对running-config配置文件进行修改，按照上面分析的，修改为：</p>
<blockquote><p>enable password 15 cisco<br />
!<br />
line con 0<br />
password cisco<br />
login<br />
line aux 0<br />
line vty 0 4<br />
password cisco<br />
login<br />
transport input telnet<br />
line vty 5 15<br />
password cisco<br />
login<br />
transport input telnet</p></blockquote>
<p>这样，下次就可以直接使用cisco密码来进行认证了。</p>
<p>7、接下来做配置的保存工作，首先恢复配置寄存器的值0&#215;2102，再保存配置，这里需使用<span style="color: #ff0000;">write memory</span>，完成后重启路由器，就可以使用cisco来登陆了。</p>
<blockquote><p>Router#copy running-config startup-config<br />
Router#configure terminal<br />
Router(config)#config-register 0&#215;2102<br />
Router(config)#end<br />
Router#write memory<br />
Router#reload</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1069/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在黑霉8310上利用MessageForward将短信发送至你的邮箱中</title>
		<link>http://guanjianfeng.com/archives/1058</link>
		<comments>http://guanjianfeng.com/archives/1058#comments</comments>
		<pubDate>Sat, 05 Dec 2009 15:09:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BlackBerry黑莓]]></category>
		<category><![CDATA[随写]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1058</guid>
		<description><![CDATA[在我的黑霉8310上测试成功。当然，前提是你的黑霉要可以发送邮件。我一直使用的“尚邮”黑霉客户端来收发我公司的邮箱，如下：

所以只需安装messageforward软件即可。下载地址。
安装完后，进入软件界面，在“enable message forwarding”上打钩，然后输入要发送到的邮箱，EMAIL FROM选择DESKTIP。保存退出，如下图。

完成后可以发送短信测试下，如果成功，在收到短信后两分钟左右，刚才设置的邮箱中就能收到一封以“Forwarding message from sms &#8230;&#8230;.”开头的邮件，如下。

]]></description>
			<content:encoded><![CDATA[<p>在<a href="http://guanjianfeng.com/archives/836">我的黑霉8310</a>上测试成功。当然，前提是你的黑霉要可以发送邮件。我<a href="http://guanjianfeng.com/archives/970">一直使用</a>的“<a href="http://www.shangmail.com">尚邮</a>”黑霉客户端来收发我公司的邮箱，如下：</p>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/shangmail11.gif"><img class="alignnone size-full wp-image-1059" title="shangmail11" src="http://guanjianfeng.com/wp-content/uploads/2009/12/shangmail11.gif" alt="shangmail11" width="320" height="240" /></a></p>
<p>所以只需安装messageforward软件即可。<a href="http://www.brsbox.com/filebox/down/fc/6d8572219423e51ad48d414759f4ae37">下载地址</a>。</p>
<p>安装完后，进入软件界面，在“enable message forwarding”上打钩，然后输入要发送到的邮箱，EMAIL FROM选择DESKTIP。保存退出，如下图。</p>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/mess1.gif"><img class="alignnone size-full wp-image-1060" title="mess1" src="http://guanjianfeng.com/wp-content/uploads/2009/12/mess1.gif" alt="mess1" width="320" height="240" /></a></p>
<p>完成后可以发送短信测试下，如果成功，在收到短信后两分钟左右，刚才设置的邮箱中就能收到一封以“Forwarding message from sms &#8230;&#8230;.”开头的邮件，如下。</p>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/messforward1.gif"><img class="alignnone size-full wp-image-1061" title="messforward1" src="http://guanjianfeng.com/wp-content/uploads/2009/12/messforward1.gif" alt="messforward1" width="503" height="46" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1058/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP Data Protector软件“the daemon is probable no runnig”故障</title>
		<link>http://guanjianfeng.com/archives/1053</link>
		<comments>http://guanjianfeng.com/archives/1053#comments</comments>
		<pubDate>Sat, 05 Dec 2009 14:07:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[服务器维护]]></category>
		<category><![CDATA[计算机\网络]]></category>
		<category><![CDATA[随写]]></category>

		<guid isPermaLink="false">http://guanjianfeng.com/?p=1053</guid>
		<description><![CDATA[一台装有HP Data Protector备份软件的服务器出问题，不能备份，打开桌面上的软件图标后，任意点击一些菜单，都提示“the daemon is probable no runnig ”或者是“interprocess communication problem”，使用omnisv.exe -status查看后，发现rds服务为down，如下：
D:\Program Files\OmniBack\bin&#62;omnisv -status
ProcName Status [PID]
===============================
rds : Down
crs : Active [664]
mmd : Active [884]
omniinet: Active [712]
Sending of traps disabled.
===============================
Status: At least one of Data Protector relevant processes/services is not running.
使用omnisv -?查看命令帮助，然后使用omnisv.exe -stop将所有服务都停止：
D:\Program Files\OmniBack\bin&#62;omnisv -stop
ProcName Status [PID]
===============================
rds : Down
crs : Down
mmd : Down
omniinet: Down
Sending of traps [...]]]></description>
			<content:encoded><![CDATA[<p>一台装有<a href="http://h20427.www2.hp.com/products/storage/cn/zh/software/dataprotector/">HP Data Protector</a>备份软件的服务器出问题，不能备份，打开桌面上的软件图标后，任意点击一些菜单，都提示“the daemon is probable no runnig ”或者是“interprocess communication problem”，使用omnisv.exe -status查看后，发现rds服务为down，如下：</p>
<blockquote><p>D:\Program Files\OmniBack\bin&gt;omnisv -status</p>
<p>ProcName Status [PID]<br />
===============================<br />
rds : Down<br />
crs : Active [664]<br />
mmd : Active [884]<br />
omniinet: Active [712]<br />
Sending of traps disabled.<br />
===============================<br />
Status: At least one of Data Protector relevant processes/services is not running.</p></blockquote>
<p>使用omnisv -?查看命令帮助，然后使用omnisv.exe -stop将所有服务都停止：</p>
<blockquote><p>D:\Program Files\OmniBack\bin&gt;omnisv -stop</p>
<p>ProcName Status [PID]<br />
===============================<br />
rds : Down<br />
crs : Down<br />
mmd : Down<br />
omniinet: Down<br />
Sending of traps disabled.<br />
===============================</p></blockquote>
<p>再使用start使所有服务都开启：</p>
<blockquote><p>D:\Program Files\OmniBack\bin&gt;omnisv -start</p>
<p>ProcName Status [PID]<br />
===============================<br />
rds : Active [1024]<br />
crs : Active [3436]<br />
mmd : Active [1112]<br />
omniinet: Active [2580]<br />
Sending of traps disabled.<br />
===============================</p></blockquote>
<p>把DP软件关了，再打开后，就可以正常打开所有的菜单了。</p>
<p><a href="http://guanjianfeng.com/wp-content/uploads/2009/12/hpdp2.gif"><img class="alignnone size-full wp-image-1054" title="hpdp3" src="http://guanjianfeng.com/wp-content/uploads/2009/12/hpdp3.gif" alt="hpdp3" width="506" height="388" /></a></p>
<p><img class="alignnone size-full wp-image-1055" title="hpdp1" src="http://guanjianfeng.com/wp-content/uploads/2009/12/hpdp1.gif" alt="hpdp1" width="455" height="413" /></p>
]]></content:encoded>
			<wfw:commentRss>http://guanjianfeng.com/archives/1053/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
