<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://feeds.qzone.qq.com/rss.xsl" version="1.0"?>
<rss version="2.0" xmlns:qz="http://qzone.qq.com">
<channel>
<title><![CDATA[◆涛涛/love]]></title>
<description><![CDATA[您访问的空间即将崩溃!是否继续?]]></description>
<link>http://307372272.qzone.qq.com</link>
<lastBuildDate>Fri, 27 Nov 2009 09:25:03 GMT</lastBuildDate>
<generator>Qzone</generator>
<language>zh-cn</language>
<copyright>Copyright (C), 2005-2008, Tencent Tech. Co., Ltd.</copyright>
<pubDate>Tue, 24 Nov 2009 02:45:04 GMT</pubDate>

<item>
<title><![CDATA[lsr-id的作用]]></title>
<link>http://307372272.qzone.qq.com/blog/1259030704</link>
<description><![CDATA[LDP标识符（LDP Identifier）用于标识特定LSR的标签空间，是一个六字节的数值，格式如下：<br>&lt;LSR ID&gt;：&lt;标签空间序号&gt;<br>其中，LSR ID占四字节，标签空间序号占两字节。取值为1时表示每个接口指定一个标签空间；取值为0时表示整个LSR使用一个标签空间。<br>按照先后顺序，LDP的操作主要包括以下四个阶段：<br>l              发现阶段<br>l              会话建立与维护<br>l              LSP建立与维护<br>l              会话撤销<br>1. 发现阶段在这一阶段，希望建立会话的LSR向相邻LSR周期性地发送Hello消息，通知相邻节点自己的存在。通过这一过程，LSR可以自动发现它的LDP对等体，而无需进行手工配置。<br>LDP有两种发现机制：<br>l              基本发现机制<br>基本发现机制用于发现本地的LDP对等体，即通过链路层直接相连的LSR，建立本地LDP会话。<br>这种方式下，LSR周期性以UDP报文形式从接口发送LDP链路Hello消息（LDP Link Hello），发往标识“子网内所有路由器”的组播地址。<br>LDP链路Hello消息带有接口的LDP标识符及其他相关信息，如果LSR在某个接口收到了LDP链路Hello消息，则表明在该接口（链路层）存在LDP对等体。<br>l              扩展发现机制<br>扩展发现机制用于发现远端的LDP对等体，即不通过链路层直接相连的LSR，建立远端LDP会话。<br>这种方式下，LSR周期性以UDP报文形式向指定的IP地址发送LDP目标Hello消息（LDP Targeted Hello）。<br>LDP目标Hello消息带有LSR的LDP标识符及其他相关信息，如果LSR收到LDP目标Hello消息，则表明在网络层存在LDP对等体。<br>2. 会话建立与维护发现邻居之后，LSR开始建立会话。这一过程又可分为两步：<br>(1)        建立传输层连接，即，在LSR之间建立TCP连接；<br>(2)        随后对LSR之间的会话进行初始化，协商会话中涉及的各种参数，如LDP版本、标签分发方式、定时器值、标签空间等。<br>会话建立后，通过不断地发送Hello消息和Keepalive消息来维护这个会话。<br>3. LSP建立与维护LSP的建立过程实际就是将FEC和标签进行绑定，并将这种绑定通告LSP上相邻LSR。这个过程是通过LDP实现的，以DU模式、有序标签控制方式为例，主要步骤如下：<br>(1)        当网络的路由改变时，如果有一个边缘节点发现自己的路由表中出现了新的目的地址，并且这一地址不属于任何现有的FEC，则该边缘节点需要为这一目的地址建立一个新的FEC。边缘LSR决定该FEC将要使用的路由，向其下游LSR发起标签请求消息，并指明是要为哪个FEC分配标签；<br>(2)        如果此边缘节点存在上游LSR，并且尚有可供分配的标签，则该节点为FEC分配标签，并向上游发出标签映射消息，其中包含分配的标签等信息。<br>(3)        收到标签映射消息的LSR记录相应的标签映射信息，若消息由对应FEC的下一跳发送，则将在其标签转发表中增加相应的条目，并继续向上游LSR发送标签映射消息。<br>(4)        当入口LSR收到标签映射消息时，它也需要在标签转发表中增加相应的条目。这时，就完成了LSP的建立，接下来就可以对该FEC对应的数据分组进行标签转发了。<br>4. 会话撤销LDP通过检测Hello消息来判断邻接关系；通过检测Keepalive消息来判断会话的完整性。<br>LDP在维持邻接关系和LDP会话中使用到不同的定时器：<br>l              Hello保持定时器：LDP对等体之间，通过周期性发送Hello消息表明自己希望继续维持这种邻接关系。如果Hello保持定时器超时仍没有收到新的Hello消息，则删除Hello邻接关系。<br>l              Keepalive定时器：LDP对等体之间通过LDP会话连接上传送的Keepalive消息来维持LDP会话。如果会话保持定时器超时仍没有收到任何Keepalive消息，则关闭连接，结束LDP会话。<br>1.3.4  LDP环路检测在MPLS域中建立LSP也要防止产生环路，LDP环路检测机制可以检测LSP环路的出现，并避免发生环路。<br>如果对MPLS域进行环路检测，则必须在所有LSR上都配置环路检测。但在建立LDP会话时，并不要求双方的环路检测配置一致。<br>LDP环路检测有两种方式：<br>1. 最大跳数在传递标签绑定（或者标签请求）的消息中包含跳数信息，每经过一跳该值就加一。当该值超过规定的最大值时即认为出现环路，LSP建立失败。<br>2. 路径向量在传递标签绑定（或者标签请求）的消息中记录路径信息，每经过一跳，相应的设备就检查自己的LSR ID是否在此记录中。在以下条件之一时认为出现环路，LSP建立失败：<br>l              路径向量记录表中已有本LSR的记录；<br>l              路径的跳数超过设置的最大值。<br>如果记录中没有自己的LSR ID，就会将其添加到该记录中。<br> <br>在配置mpls的时候.仅仅配置了lsr-id.缺此地址不可达或者未配置.则无法建立起来lsp.<br>呵呵! <!--v:3.2--> ]]></description>
<category><![CDATA[MPLS]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1259030704#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Tue, 24 Nov 2009 02:45:04 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1259030704</guid>
</item>

<item>
<title><![CDATA[两个LSR之间只能存在一个远程会话或一个本地会话]]></title>
<link>http://307372272.qzone.qq.com/blog/1259028819</link>
<description><![CDATA[l      如果对等体与指定的远端对等体之间已经存在本地邻接关系，则远程邻接关系将不能建立；如果已经存在远程邻接关系，又为远端对等体创建了本地邻接关系，则在本地对等体和远端对等体的LDP传输地址、Keepalive保持时间配置一致时，则将建立本地邻接关系，远端对等体将被删除。；本地对等体和远端对等体的LDP传输地址或Keepalive保持时间配置不一致时，将无法建立本地邻接关系，继续保持远程邻接关系。即两个LSR之间只能存在一个远程会话或一个本地会话，并且，本地会话的优先级高于远程会话。<br>l      即将配置的远端对等体的IP地址不能与已经存在的远端对等体IP地址重复；否则配置不成功，将返回出错消息。<br>l      配置的LDP传输地址应为设备接口的IP地址，否则LDP会话将无法建立。 <!--v:3.2--> ]]></description>
<category><![CDATA[MPLS]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1259028819#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Tue, 24 Nov 2009 02:13:39 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1259028819</guid>
</item>

<item>
<title><![CDATA[windows + vista 互删操作.官方指定]]></title>
<link>http://307372272.qzone.qq.com/blog/1258898635</link>
<description><![CDATA[在基于 Microsoft Windows Vista 的计算机上安装了早期版本的 Windows 操作系统以形成双引导配置后，可能会遇到下列问题之一： <span style="text-decoration:underline;"><wbr /><li style="margin:25px;">如果在基于 Windows Vista 的计算机上安装早期版本的 Windows 操作系统，Windows Vista 再也无法启动。在这种情况下，只有早期版本的 Windows 操作系统可以启动。 <li style="margin:25px;">如果在已安装了 Windows XP 和 Windows Vista 形成双引导配置的计算机上安装 Microsoft Windows XP 的其他实例，可能会收到以下错误消息： Disk read error has occurred.<br></li></span><wbr /><a href="http://support.microsoft.com/kb/919529#top" target="_blank"><wbr /><a href="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" target="_blank"><img style="border:0;" src="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" /></a><wbr />回到顶端</a><wbr /><br><br>[url=javascript:void(0);]原因[/url] 之所以会出现这些问题，是因为早期版本的 Windows 操作系统与新的 Windows Vista 启动方法不兼容。Windows Vista 使用新的启动配置...<br>之所以会出现这些问题，是因为早期版本的 Windows 操作系统与新的 Windows Vista 启动方法不兼容。Windows Vista 使用新的启动配置数据库 (BCD) 存储。此存储包含一个启动菜单以及有关计算机上已安装的操作系统的所有信息。因此，不能使用来自早期版本的 Windows 操作系统的 Boot.ini 文件来启动 Windows Vista。<br><br>在基于基本输入/输出系统 (BIOS) 的计算机上运行的早期版本的 Windows 操作系统（如 Windows XP）中，启动过程与系统 BIOS 一起启动。BIOS 确定启动设备，然后加载第一个物理扇区。此物理扇区称为主启动记录 (MBR)。MBR 包含分区表和必要的启动执行代码。此代码搜索分区表，以查找活动分区并将控制传递给活动分区上的启动扇区。然后，活动分区上的启动扇区将加载 Ntldr 程序。Ntldr 程序会分析 Boot.ini 文件。此文件用来枚举已安装的操作系统。<br><br>当 Windows Vista 在基于 BIOS 的计算机上启动时，BIOS 将加载 MBR 然后加载启动扇区。但是，启动代码将加载新的 Windows 启动管理器程序 (Bootmgr)。Windows 启动管理器程序会分析启动配置数据文件，枚举已安装的操作系统，然后显示启动菜单。如果在含有 Windows Vista 的双引导配置中安装了早期版本的 Windows 操作系统，Windows 启动管理器程序就会将控制权转给早期版本的 Windows 操作系统的 Ntldr 程序。当您从启动菜单中选择“Windows Vista”时，Windows 启动管理器程序将执行上述操作。<br><br>在基于 Windows Vista 的计算机上安装早期版本的 Windows 操作系统时，安装程序将覆盖 MBR、启动扇区和启动文件中的所有内容。因此，早期版本的 Windows 操作系统失去了与 Windows Vista 的向前兼容性。 <a href="http://support.microsoft.com/kb/919529#top" target="_blank"><wbr /><a href="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" target="_blank"><img style="border:0;" src="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" /></a><wbr />回到顶端</a><wbr /><br><br>[url=javascript:void(0);]解决方案[/url] 要解决这些问题，请按照下列步骤操作。注意：可通过使用命令提示符来运行以下过程中的命令。如果在 Windows Vista 中运行这些命令，请在已提升用户权限的命...<br>要解决这些问题，请按照下列步骤操作。<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：可通过使用命令提示符来运行以下过程中的命令。如果在 Windows Vista 中运行这些命令，请在已提升用户权限的命令提示符中运行它们。为此，请单击“开始”，单击“附件”，右键单击命令提示符快捷方式，然后单击“以管理员身份运行”。 <ol style="list-style-type:decimal"><li style="margin:25px;">使用 Bootsect.exe 还原 Windows Vista MBR 以及将控制权转给 Windows 启动管理器程序的启动代码。为此，请在命令提示符处键入以下命令：Drive:\boot\Bootsect.exe /NT60 All<br><br>在此命令中，Drive 是 Windows Vista 安装介质所在的驱动器。<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：此步骤的 boot 文件夹位于 DVD 驱动器上。 <li style="margin:25px;">使用 Bcdedit.exe 在 BCD Boot.ini 文件中为早期版本的 Windows 操作系统手动创建一个条目。为此，请在命令提示符处键入下列命令。<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：在这些命令中，Drive 是安装 Windows Vista 的驱动器。 <span style="text-decoration:underline;"><wbr /><li style="margin:25px;">Drive:\Windows\system32\Bcdedit /create {ntldr} /d &quot;&lt;对早期 Windows 版本的描述&gt;&quot;<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：在此命令中，&lt;对早期 Windows 版本的描述&gt; 可以是所需的任何文本。例如，&lt;对早期 Windows 版本的描述&gt; 可以是“Windows XP”或“Windows Server 2003”。 <li style="margin:25px;">Drive:\Windows\system32\Bcdedit /set {ntldr} device partition=x:<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：在此命令中，x: 是活动分区的驱动器号。 <li style="margin:25px;">Drive:\Windows\system32\Bcdedit /set {ntldr} path \ntldr <li style="margin:25px;">Drive:\Windows\system32\Bcdedit /displayorder {ntldr} /addlast</li></span><wbr /><li style="margin:25px;">重新启动计算机。</li></ol><a href="http://support.microsoft.com/kb/919529#top" target="_blank"><wbr /><a href="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" target="_blank"><img style="border:0;" src="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" /></a><wbr />回到顶端</a><wbr /><br><br>[url=javascript:void(0);]更多信息[/url] 要启动基于 Microsoft Windows NT 的 Windows 操作系统版本，需要下列文件： Ntldr Boot.ini Bootfont.bin注...<br>要启动基于 Microsoft Windows NT 的 Windows 操作系统版本，需要下列文件： <span style="text-decoration:underline;"><wbr /><li style="margin:25px;">Ntldr <li style="margin:25px;">Boot.ini <li style="margin:25px;">Bootfont.bin<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：安装 Windows 的东亚语言版本时，需要使用此文件。 <li style="margin:25px;">NTDetect.com</li></span><wbr />在 Windows XP 中，这些文件位于标记为“活动”的系统分区上。默认情况下，这些文件在 Windows XP 中是隐藏的系统文件。用户可以通过使用恢复控制台来替换这些文件，也可以通过使用 Windows NT 启动磁盘来启动操作系统。Windows Vista 不使用这三个文件。Windows Vista 通过使用隐藏的系统文件 Bootmgr 和位于 \Boot 目录中的其他必需文件来启动。 <a href="http://support.microsoft.com/kb/919529#top" target="_blank"><wbr /><a href="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" target="_blank"><img style="border:0;" src="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" /></a><wbr />回到顶端</a><wbr /><br>创建包括 Windows Vista 的多重引导配置要创建可用的多重引导配置，请先安装最早版本的 Windows 操作系统。然后，按顺序安装每个更新的版本。每个新的 Windows 版本都会保留用于启动早期 Windows 版本的向后兼容性。<br><br>要创建包括 Windows Vista 的多重引导配置，安装的每个早期 Windows 版本必须至少有一个分区。请按照下面的常规指导操作： <span style="text-decoration:underline;"><wbr /><li style="margin:25px;">至少创建两个分区。将一个分区用于 Windows Vista 安装。<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：如果用于 Windows Vista 的分区已经格式化，请确保它是使用 NTFS 文件系统进行格式化的。不过，我们建议您使用下列方法之一： <span style="text-decoration:underline;"><wbr /><li style="margin:25px;">创建另一个未格式化的分区。 <li style="margin:25px;">不创建另一个分区，将空间保留为可用空间。而是在 Windows Vista 安装期间创建另一个分区。</li></span><wbr /><li style="margin:25px;">如果计算机中未安装操作系统，请先安装最早的 Windows 版本。<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：请在安装 Windows Server 2003 之前安装 Windows XP。 <li style="margin:25px;">运行 Windows Vista 安装程序。在可用空间或现有分区中安装 Windows Vista。可以在早期 Windows 版本中运行此安装程序，也可以在 Windows Vista 光盘置于 CD 或 DVD 驱动器中时启动计算机。</li></span><wbr />在 Windows Vista 安装完成后，您将具有一个配置正确的多重引导环境，其中包括 Windows Vista 和早期版本的 Windows。出现的 Bootmgr 启动菜单类似于以下菜单： <span style="font-weight:bold"><wbr />Microsoft Windows 的早期 Windows 操作系统</span><wbr /><br><a href="http://support.microsoft.com/kb/919529#top" target="_blank"><wbr /><a href="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" target="_blank"><img style="border:0;" src="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" /></a><wbr />回到顶端</a><wbr /><br>从双引导配置中删除 Windows Vista如果要从包括早期版本的 Windows 的双引导环境中删除 Windows Vista，请按照下列步骤操作。<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：在早期版本的 Windows 或 Windows Vista 中，可以按照下列步骤操作。如果在 Windows Vista 中按照这些步骤操作，请从已提升用户权限的命令提示符处运行命令。为此，请单击“开始”，单击“附件”，右键单击命令提示符快捷方式，然后单击“以管理员身份运行”。 <ol style="list-style-type:decimal"><li style="margin:25px;">使用 Bootsect.exe 还原 Ntldr 程序。为此，请键入以下命令：Drive:\Boot\Bootsect.exe –NT52 All<br><br><span style="font-weight:bold"><wbr />注意</span><wbr />：在此命令中，Drive 是 Windows Vista 介质所在的驱动器。<br><br>计算机重新启动后，它不会加载 Windows 启动管理器程序。而会加载 Netldr.exe 和 Boot.ini。 <li style="margin:25px;">删除或移除安装 Windows Vista 的分区。<br><br><span style="font-weight:bold"><wbr />重要说明</span><wbr />：仅当安装 Windows Vista 的分区是系统上的非活动分区时，才能删除该分区。例如，请考虑以下情况： <span style="text-decoration:underline;"><wbr /><li style="margin:25px;">Windows Vista 安装在驱动器 C 上。驱动器 C 是分区 1，并且是活动分区。 <li style="margin:25px;">Windows XP 安装在驱动器 D 上。驱动器 D 是分区 2，并且是非活动分区。</li></span><wbr />在这种情况下，可以运行 <span style="font-weight:bold"><wbr />bootsect</span><wbr /> 命令，但不能删除安装 Windows Vista 的分区。如果删除此分区，则会由于 Windows XP 启动文件被删除而导致计算机无法启动。</li></ol><a href="http://support.microsoft.com/kb/919529#top" target="_blank"><wbr /><a href="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" target="_blank"><img style="border:0;" src="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" /></a><wbr />回到顶端</a><wbr /><br><br>[url=javascript:void(0);]参考[/url] 有关更多信息，请单击下面的文章编号，以查看 Microsoft 知识库中相应的文章： 314079  (http://support.microsoft.com...<br>有关更多信息，请单击下面的文章编号，以查看 Microsoft 知识库中相应的文章： <a href="http://support.microsoft.com/kb/314079/" target="_blank">314079</a><wbr />  (http://support.microsoft.com/kb/314079/ ) 如何使用系统文件创建启动盘以预防 Windows XP 无法启动的问题<br><a href="http://support.microsoft.com/kb/911080/" target="_blank">911080</a><wbr />  (http://support.microsoft.com/kb/911080/ ) 使用 Winnt32.exe 程序在同时安装了 Windows XP 和 Windows Vista 的计算机上重新安装 Windows XP 时收到“Disk read error has occurred”（发生磁盘读取错误）错误消息<br>有关启动配置数据 (BCD) 的更多信息，请访问下面的 Microsoft 网站： <a href="http://msdn2.microsoft.com/zh-cn/library/aa362692(en-us).aspx" target="_blank">http://msdn2.microsoft.com/zh-cn/library/aa362692(en-us).aspx</a><wbr /> (http://msdn2.microsoft.com/zh-cn/library/aa362692(en-us).aspx) <br>有关 Windows Vista 中的可扩展固件接口 (EFI) 的更多信息，请访问下面的 Microsoft Developer Network (MSDN) 网站： <a href="http://www.microsoft.com/whdc/system/platform/firmware/efibrief.mspx" target="_blank">http://www.microsoft.com/whdc/system/platform/firmware/efibrief.mspx</a><wbr /> (http://www.microsoft.com/whdc/system/platform/firmware/efibrief.mspx) <br><a href="http://support.microsoft.com/kb/919529#top" target="_blank"><wbr /><a href="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" target="_blank"><img style="border:0;" src="http://support.microsoft.com/library/images/support/en-us/uparrow.gif" /></a><wbr />回到顶端</a><wbr /><br>这篇文章中的信息适用于:<span style="text-decoration:underline;"><wbr /><li style="margin:25px;">Windows Vista Home Basic <li style="margin:25px;">Windows Vista Home Premium <li style="margin:25px;">Windows Vista Ultimate <li style="margin:25px;">Windows Vista Business <li style="margin:25px;">Windows Vista Enterprise <li style="margin:25px;">Windows Vista Starter <li style="margin:25px;">Windows Vista Home Basic 64-bit edition <li style="margin:25px;">Windows Vista Home Premium 64-bit edition <li style="margin:25px;">Windows Vista Ultimate 64-bit edition <li style="margin:25px;">Windows Vista Business 64-bit edition <li style="margin:25px;">Windows Vista Enterprise 64-bit edition <li style="margin:25px;">Microsoft Windows XP Home Edition <li style="margin:25px;">Microsoft Windows XP Professional Edition <li style="margin:25px;">Microsoft Windows Server 2003 Standard Edition <li style="margin:25px;">Microsoft Windows Server 2003 Enterprise Edition</li></span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1258898635#comment</comments>
<qz:effect>142606849</qz:effect>
<pubDate>Sun, 22 Nov 2009 14:03:55 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1258898635</guid>
</item>

<item>
<title><![CDATA[[转]一张裸图分辨您用左脑还是右脑]]></title>
<link>http://307372272.qzone.qq.com/blog/1258898325</link>
<description><![CDATA[<br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />如果你看见这个舞女是顺时针转，说明你用的是右脑；     </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />如果是逆时针转，说明你用的左脑。     </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />耶鲁大学耗时5年的研究成果，据说。     </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />14%的美国人可以两个方向都能看见 </span><wbr /></span><wbr /><br><a href="http://sz.photo.store.qq.com/rurl2=4abe1d6b7cb99e537d48a81acd327a12e76dcd83b2088190f10f72111f920eae61ff0b8eec6f8abb2b705707d3768d71a73d824613c0dc2b27a5acc18646dba40f9ceec166fe8668330ce05bad8465230a73c5f6" target="_blank"><span style="font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr /><span style="color:#9999ff;line-height:1.8em;"><wbr /><a href="http://sz.photo.store.qq.com/rurl2=4abe1d6b7cb99e537d48a81acd327a12e76dcd83b2088190f10f72111f920eae61ff0b8eec6f8abb2b705707d3768d71a73d824613c0dc2b27a5acc18646dba40f9ceec166fe8668330ce05bad8465230a73c5f6" target="_blank"><img style="width:338px;height:401px;border:0;" src="http://sz.photo.store.qq.com/rurl2=4abe1d6b7cb99e537d48a81acd327a12e76dcd83b2088190f10f72111f920eae61ff0b8eec6f8abb2b705707d3768d71a73d824613c0dc2b27a5acc18646dba40f9ceec166fe8668330ce05bad8465230a73c5f6" /></a><wbr /></span><wbr /></a><wbr /></span><wbr /></span><wbr /><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr /> </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />顺时针转的话 , 属於是用右脑较多的类型 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />逆时针转属於使用左脑较多的类型 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />大部分人的眼里里是逆时针方向转动 , 但也有人看来是顺时针方向转动的 . </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />顺时针的情况 , 女性比男性多 ~ </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />逆时针转动的 , 突然变成顺时针的话 , IQ是 160以上 !!! </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />科学人杂志--天才的特殊思维 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />顶叶负责掌管脑中的数学和逻辑 ,这也是爱因斯坦成为天才的秘密。但不可否认的 ,爱因斯坦丰富的想像力与创造力 ,是使他的右脑不断激发出潜在能力的重要因素之一。 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />左脑因为是以语言处理讯息 ,控制知识、判断力、思考力因此被称为「知性脑」；右脑则控制著自律神经与字宙波动共振 ,由于是图像脑 ,因此造型能力优越 ,被称为「艺术脑」。 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />有关右脑的神奇功能研究 ,是始于 1 9 8 1年加州理工学院罗杰· 史贝利 博士研究右脑获得诺贝尔奖以后 ,人们才开始对右脑有所认识 ,在此之前 ,人们并不认为左脑与右脑的功能有那么大的差别。史贝利在分割脑的实验中发现 ,左脑与右脑这两个半球完全以不同的方式在进行思考 ,他发现左脑用语言进行思考 ,右脑则是以图像进行思考；左脑偏向语言、逻辑性的思考 ,右脑则是影像和心像的思考。 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />根据七 田真 博士的研究 ,原来人在诞生之初 ,右脑的能力还很发达 ,右脑具备了超越常识那种几乎可称为全然未知的天才似的能力 ,这种能力自古以来就隐藏在人们脑海里 ,是一种超越时间、空间 ,与无限境界相连结的能力 ,但是因为人类世界是以教导、开启左脑为主 ,让小孩子努力学习语言以及往后生存所必需的知识 ,久而久之 ,左脑越来越发达 ,右脑却因为少用而日形退化。至于什么样的成人比较容易打开右脑 ,七 田真 博士认为 ,心思专注、纯真没有成见的人 ,比较容易进入神奇的右脑世界。 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />你相信超能力吗？如果你有看过 (雨人 )这部电影 ,一定对片中达斯汀霍夫曼饰演的哥哥印象深刻 ,他不但能正确快速数出散落一地的火柴数目 ,而且饰演他弟弟的汤姆克鲁斯还利用他天赋异禀的「透视」能力 ,上赌场找人玩扑克牌 ,结果对手的牌在达斯汀霍夫曼的「全神贯注」下 ,被透视得一 览无疑 ,汤姆克鲁斯因此赢了一大笔钱。 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />或许你会认为那是电影夸张其事 ,现实世界中 ,人不可能具备那样的能力。如果你这么想 ,你就是犯了习惯左脑思考的错误 ,其实 ,人类大脑的另一半 -右脑 ,拥有的能力是左脑思考者很难想像的。 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />当我尽量不看人像，而是把目光对准地面上脚的阴影的时候，可以在脑子里&quot;想&quot;，要它顺时针转，她就顺时针，要她逆时针，她就逆时针，仿佛你的思维可以控制图片的转动一样。而如果精神高度集中，就可以让人像左右摆动，根本绕不出一个完 整的圈子。我一直在努力尝试，看能不能把人像给定住，让她静止不动。这个游戏最好玩的地方在于，你只能自己玩，然后你和别人说你的感受，他们一开始会绝对不相信。但是，你又没有办法把你看到的景象用任何方式记录下来，给别人做个证明，因为那只存在于你的脑子里。但是，一旦别人也适应了，能看到这一点的时候，他们会无条件地赞同你，仿佛你们分享了天地间的一大秘密。 </span><wbr /></span><wbr /><br><span style="color:#9999ff;font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr />唯心主义者应该非常喜欢这个例子，境由心造。不过在我看来，它最适合一个人面 对电脑屏幕玩。一开始的时候，我只能看见逆时针方向。等我偶然看见顺时针方向以后，就一直是顺时针旋转。而等我把人像遮住，只看脚的阴影，并试图用思维&quot;改变&quot;它的旋转方向并且取得成功以后，竟然这么看玩了半个小时。一个人，一张图，中间除了光线没有任何介质，但是你就是可以控制它的转动，非常逗人的小游戏。</span><wbr /></span><wbr /><a href="http://imgcache.qq.com/ac/qzone_v4/b.gif" target="_blank"><span style="font-size:13px;font-family:'新宋体';line-height:1.8em;"><span style="font-weight:bold"><wbr /><span style="color:#9999ff;line-height:1.8em;"><wbr /><a href="http://imgcache.qq.com/ac/qzone_v4/b.gif" target="_blank"><img style="width:0px;height:1px;border:0;" src="http://imgcache.qq.com/ac/qzone_v4/b.gif" /></a><wbr /></span><wbr /></a><wbr /></span><wbr /></span><wbr /><span style="color:#9999ff;line-height:1.8em;"> </span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1258898325#comment</comments>
<qz:effect>134218249</qz:effect>
<pubDate>Sun, 22 Nov 2009 13:58:45 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1258898325</guid>
</item>

<item>
<title><![CDATA[超级简单的DIY乡巴佬鸡蛋]]></title>
<link>http://307372272.qzone.qq.com/blog/1258889334</link>
<description><![CDATA[超级简单的DIY乡巴佬鸡蛋<br><wbr /><a href="http://www.qldao.com/bbs/images/default/attachimg.gif" target="_blank"><img style="border:0;" src="http://www.qldao.com/bbs/images/default/attachimg.gif" /></a><wbr /> <wbr /><a href="http://www.qldao.com/bbs/attachments/month_0810/20081030_36351c688580ed7343c7w52q1rvXuHSk.jpg" target="_blank"><img style="border:0;" src="http://www.qldao.com/bbs/attachments/month_0810/20081030_36351c688580ed7343c7w52q1rvXuHSk.jpg" /></a><wbr /> <wbr /><a href="http://www.qldao.com/bbs/images/attachicons/image.gif" target="_blank"><img style="border:0;" src="http://www.qldao.com/bbs/images/attachicons/image.gif" /></a><wbr /> <a href="http://www.qldao.com/bbs/attachment.php?aid=2179&amp;k=93fe1a180807209d6d5075f7613ec2a3&amp;t=1258885192&amp;nothumb=yes" target="_blank"><span style="font-weight:bold"><wbr />1.jpg</span><wbr /></a><wbr /> (29.52 KB)<br>2008-10-30 20:26<br><br><br>原料<br>鸡蛋６个，啤酒２００ml，酱油8ml,白糖40克<br>做法<br>１，鸡蛋加水加少许盐煮熟<br>２，剥去外皮加入啤酒和白糖，酱油<br>３，煮至酒干即可<br>如果想入味，建议在鸡蛋上多划几道口子。<br>放一夜会更入味的.<br><wbr /><a href="http://www.qldao.com/bbs/images/default/attachimg.gif" target="_blank"><img style="border:0;" src="http://www.qldao.com/bbs/images/default/attachimg.gif" /></a><wbr /> <wbr /><a href="http://www.qldao.com/bbs/attachments/month_0810/20081030_e7606636945e031b6574EUoB1UIWvBfl.jpg" target="_blank"><img style="border:0;" src="http://www.qldao.com/bbs/attachments/month_0810/20081030_e7606636945e031b6574EUoB1UIWvBfl.jpg" /></a><wbr /> <wbr /><a href="http://www.qldao.com/bbs/images/attachicons/image.gif" target="_blank"><img style="border:0;" src="http://www.qldao.com/bbs/images/attachicons/image.gif" /></a><wbr /> <a href="http://www.qldao.com/bbs/attachment.php?aid=2180&amp;k=d27ce3f8ac7be6b158e1ebaccafb72d0&amp;t=1258885192&amp;nothumb=yes" target="_blank"><span style="font-weight:bold"><wbr />2.jpg</span><wbr /></a><wbr /> (17.82 KB)<br>2008-10-30 20:26<br><br><br><wbr /><a href="http://www.qldao.com/bbs/images/default/attachimg.gif" target="_blank"><img style="border:0;" src="http://www.qldao.com/bbs/images/default/attachimg.gif" /></a><wbr /> <wbr /><a href="http://www.qldao.com/bbs/attachments/month_0810/20081030_7b851f5b167d9a85cdcfmz5Qn8jekaps.jpg" target="_blank"><img style="border:0;" src="http://www.qldao.com/bbs/attachments/month_0810/20081030_7b851f5b167d9a85cdcfmz5Qn8jekaps.jpg" /></a><wbr /> <wbr /><a href="http://www.qldao.com/bbs/images/attachicons/image.gif" target="_blank"><img style="border:0;" src="http://www.qldao.com/bbs/images/attachicons/image.gif" /></a><wbr /> <a href="http://www.qldao.com/bbs/attachment.php?aid=2181&amp;k=e0100649e61802de39ae884b52c24f29&amp;t=1258885192&amp;nothumb=yes" target="_blank"><span style="font-weight:bold"><wbr />3.jpg</span><wbr /></a><wbr /> (28.39 KB)<br>2008-10-30 20:26<br><br> <!--v:3.2--> ]]></description>
<category><![CDATA[77]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1258889334#comment</comments>
<qz:effect>134218241</qz:effect>
<pubDate>Sun, 22 Nov 2009 11:28:54 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1258889334</guid>
</item>

<item>
<title><![CDATA[关于track我很无语]]></title>
<link>http://307372272.qzone.qq.com/blog/1258731860</link>
<description><![CDATA[track 早期配合的是rtr.<br>现在被track + sla取代.下面是官方文档.<br>Effective with Cisco IOS Release 12.4(20)T and Cisco IOS Release 12.2(33)SXI1, the <span style="font-weight:bold"><wbr />track rtr</span><wbr /> command is replaced by the <span style="font-weight:bold"><wbr />track ip sla</span><wbr /> command. See the <span style="font-weight:bold"><wbr />track ip sla</span><wbr /> command for more information<br> <!--v:3.2--> ]]></description>
<category><![CDATA[死磕]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1258731860#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Fri, 20 Nov 2009 15:44:20 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1258731860</guid>
</item>

<item>
<title><![CDATA[cisco ip sla config]]></title>
<link>http://307372272.qzone.qq.com/blog/1258727322</link>
<description><![CDATA[<a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsla_c.html" target="_blank">Cisco IOS IP SLAs Configuration Guide, Release 12.4</a><wbr /> <br><span style="text-decoration:underline;"><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hs_rdmp.html" target="_blank">Cisco IOS IP SLAs Features Roadmap</a><wbr /> <li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsoverv.html" target="_blank">Cisco IOS IP SLAs Overview </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsjitter.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the UDP Jitter Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsvoipj.html" target="_blank">IP SLAs--Analyzing Service Levels Using the VoIP Jitter Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsgkdly.html" target="_blank">IP SLAs--Analyzing VoIP Service Levels Using the Gatekeeper Registration Delay Operation</a><wbr /> <li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hspddly.html" target="_blank">IP SLAs--Analyzing VoIP Service Levels Using the Call Setup Operation</a><wbr /> <li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsudpe.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the UDP Echo Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hshttp.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the HTTP Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hstcpc.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the TCP Connect Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsicmp.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the ICMP Echo Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hspaecho.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the ICMP Path Echo Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hspthjit.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the ICMP Path Jitter Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsftp.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the FTP Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsdns.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the DNS Operation </a><wbr /><li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsdhcp.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the DHCP Operation</a><wbr /> <li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsdlsw.html" target="_blank">IP SLAs--Analyzing IP Service Levels Using the DLSw+ Operation</a><wbr /> <li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsmulti.html" target="_blank">IP SLAs--Multiple Operation Scheduling</a><wbr /> <li style="margin:25px;"><br><a href="http://www.cisco.com/en/US/docs/ios/12_4/ip_sla/configuration/guide/hsthresh.html" target="_blank">IP SLAs--Proactive Threshold Monitoring</a><wbr /></li></span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[死磕]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1258727322#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Fri, 20 Nov 2009 14:28:42 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1258727322</guid>
</item>

<item>
<title><![CDATA[Initiator-2.03-build3099-x86fre.exe]]></title>
<link>http://307372272.qzone.qq.com/blog/1258619252</link>
<description><![CDATA[使用iscsi协议传输文件的时候.需要安装此软件!<br>两边配置好后.就相当于本地硬盘一样使用空间.<br>原来存储很有意思嘛! <!--v:3.2--> ]]></description>
<category><![CDATA[存储]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1258619252#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Thu, 19 Nov 2009 08:27:32 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1258619252</guid>
</item>

<item>
<title><![CDATA[h3c无线控制器BUG多多]]></title>
<link>http://307372272.qzone.qq.com/blog/1258526554</link>
<description><![CDATA[调试了整整一夜的无线控制器.我的小心肝啊.早就碰碰的了.<br>ap眼看着变成板砖!草了<br>控制器 用命令行早期可以使用.现在不行.<br>最新的1108P11支持web配置<br>不支持命令行改名.支持改名.不支持启动时自动加载.因为命令行不识别.<br>点击设备的链接.可以出现网页的源代码!那叫一个暴汗!!! <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1258526554#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Wed, 18 Nov 2009 06:42:34 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1258526554</guid>
</item>

<item>
<title><![CDATA[BR304+ 支持动态域名方式拨入远程vpn server]]></title>
<link>http://307372272.qzone.qq.com/blog/1258426371</link>
<description><![CDATA[Remote Security Gateway<br>选择此项使用IP地址或域名来标识VPN隧道对端（或者说是隧道终点）安全网关。对端VPN隧道端点可以是其他的VPN路由器，也可以是一台运行VPN软件的主机。 <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[307372272@qq.com(◆涛涛/love)]]></author>
<comments>http://307372272.qzone.qq.com/blog/1258426371#comment</comments>
<qz:effect>134218240</qz:effect>
<pubDate>Tue, 17 Nov 2009 02:52:51 GMT</pubDate>
<guid>http://307372272.qzone.qq.com/blog/1258426371</guid>
</item>

</channel>
</rss>

