<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[日日之博ririri.com]]></title> 
<link>http://www.ririri.com/index.php</link> 
<description><![CDATA[]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[日日之博ririri.com]]></copyright>
<item>
<link>http://www.ririri.com/post/235/</link>
<title><![CDATA[PHP最美的代码-变量互换]]></title> 
<author>dfssaa &lt;a@ririri.com&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Tue, 20 Jul 2010 06:07:02 +0000</pubDate> 
<guid>http://www.ririri.com/post/235/</guid> 
<description>
<![CDATA[ 
	　　a ^= b; b ^= a; a ^= b; <br/>　 <br/>　　就这三句，实现了 a b 两个变量的交换。 <br/>　 <br/>　　以前我们传统的交换两个变量值的方法是用一个临时变量来进行过渡： <br/>　 <br/>　　temp = a; a = b; b = temp; <br/>　 <br/>　　而上面的语句却在两个变量之间进行了转换，感觉很奇妙，所以我特地的用ＰＨＰ写了一个小程序，来分析他的运算过程： <br/>　 <br/>　　首先，来讲一讲 a ^= b; b ^= a; a ^= b; 的运算符，他用的是“ ^ 按位异或运算”。 <br/>　 <br/>　　什么是异或运算呢？ <br/>　 <br/>　　他是在计算机应用中，普遍运用，异或的逻辑符号 ^ (Shift + 6)。形象表示为： <br/>　　真 ^ 假 = 真 <br/>　　假 ^ 真 = 真 <br/>　　假 ^ 假 = 假 <br/>　　真 ^ 真 = 假 <br/>　 <br/>　　可以看到，当两个条件相同时，结果为假；当两个条件不同是，结果为真。 <br/>............<br/>
]]>
</description>
</item><item>
<link>http://www.ririri.com/DOCTYPE/</link>
<title><![CDATA[声明DOCTYPE的必要性，margin:0 auto; 居中问题]]></title> 
<author>dfssaa &lt;a@ririri.com&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Wed, 14 Jul 2010 06:32:24 +0000</pubDate> 
<guid>http://www.ririri.com/DOCTYPE/</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;太菜，学着用DIV+CSS做个页面，在Chrome挺正常，结果到IE上一看，全偏到左边去了，不居中；查了一下margin:0 auto;的使用方法，我也没写错，拿别人写好的模板一看，也是用margin:0 auto;来居中的，开始总以为是少写了什么...<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在网上搜一下，才知道在IE下，要加上将DOCTYPE声明，margin:0 auto;才起作用；<br/>在<html>前加上：<br/><div class="code">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;</div><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;再看刚才的页面，在IE里就老老实实的居中了；<br/>另外，需“一边固定，一边自动扩展”的页面效果，也一定要加：声明DOCTYPE<br/><br/>引用：<br/><strong>什么是DOCTYPE</strong><br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;上述的代码我们称做DOCTYPE声明。DOCTYPE是document type(文档类型)的简写，用来说明你用的XHTML或者HTML是什么版本。<br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/%25E5%25A3%25B0%25E6%2598%258Edoctype/" rel="tag">声明doctype</a> , <a href="http://www.ririri.com/tags/doctype/" rel="tag">doctype</a> , <a href="http://www.ririri.com/tags/margin/" rel="tag">margin</a> , <a href="http://www.ririri.com/tags/xhtml/" rel="tag">xhtml</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/spf-records-txt-records-mail-domain/</link>
<title><![CDATA[SPF记录,txt记录,邮件,mail,域名]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Fri, 26 Feb 2010 15:07:44 +0000</pubDate> 
<guid>http://www.ririri.com/spf-records-txt-records-mail-domain/</guid> 
<description>
<![CDATA[ 
	<a href="http://www.ririri.com/attachment.php?fid=694" target="_blank"><img src="http://www.ririri.com/attachment.php?fid=694" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;很早架设邮件服务器就了解SPF,当时为给域名加一个TXT记录，多次联系域名注册商才加上（现在可以在域名控制面板自已加了）；今天用开源的邮件系统给公司做了个mailserver，给域名添加TXT记录时，又忘了怎么生成一个标准的SPF，一番搜索，一切搞定；<br/><br/><span style="color: #0000FF;">给自已的MAIL域名添加SPF格式的TXT记录 相当重要：</span><br/>1.163..com , QQ.COM , sina.com 邮件服务器 对其它mailserver发来的邮件会进行txt记录查询，如果没做SPF，会拒绝收信，或是当垃圾邮件。<br/>2.增加自已域名的安全性，防止别人冒充你的域名发垃圾邮件。<br/><br/><br/>特把SPF生成方式记下来，免得以后再到处找；<br/><br/><span style="color: #0000FF;">关于 SPF记录</span>：<br/>　　 SPF是指Sender Policy Framework （发信者策略架构），通常都直接称为SPF。在域名管理系统中对域名做一条以SPF格式为准的txt记录即为SPF记录。<br/><br/>　　 SPF是为了防范垃圾邮件而提出来的一种DNS记录类型，它是一种TXT类型的记录，它用于登记某个域名拥有的用来外发邮件的所有IP地址。例如: dig TXT ririri.com<br/>　　 ririri.com. 27970 IN TXT "v=spf1 ip4:127.0.0.1 -all"<br/>　　按照SPF的格式在DNS记录中增加一条TXT类型的记录，将提高该域名的信誉度，同时可以防止垃圾邮件伪造该域的发件人发送垃圾邮件。 <br/>　　 SPF是跟DNS相关的一项技术，它的内容写在DNS的txt类型的记录里面。mx记录的作用是给寄信者指明某个域名的邮件服务器有哪些。SPF的作用跟mx相反，它向收信者表明，哪些邮件服务器是经过某个域名认可会发送邮件的。 <br/>　　SPF的作用主要是反垃圾邮件，防止那些发信人伪造域名的垃圾邮件。<br/><br/><span style="color: #0000FF;">快速生成SPF格式的TXT记录方法：</span>使用网页工具生成：<a href="http://old.openspf.org/wizard.html?mydomain=ririri.com&submit=Go!" target="_blank">http://old.openspf.org/wizard.html?mydomain=ririri.com&submit=Go!</a><br/>在那个框里写上你的域名<br/>a 你域名的A记录，一般选择yes，因为他有可能发出邮件。<br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/spf%25E8%25AE%25B0%25E5%25BD%2595/" rel="tag">spf记录</a> , <a href="http://www.ririri.com/tags/txt%25E8%25AE%25B0%25E5%25BD%2595/" rel="tag">txt记录</a> , <a href="http://www.ririri.com/tags/%25E9%2582%25AE%25E4%25BB%25B6/" rel="tag">邮件</a> , <a href="http://www.ririri.com/tags/mail/" rel="tag">mail</a> , <a href="http://www.ririri.com/tags/%25E5%259F%259F%25E5%2590%258D/" rel="tag">域名</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/e-mail-server-ip-reverse-lookup/</link>
<title><![CDATA[邮件服务器的IP反向解析]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Wed, 10 Feb 2010 14:09:47 +0000</pubDate> 
<guid>http://www.ririri.com/e-mail-server-ip-reverse-lookup/</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;用公司的邮件发邮件到新浪(sina)、(雅虎)YAHOO、HOTMAIL等邮箱，遭到退信；查了一下资料，如果公司的邮件没有被人用来发垃圾邮件而遭退信，那一般都是没有做邮件服务器IP反向解析；<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;用命令：nslookup –qt=ptr yourIP<br/>&nbsp;&nbsp;&nbsp;&nbsp; 如： nslookup –qt=ptr 60.28.175.225<br/>&nbsp;&nbsp;&nbsp;&nbsp; 可以看到：225.175.28.60.in-addr.arpa&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;name = r175-225.sinamail.sina.com.cn&nbsp;&nbsp; 这就是新浪为自已服务器IP做的反向域名解析<br/><br/>联系了电信的业务经理，表示可以为我们的IP添加反向域名解析。<br/><br/>PS：在中国，很多人都会忽视这一项工作，同时，为邮件服务器添加对投递来的信件做IP反向解析验证，可以很好的防止垃圾邮件。<br/><a href="http://www.ririri.com/attachment.php?fid=690" target="_blank"><img src="http://www.ririri.com/attachment.php?fid=690" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/%25E9%2582%25AE%25E4%25BB%25B6%25E6%259C%258D%25E5%258A%25A1%25E5%2599%25A8/" rel="tag">邮件服务器</a> , <a href="http://www.ririri.com/tags/ip%25E5%258F%258D%25E5%2590%2591%25E8%25A7%25A3%25E6%259E%2590/" rel="tag">ip反向解析</a> , <a href="http://www.ririri.com/tags/%25E5%258F%258D%25E5%2590%2591%25E5%259F%259F%25E5%2590%258D%25E8%25A7%25A3%25E6%259E%2590/" rel="tag">反向域名解析</a> , <a href="http://www.ririri.com/tags/%25E8%25A7%25A3%25E6%259E%2590%25E9%25AA%258C%25E8%25AF%2581/" rel="tag">解析验证</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/post/191/</link>
<title><![CDATA[国外常用的免费DNS域名解析服务器]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Tue, 05 Jan 2010 07:54:38 +0000</pubDate> 
<guid>http://www.ririri.com/post/191/</guid> 
<description>
<![CDATA[ 
	在国内注册的域名默认使用的是国内域名注册商提供的DNS服务器，国内的DNS服务器可能受政策的影响停止解析域名，网络上传说以后没有备案的域名国内将不给解析。<br/><br/>为了避免国内的这些政策，建议使用国外的域名服务：<br/><br/>如果您还没有注册域名，请不要在国内注册域名，如果您已经在国内注册了域名，建议把您的域名转移到国外。<br/><br/>如果您已经在国内注册了域名，但由于国内注册商赖皮，不给您转移密码，您还可以使用国外的免费DNS服务器。<br/><br/>国外免费DNS服务器<br/><br/>国外免费DNS服务器有除了everydns.com还有很多。<br/><br/>例如：<br/><br/>ZoneEdit：只支持5个域名的免费解析服务（但要求域名流量不能太大），也提供动态的域名解析。现在似乎又做起来域名销售的服务。<br/><br/><br/>Edit DNS：提供从DNS域名解析服务，并支持修改A， CNAME， MX， NS， TXT， PTR， and AAAA records等，支持免费的子域名，域名重定向等服务。<br/><br/>PowerDNS：提供免费的DSN解析，也有收费的服务。免费的服务的功能较少。<br/><br/>MyDomain：其上主要还是做域名和虚拟主机销售服务，有提供免费的DNS服务，免费的域名和E-mail转向，修改A/MX记录、支持多个子域名服务。<br/><br/>除了上面几个国人用得较多外，其它的还有granitecanyon.com、hn.org、dynu.com、24link.com、yi.org、dyndns.org、no-ip.com、dnsmadeeasy.com等，以及最近谷歌提供的Google Public DNS服务。<br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/%25E5%2585%258D%25E8%25B4%25B9dns/" rel="tag">免费dns</a> , <a href="http://www.ririri.com/tags/%25E5%259B%25BD%25E5%25A4%2596dns/" rel="tag">国外dns</a> , <a href="http://www.ririri.com/tags/%25E5%259F%259F%25E5%2590%258D%25E8%25A7%25A3%25E6%259E%2590%25E6%259C%258D%25E5%258A%25A1%25E5%2599%25A8/" rel="tag">域名解析服务器</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/post/180/</link>
<title><![CDATA[无线连接超时受限制或无连接，要注意系统时间是否正常]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Mon, 14 Dec 2009 14:20:06 +0000</pubDate> 
<guid>http://www.ririri.com/post/180/</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;同事的一台笔记本，带回家用了几天，在家是用有线连接上网的，今天来公司用无线网络，怎么也连不上，在网卡状态里，显示一直在连接不能获取到IP，直到超时，提示“受限制或无连接”。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;此笔记本之前在公司一直是用无线网络的，一切正常，检查系统进程正常，同事回家也没做其它设置。<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;我看了一下笔记本的时间，竟然比我手机的时间慢了好多，看来是系统时间与无线路由器的时间不同步造成的。调整好系时间后，连接公司，获台IP，通过认证，OK<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;在网上看了一下，好像没看到相关的信息；<u>以后遇到无线连接的问题看来要注意一下系统时间是否正常</u>。<br/><br/><a href="http://www.ririri.com/attachment.php?fid=641" target="_blank"><img src="http://www.ririri.com/attachment.php?fid=641" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>Tags - <a href="http://www.ririri.com/tags/%25E6%2597%25A0%25E7%25BA%25BF%25E7%25BD%2591%25E7%25BB%259C/" rel="tag">无线网络</a> , <a href="http://www.ririri.com/tags/%25E6%2597%25A0%25E7%25BA%25BF%25E8%25BF%259E%25E6%258E%25A5/" rel="tag">无线连接</a> , <a href="http://www.ririri.com/tags/%25E6%2597%25A0%25E7%25BA%25BF%25E8%25B7%25AF%25E7%2594%25B1%25E5%2599%25A8/" rel="tag">无线路由器</a> , <a href="http://www.ririri.com/tags/%25E6%2597%25B6%25E9%2597%25B4%25E5%2590%258C%25E6%25AD%25A5/" rel="tag">时间同步</a> , <a href="http://www.ririri.com/tags/%25E7%25B3%25BB%25E7%25BB%259F%25E6%2597%25B6%25E9%2597%25B4/" rel="tag">系统时间</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/post/173/</link>
<title><![CDATA[MSSQL2000在window 2003上面安装需要验证序列号，无效的序列号的问题]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Tue, 17 Nov 2009 10:51:15 +0000</pubDate> 
<guid>http://www.ririri.com/post/173/</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;今天在WIN 2003上装SQL2000 标装版，开始装没几步就出一个序列号的窗口，要求输入序列号，我还纳闷，以前没出现过这一步哇，也没管那些，就去网上找了一个序列号输进去，结果提示无效的序列号，我一下在<a href="http://www.baidu.com" target="_blank">百度</a>里找了5个序列号，结果全提示无效的序列号，复制粘贴了半天，竟然全提示无效的序列号。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;肯定是这一步不对，于是在<a href="http://www.baidu.com" target="_blank">百度</a>又搜了一次，才发现在2003上就会提示要输入序列号，在XP上就不提示，<strong>解决方法如下</strong>：<br/><br/><span style="color: #DC143C;">方法一 输入序列号</span>： <br/>在给出的输入CD-KEY(序列号)的窗口中，输入你已经安装的windows server 2003 的CD-KEY(序列号)即可以继续安装，而不是SQL 2000的CD-KEY(序列号)。<br/><br/>附： <br/>Windows server 2003的CD-KEY(序列号)：JCGMJ-TC669-KCBG7-HB8X2-FXG7M <br/>SQL2000的CD-KEY(序列号)：SN：311-0432642 CD-KEY：H6TWQ-TQQM8-HXJYG-D69F7-R84VM）<br/><br/><span style="color: #DC143C;">方法二 改注册表</span>： <br/><br/>1. 先取消本次安装。 <br/>2. 开始-->运行， 键入 regedit , 和然后 "确定"。启动注册表编辑器。 <br/>3. 找到并双击 SafeDllSearchMode 注册表项。 <br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/sql200/" rel="tag">sql200</a> , <a href="http://www.ririri.com/tags/mssql/" rel="tag">mssql</a> , <a href="http://www.ririri.com/tags/2003/" rel="tag">2003</a> , <a href="http://www.ririri.com/tags/windows2003/" rel="tag">windows2003</a> , <a href="http://www.ririri.com/tags/%25E5%25AE%2589%25E8%25A3%2585/" rel="tag">安装</a> , <a href="http://www.ririri.com/tags/%25E6%2597%25A0%25E6%2595%2588%25E7%259A%2584%25E5%25BA%258F%25E5%2588%2597%25E5%258F%25B7/" rel="tag">无效的序列号</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/post/168/</link>
<title><![CDATA[Linux关机命令详解]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Sun, 08 Nov 2009 09:33:27 +0000</pubDate> 
<guid>http://www.ririri.com/post/168/</guid> 
<description>
<![CDATA[ 
	LINUX 关机命令有三个 halt，shutdown，poweroff，以及重启命令reboot<br/><br/>halt确有其命令，以及man内容。<br/>shutdown也是专门负责关机的命令，并是独立的程序。<br/>poweroff命令并不存在，但他直接调用的是halt -p的默认命令参数，是link过来的，下面也会提到：<br/>reboot是重启命令，作用内容可以参考halt的man<br/><br/>如......<br/>[root@acnis root]# halt --help<br/>usage: halt [-n] [-w] [-d] [-f] [-i] [-p]<br/>-n: don't sync before halting the system<br/>-w: only write a wtmp reboot record and exit.<br/>-d: don't write a wtmp record.<br/>-f: force halt/reboot, don't call shutdown.<br/>-p: power down the system (if possible, otherwise halt)<br/>参数说明:<br/>　　 [-n] 防止 sync 系统调用，它用在用fsck修补根分区之后，以阻止内核用老版本的超级块（superblock）覆盖修补过的超级块。<br/>　　 [-w] 并不是真正的重启或关机，只是写 wtmp（/var/log/wtmp）纪录。<br/>　　 [-d] 不写 wtmp 纪录（已包含在选项 [-n] 中）。<br/>　　 [-f] 没有调用 shutdown 而强制关机或"重启"(指的是reboot)。<br/>　　 [-i] 关机（或重启）前，关掉所有的网络接口。<br/>　　 [-p] 该选项为缺省选项。就是关机时调用 poweroff。 （isher喜欢直接用poweroff命令）<br/>　　 [-h] 在系统关闭之前,从系统中正确的移除所有的磁盘驱动器。<br/>说明poweroff命令很多人不知道，这也是在/sbin下面的命令，是一个link，连接到halt -p的命令上。<br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/linux/" rel="tag">linux</a> , <a href="http://www.ririri.com/tags/%25E5%2585%25B3%25E6%259C%25BA%25E5%2591%25BD%25E4%25BB%25A4/" rel="tag">关机命令</a> , <a href="http://www.ririri.com/tags/halt/" rel="tag">halt</a> , <a href="http://www.ririri.com/tags/shutdown/" rel="tag">shutdown</a> , <a href="http://www.ririri.com/tags/poweroff/" rel="tag">poweroff</a> , <a href="http://www.ririri.com/tags/reboot/" rel="tag">reboot</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/post/161/</link>
<title><![CDATA[UUCall.com域名遭遇无法解析]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Sun, 11 Oct 2009 13:13:57 +0000</pubDate> 
<guid>http://www.ririri.com/post/161/</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;今天打开UUCALL，发现不能使用，打UUCALL官网，<a href="http://www.google.cn" target="_blank">google chorme</a>提示域名不存在，我狂汗？这么有名的网络电话网站的域名竟然会不存在？难道是我的网络出问题了？<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.baidu.com" target="_blank">百度</a>一下，才现UUCALL不能使用已有几天的时间了，这期间UUCALL不能使用，官网打不开，客户打不通。很奇怪，就算是有问题也得出一个公告吧？<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;在百度贴吧有类似官方的声明表示：因为UUCall域名等相关原因，UUCall暂时不能为各位提供服务，为此我们深表歉意。我们正在积极和相关部门联系，并努力解决问题中，尽快恢复服务。请各位用户留意客户端上的通知以及网站首页。 <br/><br/>　　查询WHOIS显示：UUCall.com域名状态处理clientHold，从工信部的备案系统查询，uucall.com这个域名已经有备案信息，UUCall运营团队在百度贴吧发表声明表示，此次UUCall无法登陆是因官网域名的原因造成的。<br/><br/><a href="http://www.ririri.com/attachment.php?fid=499" target="_blank"><img src="http://www.ririri.com/attachment.php?fid=499" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;贴吧有网友发示，此次UUCall无法登陆，域名遭遇无法解析事件，疑和早前电玩巴士被封事件如出一辙，从2009年2月24日电玩巴士被关闭不到一月后，百度对电玩巴士的数据收录全部清空，同时，该域名的谷歌PR也下降为0。UUCall无法登陆的消息传开后，受到网友的广泛关注，部分网友甚至开始指责注册商停止解析域名的行为。<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;现在我关注的是，UUCALL什么时候能重开，要是开不了，那么多人充的话费能退不？UUCALL是国内最大的网络电话商，充值的用户特别多，如果UUCALL就这么消失了，那被卷走的钱可就不是小数了。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;话也说回来，作为国内用户群最大的网络电话商，要本就不需要卷钱逃跑吧？根本就不可能，那这么离奇的消失，也没有人出来发一个公告，可真是奇了怪。听说有用户已报警。<br/>Tags - <a href="http://www.ririri.com/tags/uucall/" rel="tag">uucall</a> , <a href="http://www.ririri.com/tags/%25E7%25BD%2591%25E7%25BB%259C%25E7%2594%25B5%25E8%25AF%259D/" rel="tag">网络电话</a> , <a href="http://www.ririri.com/tags/%25E5%259F%259F%25E5%2590%258D/" rel="tag">域名</a> , <a href="http://www.ririri.com/tags/%25E6%2597%25A0%25E6%25B3%2595%25E8%25A7%25A3%25E6%259E%2590/" rel="tag">无法解析</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/post/159/</link>
<title><![CDATA[认识全球各大知名网卡芯片技术]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[网络技术]]></category>
<pubDate>Wed, 07 Oct 2009 12:47:54 +0000</pubDate> 
<guid>http://www.ririri.com/post/159/</guid> 
<description>
<![CDATA[ 
	<a href="http://www.ririri.com/attachment.php?fid=498" target="_blank"><img src="http://www.ririri.com/attachment.php?fid=498" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>进入21世纪，网络已经走进了千家万户，市面上的网络产品更是层出不穷，消费者对网络的认知度也越来越高。当你购买网络产品的时候，最能引起你注意的一个参数就是网卡的速度，在介绍一款产品的时候我们总说：“这款产品提供4个或8个10/100/1000M自适应端口，支持端口自动翻转”。但这些只是产品的参数而已，你有没有注意过这个产品使用了什么网卡芯片？市面上又有哪些品牌和型号的网卡芯片？今天笔者就带大家了解一下主流的网卡芯片厂商和它们的芯片产品。 <br/><br/>网卡芯片也非很多种类，不同类型的芯片应用在不用的环境里，例如有桌面级芯片、服务器级芯片、百兆芯片、千兆芯片、无线芯片等。当今网卡芯片厂商有六家，<span style="color: #0000FF;">Intel、Realtek、Broadcom、Atheros、VIA、SIS</span>。其中<span style="color: #0000FF;">Intel、Realtek、Broadcom、Atheros</span>的芯片是最为常见的。让我们来分别了解一下。 <br/><br/><span style="color: #DC143C;">Intel </span><br/><br/>Intel是个老品牌了，早期的台式机有很多都采用Intel的入门级网卡产品——lntel Pro/100VE。在AMD还没与Intel形成明显的竞争关系之前，这个网卡在市场中很常见，后来Intel又推出了Pro 10/100、Pro 100/1000,后两个产品现在大多集成到Intel自主品牌的主板中，DIY市场已经不多见了。 <br/><br/>除此之外，Intel还有很多网卡芯片，例如： <br/><br/>8257X系列，隶属于高端千兆网卡产品。一般用在企业级交换机和路由器中。 <br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/%25E7%25BD%2591%25E5%258D%25A1%25E8%258A%25AF%25E7%2589%2587/" rel="tag">网卡芯片</a> , <a href="http://www.ririri.com/tags/broadcom/" rel="tag">broadcom</a> , <a href="http://www.ririri.com/tags/atheros/" rel="tag">atheros</a> , <a href="http://www.ririri.com/tags/via/" rel="tag">via</a> , <a href="http://www.ririri.com/tags/sis/" rel="tag">sis</a> , <a href="http://www.ririri.com/tags/intel/" rel="tag">intel</a> , <a href="http://www.ririri.com/tags/realtek/" rel="tag">realtek</a>
]]>
</description>
</item>
</channel>
</rss>