<?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://www.enjoyeasy.com.cn/blog/category/bullshit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.enjoyeasy.com.cn/blog</link>
	<description>又不是武松，哪来什么武功。。。</description>
	<lastBuildDate>Tue, 22 Nov 2011 11:20:04 +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>闲置设备出售</title>
		<link>http://www.enjoyeasy.com.cn/blog/%e9%97%b2%e7%bd%ae%e8%ae%be%e5%a4%87%e5%87%ba%e5%94%ae/</link>
		<comments>http://www.enjoyeasy.com.cn/blog/%e9%97%b2%e7%bd%ae%e8%ae%be%e5%a4%87%e5%87%ba%e5%94%ae/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 11:20:04 +0000</pubDate>
		<dc:creator>baljeans</dc:creator>
				<category><![CDATA[扯淡|疯言疯语]]></category>

		<guid isPermaLink="false">http://www.enjoyeasy.com.cn/blog/?p=966</guid>
		<description><![CDATA[DELL R410拆机RAID卡SRS6iR两块 1G DDR3 1333 ECC内存4条 DELL4小时快速技术响应剩余时间400-500天 需要的可联系，价格绝对优惠。]]></description>
			<content:encoded><![CDATA[<p>DELL R410拆机RAID卡SRS6iR两块<br />
1G DDR3 1333 ECC内存4条<br />
DELL4小时快速技术响应剩余时间400-500天<br />
需要的可联系，价格绝对优惠。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enjoyeasy.com.cn/blog/%e9%97%b2%e7%bd%ae%e8%ae%be%e5%a4%87%e5%87%ba%e5%94%ae/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>多台服务器之间同步更新iptables设置</title>
		<link>http://www.enjoyeasy.com.cn/blog/update-servers-iptables-rules-one-time/</link>
		<comments>http://www.enjoyeasy.com.cn/blog/update-servers-iptables-rules-one-time/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 08:26:58 +0000</pubDate>
		<dc:creator>baljeans</dc:creator>
				<category><![CDATA[扯淡|疯言疯语]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[防火墙]]></category>

		<guid isPermaLink="false">http://www.enjoyeasy.com.cn/blog/?p=958</guid>
		<description><![CDATA[不得不承认DEDECMS洞洞好多，几乎每天都有用户的网站沦陷~~~ 有的黑客兄弟比较勤奋，会有多台服务器上多个网站同时有他的马~~~ 所以，当拥有多台服务器的时候，一台一台机器的去人肉更新iptables规则就成了一项艰巨而枯燥的任务~~~ 所以写了一个下边的脚本，每小时执行一次，获取远程的数据库规则，然后用iptables-restore来恢复，嘻嘻~~~ 第一：新建脚本文件，输入以下代码，后保存退出！ vim iptables.sh #!/bin/bash rm -f /root/iptables.txt wget http://www.vosent.com/iptables.txt -P /root/ iptables-restore < /root/iptables.txt service iptables save 第二：增加执行权限 chmod +x iptables.sh 第三：设置每小时执行一次 vim /etc/contab 再最后加入以下代码 * */1 * * * root /root/iptables.sh]]></description>
			<content:encoded><![CDATA[<p>不得不承认DEDECMS洞洞好多，几乎每天都有用户的网站沦陷~~~<br />
有的黑客兄弟比较勤奋，会有多台服务器上多个网站同时有他的马~~~<br />
所以，当拥有多台服务器的时候，一台一台机器的去人肉更新iptables规则就成了一项艰巨而枯燥的任务~~~<br />
所以写了一个下边的脚本，每小时执行一次，获取远程的数据库规则，然后用iptables-restore来恢复，嘻嘻~~~<br />
第一：新建脚本文件，输入以下代码，后保存退出！<br />
<code>vim iptables.sh</code><br />
<code>#!/bin/bash<br />
rm -f /root/iptables.txt<br />
wget http://www.vosent.com/iptables.txt -P /root/<br />
iptables-restore < /root/iptables.txt<br />
service iptables save</code><br />
第二：增加执行权限<br />
<code>chmod +x iptables.sh</code><br />
第三：设置每小时执行一次<br />
<code>vim /etc/contab</code><br />
再最后加入以下代码<br />
<code>* */1 * * * root /root/iptables.sh</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enjoyeasy.com.cn/blog/update-servers-iptables-rules-one-time/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>全国各地电信网通铁通DNS服务器地址</title>
		<link>http://www.enjoyeasy.com.cn/blog/dns-server-list/</link>
		<comments>http://www.enjoyeasy.com.cn/blog/dns-server-list/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 12:01:10 +0000</pubDate>
		<dc:creator>baljeans</dc:creator>
				<category><![CDATA[扯淡|疯言疯语]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[电信]]></category>
		<category><![CDATA[网通]]></category>
		<category><![CDATA[铁通]]></category>

		<guid isPermaLink="false">http://www.enjoyeasy.com.cn/blog/?p=944</guid>
		<description><![CDATA[河北： 河北石家庄（中国网通） 首选DNS：202.99.160.68 备用DNS：202.99.166.4 河北省邯郸市（网通） 首选DNS ：202.99.160.68 备用DNS ：202.99.166.4 河北省邯郸市（中国铁通） 首选DNS ：211.98.2.4 备用DNS ：61.232.206.102 河北省邢台市（中国网通） 首选DNS：202.99.160.68 备用DNS：202.99.166.4 河北省秦皇岛(中国网通) 首选DNS：202.99.166.4 备用DNS：202.99.160.68 河北省沧州市（中国网通） 首选DNS：202.99.160.68 备用DNS：202.99.176.30或202.99.166.4 河北省张家口市（中国网通） 首选DNS：202.99.166.4 备用DNS：202.99.160.68 河北省张家口市（中国电信） 首选DNS：219.150.32.132 备用DNS：219.146.0.130 河北省邢台市（中国网通） 首选DNS：202.99.160.68 备用DNS：202.99.166.4或202.99.168.8 贵州 贵州省贵阳市（中国电信） 首选DNS：202.98.192.67 备用DNS：202.98.198.167 云南 云南省玉溪市（中国电信） 首选DNS：222.172.200.68 备用DNS：61.166.150.123 云南省（中国铁通） 首选DNS：211.98.72.7 备用DNS：211.98.72.8 辽宁 辽宁省朝阳市（中国铁通） 首选DNS ：61.232.206.102 备用DNS ：211.98.4.1 辽宁省朝阳市（中国电信） 首选DNS ：219.150.32.132 备用DNS ：219.146.0.130 辽宁省朝阳市（中国网通） [...]]]></description>
			<content:encoded><![CDATA[<p>河北：<br />
河北石家庄（中国网通）<br />
首选DNS：202.99.160.68<br />
备用DNS：202.99.166.4<br />
河北省邯郸市（网通）<br />
首选DNS ：202.99.160.68<br />
备用DNS ：202.99.166.4<br />
河北省邯郸市（中国铁通）<br />
首选DNS ：211.98.2.4<br />
备用DNS ：61.232.206.102<br />
河北省邢台市（中国网通）<br />
首选DNS：202.99.160.68<br />
备用DNS：202.99.166.4<br />
<span id="more-944"></span><br />
河北省秦皇岛(中国网通)<br />
首选DNS：202.99.166.4<br />
备用DNS：202.99.160.68<br />
河北省沧州市（中国网通）<br />
首选DNS：202.99.160.68<br />
备用DNS：202.99.176.30或202.99.166.4<br />
河北省张家口市（中国网通）<br />
首选DNS：202.99.166.4<br />
备用DNS：202.99.160.68<br />
河北省张家口市（中国电信）<br />
首选DNS：219.150.32.132<br />
备用DNS：219.146.0.130<br />
河北省邢台市（中国网通）<br />
首选DNS：202.99.160.68<br />
备用DNS：202.99.166.4或202.99.168.8</p>
<p>贵州<br />
贵州省贵阳市（中国电信）<br />
首选DNS：202.98.192.67<br />
备用DNS：202.98.198.167</p>
<p>云南<br />
云南省玉溪市（中国电信）<br />
首选DNS：222.172.200.68<br />
备用DNS：61.166.150.123<br />
云南省（中国铁通）<br />
首选DNS：211.98.72.7<br />
备用DNS：211.98.72.8</p>
<p>辽宁<br />
辽宁省朝阳市（中国铁通）<br />
首选DNS ：61.232.206.102<br />
备用DNS ：211.98.4.1<br />
辽宁省朝阳市（中国电信）<br />
首选DNS ：219.150.32.132<br />
备用DNS ：219.146.0.130<br />
辽宁省朝阳市（中国网通）<br />
首选DNS ：202.96.69.38<br />
备用DNS ：202.96.64.68</p>
<p>河南<br />
河南省 （中国电信）<br />
首选DNS 222.88.88.88<br />
备选DNS 222.85.85.85<br />
河南省郑州市（中国电信）<br />
首选DNS：219.150.150.150<br />
备用DNS：219.150. 32.132<br />
河南省郑州市（中国网通）<br />
首选DNS：202.102.224.68<br />
备用DNS：202.102.227.68<br />
河南省安阳市（中国铁通）<br />
首选DNS：211.98.192.3<br />
备用DNS：61.233.65.3<br />
河南省洛阳市（中国电信）<br />
首选DNS：222.88.88.88<br />
备用DNS：222.85.85.85<br />
河南省网通DNS(全省)<br />
首选DNS：202.102.224.68<br />
备用DNS：202.102.227.68</p>
<p>四川<br />
四川省泸州市（中国电信）<br />
首选DNS：61.139.2.69<br />
备用DNS：202.98.96.68<br />
四川省泸州市（中国铁通）<br />
首选DNS：61.236.159.99<br />
备用DNS：61.139.2.69</p>
<p>内蒙古<br />
内蒙古呼和浩特市（中国电信）<br />
首选DNS：219.148.162.31<br />
备用DNS：219.150.32.132</p>
<p>天津<br />
天津（中国电信）<br />
首选DNS：219.150.32.132<br />
备用DNS：219.146.0.132</p>
<p>广东<br />
广东省广州市（中国电信）<br />
首选DNS：61.144.56.100<br />
备用DNS：61.144.56.101<br />
广东省广州市越秀区（中国电信）<br />
首选DNS：202.96.128.86<br />
备用DNS：202.96.128.166<br />
广东省广州市（中国电信）<br />
首选DNS：202.96.128.86<br />
备用DNS：202.96.128.166<br />
广东省广州市（中国铁通)<br />
首选DNS：61.235.70.98<br />
备用DNS：211.98.4.1<br />
广东省汕尾市（中国电信）<br />
首选DNS：202.96.128.166<br />
备用DNS：202.96.128.86<br />
广东省汕头市（中国电信）<br />
首选DNS：202.96.144.47<br />
备用DNS：202.96.128.166<br />
广东省河源市（中国电信）<br />
首选DNS：202.96.128.166<br />
备用DNS：202.96.128.86<br />
广东省河源市（中国网通）<br />
首选DNS：210.21.196.5<br />
备用DNS：221.5.88.88<br />
广东省深圳市（中国电信）<br />
首选DNS：202.96.128.166<br />
备用DNS：202.96.134.133<br />
广东省阳江市（中国电信）<br />
首选DNS：202.96.128.86<br />
备选DNS：202.96.128.166<br />
广东省增城市（中国电信）<br />
首选DNS：202.96.128.86<br />
备用DNS：202.96.128.166<br />
广东省广州市（中国铁通）<br />
首选DNS：61.235.70.98<br />
备用DNS：211.98.4.1<br />
广东省江门市（中国电信）<br />
首选DNS：202.96.128.86<br />
备用DNS：202.96.128.166<br />
广东省佛山市南海区（中国网通）<br />
首选DNS：221.5.88.88<br />
备用DNS：210.21.196.6</p>
<p>广西：<br />
广西壮族自治区（中国电信）<br />
首选DNS：202.103.224.68<br />
备用DNS：202.103.225.68<br />
广西壮族自治区柳州市 (中国网通）<br />
首选DNS：221.7.136.68<br />
备选DNS：221.7.128.68</p>
<p>湖南：<br />
湖南省衡阳市（中国电信）<br />
首选DNS：220.170.64.96<br />
备用DNS：202.103.96.68<br />
湖南长沙（中国电信）<br />
首选DNS：202.103.96.112<br />
备用DNS：202.103.96.68<br />
湖南长沙（中国铁通）<br />
首选DNS：61.234.254.5<br />
备用DNS：61.234.254.6<br />
湖南省永州市（中信宽带）<br />
首选DNS：219.72.225.254<br />
备用DNS：219.72.225.253<br />
湖南永州市(中国电信)<br />
首选DNS：218.76.248.6<br />
备选DNS：218.76.248.100<br />
湖南省湘潭市（中国电信）<br />
首选DNS：222.246.129.81<br />
备用DNS：59.51.78.211<br />
湖南省常德市（中国电信）<br />
首选DNS：59.51.78.210<br />
备用DNS：222.246.129.80<br />
湖南省益阳市（中国铁通）<br />
首选DNS：61.232.206.100<br />
备用DNS：202.101.172.35</p>
<p>湖南省吉首市（中国电信）<br />
首选DNS：222.246.129.81<br />
备用DNS：59.51.78.211<br />
湖南邵阳市（中国电信）<br />
首选DNS ：218.76.192.101<br />
备用DNS ：218.76.192.100<br />
湖南省岳阳市（中国电信）<br />
首选DNS：222.246.129.81<br />
备用DNS：59.51.78.211</p>
<p>福建：<br />
福建省厦门市（中国电信）<br />
首选DNS：202.101.103.55<br />
备用DNS：202.101.103.54<br />
福建省泉州市（中国电信）<br />
首选DNS：202.101.107.85<br />
备用DNS：218.85.157.99<br />
福建省漳州市（中国电信）<br />
首选DNS：218.85.157.99<br />
备用DNS：202.101.112.55<br />
福建省福州市（中国电信）<br />
首选DNS：218.85.157.99<br />
备用DNS：202.101.98.55<br />
福建省泉州市（中国电信）<br />
首选DNS：218.85.157.99<br />
备用DNS：202.101.107.98<br />
备用DNS：202.101.107.55<br />
备用DNS：202.101.107.85<br />
福建省龙岩市（中国电信）<br />
首选DNS：202.101.113.55<br />
备用DNS：218.85.157.99(全省备用)</p>
<p>江西：</p>
<p>江西省新余市（中国电信）<br />
首选DNS：202.101.224.69<br />
备用DNS：202.109.226.68<br />
江西省南昌市（中国电信）<br />
首选DNS：202.101.224.69<br />
备用DNS：202.101.226.68<br />
江西省南昌市（中国铁通）<br />
首选DNS：211.98.2.4<br />
备用DNS：211.98.4.1</p>
<p>江苏：</p>
<p>江苏省南京市（中国电信）<br />
首选DNS为：218.2.135.1<br />
备用DNS为：61.147.37.1<br />
江苏省镇江市（中国电信）<br />
首选DNS：218.2.135.1<br />
备用DNS：61.147.37.1<br />
江苏省盐城市（中国铁通）<br />
首选DNS：222.45.1.40<br />
备用DNS：211.98.4.1<br />
江苏省淮安市(中国电信)<br />
首选DNS:61.147.37.1<br />
备用DNS:61.177.7.1</p>
<p>浙江：<br />
浙江省宁波市（中国电信）<br />
首选DNS：202.96.104.15<br />
备用DNS：202.96.104.25<br />
浙江省杭州市（中国网通）<br />
首选DNS：218.108.248.200<br />
备用DNS：218.108.245.157<br />
浙江省溫州（中国电信）<br />
首选DNS：61.153.177.199<br />
备用DNS：61.153.177.198<br />
浙江省杭州市（中国电信）<br />
首选DNS：202.101.172.35<br />
备用DNS：202.101.172.47</p>
<p>陕西：</p>
<p>陕西省榆林市（中国电信）<br />
首选DNS：202.100.4.15<br />
备用DNS：202.100.0.68<br />
安徽：</p>
<p>安徽省（中国电信）<br />
首选DNS：202.102.192.68<br />
备用DNS：202.102.199.68<br />
安徽省阜阳市（中国电信）<br />
首选DNS：202.102.192.68<br />
备用DNS：202.102.199.68<br />
湖北：</p>
<p>湖北省（中国电信）<br />
首选DNS：202.103.44.150<br />
备用DNS：202.103.24.68</p>
<p>山东：<br />
山东省济宁市（中国网通）<br />
首选DNS：202.102.154.3<br />
备用DNS：202.102.152.3<br />
山东省青岛市（中国网通）<br />
首选DNS ：202.102.134.68<br />
备用DNS ：202.102.128.68<br />
山东省滨州市（中国网通）<br />
首选DNS ：202.102.134.68<br />
备用DNS ：202.102.128.68<br />
山东省临沂市（中国网通)<br />
首选DNS：202.102.154.3<br />
备用DNS：202.102.152.3<br />
山东省德州市（中国网通）<br />
首选DNS 202.102.152.3<br />
备选DNS 202.102.154.3<br />
山东滕州市（中国网通）<br />
首选DNS：202.102.128.68<br />
备用DNS：202.102.134.68<br />
山东省菏泽市(中国网通)<br />
首选DNS: 202.102.152.3<br />
备用DNS: 202.102.154.3</p>
<p>黑龙江：<br />
黑龙江省全省共用（中国网通）<br />
首选DNS：202.97.224.69<br />
备用DNS：202.97.227.138<br />
黑龙江哈尔滨（中国电信）<br />
首选DNS：219.150.32.132<br />
备用DNS：219.146.0.130</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enjoyeasy.com.cn/blog/dns-server-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>上海电信服务器租用 仅需499 限量10台</title>
		<link>http://www.enjoyeasy.com.cn/blog/shanghai-telecom-server/</link>
		<comments>http://www.enjoyeasy.com.cn/blog/shanghai-telecom-server/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 06:51:41 +0000</pubDate>
		<dc:creator>baljeans</dc:creator>
				<category><![CDATA[扯淡|疯言疯语]]></category>
		<category><![CDATA[免备案]]></category>
		<category><![CDATA[挂机]]></category>
		<category><![CDATA[月付]]></category>
		<category><![CDATA[服务器租用]]></category>

		<guid isPermaLink="false">http://www.enjoyeasy.com.cn/blog/?p=935</guid>
		<description><![CDATA[全部新机 E5500/4G/500G 4G大内存,500G新硬盘,上海电信独享10M带宽,这个价格二三线城市都不要想~~~ 错过就没了~~ 有兴趣的朋友可以联系我了解点详细的信息~~ 另外机房有VIP高防护段（费用稍贵些），单机可以抗10G的攻击哦，很适合做游戏~~ 防御能力一定要看单机可以给多少，集群是浮云，你懂的~~ QQ：61276362]]></description>
			<content:encoded><![CDATA[<p>全部新机 E5500/4G/500G<br />
4G大内存,500G新硬盘,上海电信独享10M带宽,这个价格二三线城市都不要想~~~<br />
错过就没了~~</p>
<p>有兴趣的朋友可以联系我了解点详细的信息~~</p>
<p>另外机房有VIP高防护段（费用稍贵些），单机可以抗10G的攻击哦，很适合做游戏~~</p>
<p>防御能力一定要看单机可以给多少，集群是浮云，你懂的~~</p>
<p>QQ：61276362</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enjoyeasy.com.cn/blog/shanghai-telecom-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>国内多线PHP主机5人合租 空余名额2个</title>
		<link>http://www.enjoyeasy.com.cn/blog/bgp-php-host/</link>
		<comments>http://www.enjoyeasy.com.cn/blog/bgp-php-host/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 12:20:07 +0000</pubDate>
		<dc:creator>baljeans</dc:creator>
				<category><![CDATA[扯淡|疯言疯语]]></category>
		<category><![CDATA[PHP主机]]></category>
		<category><![CDATA[主机合租]]></category>

		<guid isPermaLink="false">http://www.enjoyeasy.com.cn/blog/?p=921</guid>
		<description><![CDATA[国内多线PHP主机5人合租，E5500的配置，每人1388/年，需要的童鞋可以联系我，QQ：61276362 空间大小：80G 流量：200G 建站数量：待定（童鞋们一起商量啊） E5500/2G/WD RE4企业级硬盘（免费升级4G） 每人费用为1388 演示站：http://www.vosent.com/hezu/ 参团的限制：正规网站且网站要有备案。因为你知道现在国内的备案很麻烦很麻烦~~ 更新：空余名额两个]]></description>
			<content:encoded><![CDATA[<p>国内多线PHP主机5人合租，E5500的配置，每人1388/年，需要的童鞋可以联系我，QQ：61276362</p>
<p>空间大小：80G<br />
流量：200G<br />
建站数量：待定（童鞋们一起商量啊）<br />
E5500/2G/WD RE4企业级硬盘（免费升级4G）<br />
每人费用为1388</p>
<p>演示站：<a href="http://www.vosent.com/hezu/" target="_blank">http://www.vosent.com/hezu/</a></p>
<p><span style="color: #800000;"><strong>参团的限制：正规网站且网站要有备案。</strong></span>因为你知道现在国内的备案很麻烦很麻烦~~</p>
<p><span style="color: #008000;"><strong>更新：空余名额两个</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enjoyeasy.com.cn/blog/bgp-php-host/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

