<?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>GBServers - UK VPS and Dedicated Servers &#187; network status</title>
	<atom:link href="http://www.gbservers.co.uk/blog/tag/network-status/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gbservers.co.uk/blog</link>
	<description></description>
	<lastBuildDate>Fri, 31 Dec 2010 14:32:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Helpful network/system utilities</title>
		<link>http://www.gbservers.co.uk/blog/servers/helpful-networksystem-utilities/</link>
		<comments>http://www.gbservers.co.uk/blog/servers/helpful-networksystem-utilities/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 17:56:39 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[cheap vps]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[network monitoring]]></category>
		<category><![CDATA[network status]]></category>
		<category><![CDATA[vps hosting]]></category>

		<guid isPermaLink="false">http://www.gbservers.co.uk/blog/?p=205</guid>
		<description><![CDATA[In this article I will explain a few common and useful utilities for network and operating systems in general. Netstat The main purpose of netstat is to give a quick general overview of the connections the system is using. Plus information such as, the protocol typically TCP/UDP or the current status state. Open a DOS [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I will explain a few common and useful utilities for network and operating systems in general.</p>
<p><strong> Netstat</strong></p>
<p>The main purpose of netstat is to give a quick general overview of the connections the system is using. Plus information such as, the protocol typically TCP/UDP or the current status state.</p>
<p>Open a DOS prompt {start-run-cmd}. Then type “netstat” you’ll see output like the following</p>
<p><a href="http://www.gbservers.co.uk/blog/wp-content/uploads/2010/11/netstat1.jpg"><img class="alignnone size-medium wp-image-199" src="http://www.gbservers.co.uk/blog/wp-content/uploads/2010/11/netstat1-300x103.jpg" alt="" width="300" height="103" /></a></p>
<p><span id="more-205"></span>You can further specify the output by using different flags. Filtering by either TCP or UDP are common. The syntax may differ slightly depending on the operating system. For example on my OS X system it’s: netstat –p tcp</p>
<p><a href="http://www.gbservers.co.uk/blog/wp-content/uploads/2010/11/tcp1.jpg"><img class="alignnone size-medium wp-image-200" src="http://www.gbservers.co.uk/blog/wp-content/uploads/2010/11/tcp1-300x282.jpg" alt="" width="300" height="282" /></a></p>
<p>The various connection states are:</p>
<p>ESTABLISHED &#8211; Both hosts are connected.</p>
<p>CLOSING &#8211; The remote host has agreed to close its connection.</p>
<p>LISTENING &#8211; Your computer is waiting to handle an incoming connection.</p>
<p>SYN_RCVD &#8211; A remote host has asked for you to start a connection.</p>
<p>SYN_SENT &#8211; Your computer has accepted to start a connection.</p>
<p>LAST_ACK &#8211; Your computer needs to obliterate the packets before closing the connection.</p>
<p>TIMED_WAIT &#8211; See above.</p>
<p>CLOSE_WAIT &#8211; The remote host is closing its connection with your computer.</p>
<p>FIN_WAIT 1 &#8211; A client is closing its connection.</p>
<p>FIN_WAIT 2 &#8211; Both hosts have agreed to close the connection.</p>
<p>To view the complete list of flags supported by netstat. On Windows type: “netstat /?”. Under Linux/OSX you can use “man netstat” which gives a detailed description of all the options.</p>
<p>It is also very useful for checking for any possible undesired programs or viruses that you might suspect. Typically they will try to establish out going connections.</p>
<p><strong>TOP command</strong></p>
<p><strong><span style="text-decoration: underline;"> </span></strong></p>
<p>The TOP command is native to unix type operating systems such as Linux and OS X. It shows all the processes currently running</p>
<p><a href="http://www.gbservers.co.uk/blog/wp-content/uploads/2010/11/TOP1.jpg"><img class="alignnone size-full wp-image-201" src="http://www.gbservers.co.uk/blog/wp-content/uploads/2010/11/TOP1.jpg" alt="" width="270" height="121" /></a></p>
<p>To sort by memory usage: press M</p>
<p>You can filter processes for a specific user by using the –u flag. i.e: $ top –u root</p>
<p>One of my most used flags is the –k (or kill). This is very useful for terminating a program or process that has locked up or otherwise won’t close by normal means.</p>
<p>Once you’ve located a process that needs to be killed, press ‘k’ which will ask for the process id, and signal to send.  Note: some kill processes by not be successful, unless you have proper permission to. Such as under the root/super user account</p>
<p><strong>PID to kill: 1309 Kill PID 1309 with signal [15]: </strong> PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND  1309 geek   23   0 2483m 1.7g  27m S    0 21.8  45:31.32 gagent  1882 geek   25   0 2485m 1.7g  26m S    0 21.7  22:38.97 gagent  5136 root    16   0 38040  14m 9836 S    0  0.2   0:00.39 nautilus</p>
<p>There are many flags that can be used under TOP. Which can be fully covered in-depth with a single article. I would encourage you to look through the manual “man top” or with a Google search.</p>
<p>Until next time I hope you may find this article informative.</p>
<img src="http://www.gbservers.co.uk/blog/wp-content/plugins/pixelstats/trackingpixel.php?post_id=205&amp;ts=1328436179" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://www.gbservers.co.uk/blog/servers/helpful-networksystem-utilities/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Follow us on Twitter</title>
		<link>http://www.gbservers.co.uk/blog/company/follow-us-on-twitter/</link>
		<comments>http://www.gbservers.co.uk/blog/company/follow-us-on-twitter/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 21:01:25 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Company]]></category>
		<category><![CDATA[News & Updates]]></category>
		<category><![CDATA[GBServers]]></category>
		<category><![CDATA[network status]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.gbservers.co.uk/blog/?p=36</guid>
		<description><![CDATA[Myself and Dan have recently created a Twitter page and started tweeting on behalf of GBServers Ltd. Our Twitter page is now the best place to keep up to date with the latest promotions, service updates and general day-to-day gossip. As from yesterday, we will now be providing truely real-time network status updates via Twitter [...]]]></description>
			<content:encoded><![CDATA[<p>Myself and Dan have recently created a <a href="http://www.twitter.com/gbservers" target="_blank">Twitter page</a> and started tweeting on behalf of GBServers Ltd. Our Twitter page is now the best place to keep up to date with the latest promotions, service updates and general day-to-day gossip.</p>
<p>As from yesterday, we will now be providing truely real-time network status updates via Twitter also, we have updated our existing Network Status system to show our latest Twitter feed and links to our Twitter page and network status archive (for resolved network downtime). You can find our new network status page at <a href="http://gbclients.co.uk/network_status.php" target="_blank">http://gbclients.co.uk/network_status.php</a>.</p>
<img src="http://www.gbservers.co.uk/blog/wp-content/plugins/pixelstats/trackingpixel.php?post_id=36&amp;ts=1328436179" style="display:none;" alt="pixelstats trackingpixel"/>]]></content:encoded>
			<wfw:commentRss>http://www.gbservers.co.uk/blog/company/follow-us-on-twitter/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

