<?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>Pace Solutions Blog &#187; PHP</title>
	<atom:link href="http://www.pacesol.com/blog/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pacesol.com/blog</link>
	<description>Web 2.0, e-Commerce, Joomla, WordPress, Facebook Applications, Drupal, Open Source, CMS, PHP, MySQL, AJAX</description>
	<lastBuildDate>Fri, 06 Jan 2012 08:45:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to check DDOS Attack on Server</title>
		<link>http://www.pacesol.com/blog/how-to-check-ddos-attack-on-server.html</link>
		<comments>http://www.pacesol.com/blog/how-to-check-ddos-attack-on-server.html#comments</comments>
		<pubDate>Sat, 04 Jul 2009 16:03:58 +0000</pubDate>
		<dc:creator>Pace Solutions</dc:creator>
				<category><![CDATA[Dedicated Servers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux server]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php development]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.pacesol.com/blog/2009/07/how-to-check-ddos-attack-on-server/</guid>
		<description><![CDATA[Tweet A quick and useful command for checking if a server is under DDOS: This will list the IPs taking the most amounts of connections to a server. To check active connections that are open to your server, if this number is more then 800 then you might be having an attack To check against [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.pacesol.com%2Fblog%2Fhow-to-check-ddos-attack-on-server.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.pacesol.com/blog/how-to-check-ddos-attack-on-server.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.pacesol.com/blog/how-to-check-ddos-attack-on-server.html"  data-text="How to check DDOS Attack on Server" data-count="horizontal" data-via="pacesol">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.pacesol.com/blog/how-to-check-ddos-attack-on-server.html" data-counter="right"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>A quick and useful command for checking if a server is under DDOS:</p>
<pre class="brush: bash; title: ; notranslate">netstat -anp |grep 'tcp\|udp' | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n</pre>
<p>This will list the IPs taking the most amounts of connections to a server.</p>
<p>To check active connections that are open to your server, if this number is more then 800 then you might be having an attack</p>
<pre class="brush: bash; title: ; notranslate">netstat -n | grep :80 |wc -l</pre>
<p>To check against SYN attacks, this number should not be more then 100.</p>
<pre class="brush: bash; title: ; notranslate">netstat -n | grep :80 | grep SYN |wc -l</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.pacesol.com/blog/how-to-check-ddos-attack-on-server.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

