<?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>gHacks technology news &#187; Network Monitoring</title>
	<atom:link href="http://www.ghacks.net/tag/network-monitoring/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 16:29:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Let Munin monitor your servers and network</title>
		<link>http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/</link>
		<comments>http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 19:50:59 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[system monitoring]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[web monitoring]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=18152</guid>
		<description><![CDATA[If you are looking for an easy to install, configure, and use systems monitor, look no further. The Munin is a network/systems monitor that presents all its data is easy to read graphs. Munin is setup as a server/client (or node) which makes this system very flexible. Munin also offers an extensive plugins library that [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for an easy to install, configure, and use systems monitor, look no further. The Munin is a network/systems monitor that presents all its data is easy to read graphs. Munin is setup as a server/client (or node) which makes this system very flexible. Munin also offers an extensive plugins library that extends that flexibility to include the monitoring of many various systems and even applications.</p>
<p>And what&#8217;s best is you don&#8217;t have to jump through a bunch of hoops to get munin up and running. In this tutorial you will see how to get your Munin server up and running and monitoring your system and a sample client configuration that will monitor a client node. As you might expect, I will continue to build upon the Ubuntu Server series and install Munin on a Ubuntu 9.04 installation. NOTE: This same installation will work on Ubuntu 9.10 as well.<span id="more-18152"></span><strong>Server installation/configuration</strong></p>
<p>Installing Munin on the Ubunter server is simple. Open up a terminal window (or log into your server console) and issue the command:</p>
<p><em>sudo apt-get install munin </em></p>
<p>The above command will also install <em>munin-node</em> which is the client-side software. This is fine, so let it happen. Upon installation Munin will install the configuration files in <strong>/etc/munin,</strong> the executable in <strong>/etc/init.d/, </strong>and the web files in <strong>/var/www/munin</strong>.</p>
<p>The first thing that will need to be done is to configure your server correctly. Open up the <strong>/etc/munin/munin.conf</strong> file and look for this section:</p>
<p><code>dbdir     /var/lib/munin<br />
htmldir    /var/www/munin/<br />
logdir     /var/log/munin<br />
rundir     /var/run/munin</code></p>
<p>Out of the box, this will work just fine.  But if you have any other needs that would dictate any of these directives change, change them here.</p>
<p>The next section to look for is this:</p>
<p><code># a simple host tree<br />
[localhost.localdomain]<br />
address 127.0.0.1<br />
use_node_name yes</code></p>
<p>What the above section does is monitor the server Munin is installed on. This configuration only needs to change if you have specific requirements. Also, if you need to add a client (node), this is where you add it.</p>
<p>In order to instruct Munin to monitor a remote machine you need to add a new host tree. Say, for instance, you want to monitor a machine on the IP addres 192.168.1.150. To do this you would add:</p>
<p><code>[MACHINE NAME]<br />
address 192.168.1.150<br />
use_node_name yes</code></p>
<p>Where MACHINE NAME is a name to indicate the job (or user, or department, etc) of the machine.</p>
<p>Once you have these configurations and save the file. Now to move on to the <strong>/etc/munin/munin-node.conf</strong> file. There is only one configuration you would need to add in order to monitor nodes. Look for this line:</p>
<p><em>allow ^127\.0\.0\.1$</em></p>
<p>Beneath this line you will want to add (in order to enable our new node):</p>
<p><em>allow ^192\.168\.1\.1$</em></p>
<p>Save this file and restart the Munin server with the command:</p>
<p><em>/etc/init.d/munin restart</em></p>
<p><strong>Installing for client</strong></p>
<p>All you need to do for your client is to install the <em>munin-node</em> package. To do this issue the command:</p>
<p><em>sudo apt-get install munin-node</em></p>
<p>On the client machine. Now start munin-node with the command:</p>
<p><em>sudo /etc/init.d/munin-node start</em></p>
<p>Munin will begin to monitor this client now.</p>
<p><strong>The graphs</strong></p>
<p>When all is up and running, point your browser to http://ADDRESS_TO_SERVER/munin/</p>
<div id="attachment_18157" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-18157" href="http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/munin_overview/"><img class="size-thumbnail wp-image-18157 " src="http://www.ghacks.net/wp-content/uploads/2009/11/munin_overview-300x245.png" alt="Figure 1" width="180" height="147" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>Where ADDRESS_TO_SERVER is the actual address of the server. Very shortly after you install Munin you may only see a listing of the nodes being watched (see Figure 1). This is okay, it will take some time before data is actually collected.</p>
<p>After a while you will notice data collected and graphs developing. If you click on the <strong>localhost.localdomain</strong> link you will see data beginning to collect (see Figure 2).</p>
<p><strong> </strong></p>
<p><strong></p>
<div id="attachment_18158" class="wp-caption alignright" style="width: 310px"><a rel="attachment wp-att-18158" href="http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/munin_early_data/"><img class="size-thumbnail wp-image-18158" src="http://www.ghacks.net/wp-content/uploads/2009/11/munin_early_data-300x300.png" alt="Figure 2" width="300" height="300" /></a><p class="wp-caption-text">Figure 2</p></div>
<p>Final thoughts</strong></p>
<p>Munin is a very powerful tool that allows you to gather crucial data about your systems and networks. Now that you have Munin installed and running you can begin to extend the server by adding more and more clients as well as plugins. You will quickly find Munin to be a very valuable tool for data analysis on your various systems and networks.</p>

	Tags: <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/system-monitoring/" title="system monitoring" rel="tag">system monitoring</a>, <a href="http://www.ghacks.net/tag/ubuntu/" title="ubuntu" rel="tag">ubuntu</a>, <a href="http://www.ghacks.net/tag/web-monitoring/" title="web monitoring" rel="tag">web monitoring</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/" title="How to install Nagios on Ubuntu server (June 8, 2009)">How to install Nagios on Ubuntu server</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
	<li><a href="http://www.ghacks.net/2009/04/02/which-ubuntu-derivative-is-right-for-you/" title="Which Ubuntu Derivative Is Right For You? (April 2, 2009)">Which Ubuntu Derivative Is Right For You?</a> (16)</li>
	<li><a href="http://www.ghacks.net/2009/10/06/what-makes-ubuntu-so-user-friendly/" title="What makes Ubuntu so user friendly? (October 6, 2009)">What makes Ubuntu so user friendly?</a> (47)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/11/05/let-munin-monitor-your-servers-and-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network Monitoring Software Networx 5 Released</title>
		<link>http://www.ghacks.net/2009/08/04/network-monitoring-software-networx-5-released/</link>
		<comments>http://www.ghacks.net/2009/08/04/network-monitoring-software-networx-5-released/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 07:43:25 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[bandwidth monitoring]]></category>
		<category><![CDATA[monitor network]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[network adapter]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[Network Monitoring Software]]></category>
		<category><![CDATA[networx]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=15020</guid>
		<description><![CDATA[Our review of Networx 4 dates back to October of last year (see Network Monitoring Software NetWorx). The developer of the network monitoring software was busy between then and now and released regular updates to the monitoring software. Yesterday version 5 of Networx was released and the version bump gave us the excuse to take [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/microsoft_windows.jpg" alt="microsoft windows" title="microsoft windows" width="128" height="128" class="alignleft size-full wp-image-11907" />Our review of Networx 4 dates back to October of last year (see <a href="http://www.ghacks.net/2008/10/04/network-monitoring-software-networx/">Network Monitoring Software NetWorx</a>). The developer of the <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">network monitoring software</a> was busy between then and now and released regular updates to the monitoring software. Yesterday version 5 of Networx was released and the version bump gave us the excuse to take another look at the software program.</p>
<p>Networx offers several network and bandwidth related tools in its interface. It will place an icon in the Windows system tray after download that will open a bandwidth monitor on left-click and the context menu with all the available modules on a right-click.</p>
<p><span id="more-15020"></span>The bandwidth monitor will display useful information about the bandwidth consumption of the computer system including daily, weekly and monthly reports, an overview of today&#8217;s bandwidth consumption, custom bandwidth reports, dial up sessions and hourly rates. Data can be exported and backed up among other things. This module gives the system administrator a quick overview of the bandwidth consumption of the computer system.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/08/bandwidth_monitor-500x382.jpg" alt="bandwidth monitor" title="bandwidth monitor" width="500" height="382" class="alignnone size-medium wp-image-15021" /></p>
<p>Networx offers additional modules that aid in the <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">network monitoring</a> process. This includes a speedmeter which can measure the network&#8217;s (or network devices) throughput. The tool is basically a speed test that will monitor the current network traffic and display the current, average and maximum transfer rates.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/08/speed_meter.jpg" alt="speed meter" title="speed meter" width="416" height="257" class="alignnone size-full wp-image-15022" /></p>
<p>It is furthermore possible to setup a bandwidth quota and trigger alerts if 80% of that quota has been used. It is also possible to configure the quota to only cover upload or download bandwidth and set it to be a daily, weekly or monthly quota.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/08/bandwidth_quota-500x287.jpg" alt="bandwidth quota" title="bandwidth quota" width="500" height="287" class="alignnone size-medium wp-image-15023" /></p>
<p>Ping, traceroute and netstat commands are available from the context menu of the network monitoring software as well. The options are quite extensive and allow the user to select an individual networking adapter to be monitored, configure notifications or define on and off peak hours.</p>
<p><a href="http://www.softperfect.com/products/networx/">Networx</a> might not be the most sophisticated network monitoring software but it proves to be a nice solution for single computer systems.</p>

	Tags: <a href="http://www.ghacks.net/tag/bandwidth/" title="bandwidth" rel="tag">bandwidth</a>, <a href="http://www.ghacks.net/tag/bandwidth-monitoring/" title="bandwidth monitoring" rel="tag">bandwidth monitoring</a>, <a href="http://www.ghacks.net/tag/monitor-network/" title="monitor network" rel="tag">monitor network</a>, <a href="http://www.ghacks.net/tag/network/" title="network" rel="tag">network</a>, <a href="http://www.ghacks.net/tag/network-adapter/" title="network adapter" rel="tag">network adapter</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/network-monitoring-software/" title="Network Monitoring Software" rel="tag">Network Monitoring Software</a>, <a href="http://www.ghacks.net/tag/networx/" title="networx" rel="tag">networx</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/10/04/network-monitoring-software-networx/" title="Network Monitoring Software NetWorx (October 4, 2008)">Network Monitoring Software NetWorx</a> (12)</li>
	<li><a href="http://www.ghacks.net/2009/03/01/network-monitoring-software-newt/" title="Network Monitoring Software Newt (March 1, 2009)">Network Monitoring Software Newt</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/08/11/network-monitoring-software-looklan/" title="Network Monitoring Software Look@Lan (August 11, 2008)">Network Monitoring Software Look@Lan</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/06/06/remote-server-monitoring-software-dreamsys-server-monitor/" title="Remote Server Monitoring Software DreamSys Server Monitor (June 6, 2009)">Remote Server Monitoring Software DreamSys Server Monitor</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/06/12/online-network-troubleshooting-analyzer-netalyzr/" title="Online Network Troubleshooting Analyzer Netalyzr (June 12, 2009)">Online Network Troubleshooting Analyzer Netalyzr</a> (29)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/08/04/network-monitoring-software-networx-5-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Database Monitoring Software Db2rss</title>
		<link>http://www.ghacks.net/2009/07/30/database-monitoring-software-db2rss/</link>
		<comments>http://www.ghacks.net/2009/07/30/database-monitoring-software-db2rss/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 12:18:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[blackfish sql]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[database monitoring]]></category>
		<category><![CDATA[db2rss]]></category>
		<category><![CDATA[interbase]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql database]]></category>
		<category><![CDATA[Network Monitoring]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=14903</guid>
		<description><![CDATA[Database monitoring is not only important for businesses who want to monitor their online and offline services and applications but also for individuals. Webmasters who make use of databases like MySQL need to make sure that the databases are up and running and the best way to ensure that is to monitor them 24/7. Quite [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/microsoft_windows.jpg" alt="microsoft windows" title="microsoft windows" width="128" height="128" class="alignleft size-full wp-image-11907" />Database monitoring is not only important for businesses who want to monitor their online and offline services and applications but also for individuals. Webmasters who make use of databases like MySQL need to make sure that the databases are up and running and the best way to ensure that is to monitor them 24/7. Quite a few monitoring services exist. It is possible to use online services &#8211; most of them paid depending on the quality and quantity of monitoring &#8211; but also services that run on a local PC.</p>
<p>We have dealt with several services in the past including the <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">network monitoring software</a> Open Monitor or the online service <a href="http://www.ghacks.net/2008/07/19/monitor-your-servers-with-livewatch/">Livewatch</a>.</p>
<p><span id="more-14903"></span>The database monitoring software dv2rss is different from these solutions. The main difference is that it can &#8211; as the title implies &#8211; monitor databases but also because it can only be run from the command line or a script. That&#8217;s not as bad as it sounds and it could be welcome in certain situations where no graphical user interface is needed or wanted.</p>
<p><a href="http://www.be-precision.com/products/precision-utils/#db2rss">Db2rss</a> supports MySQL, Interbase and Blackfish SQL databases at the moment and can monitor them in a computer network or on the Internet. It comes with several command line parameters that define important information such as the database&#8217;s host name, the username and password. There are quite a few additional parameter that include running an SQL command on the database, comparing the results to a local copy and defining templates and title of the resulting RSS feed. The RSS feed is another aspect of this database monitoring software that is usually not found in other monitoring software programs. </p>
<p>It is then possible to subscribe to the RSS feed to receive the database monitoring information after the script&#8217;s execution. The software developer suggests to use the Windows task scheduler to run the database monitoring software regularly.</p>

	Tags: <a href="http://www.ghacks.net/tag/blackfish-sql/" title="blackfish sql" rel="tag">blackfish sql</a>, <a href="http://www.ghacks.net/tag/database/" title="database" rel="tag">database</a>, <a href="http://www.ghacks.net/tag/database-monitoring/" title="database monitoring" rel="tag">database monitoring</a>, <a href="http://www.ghacks.net/tag/db2rss/" title="db2rss" rel="tag">db2rss</a>, <a href="http://www.ghacks.net/tag/interbase/" title="interbase" rel="tag">interbase</a>, <a href="http://www.ghacks.net/tag/mysql/" title="mysql" rel="tag">mysql</a>, <a href="http://www.ghacks.net/tag/mysql-database/" title="mysql database" rel="tag">mysql database</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/01/12/backup-mysql-databases-in-linux-regularly/" title="Backup MySQL Databases In Linux Regularly (January 12, 2009)">Backup MySQL Databases In Linux Regularly</a> (11)</li>
	<li><a href="http://www.ghacks.net/2009/04/09/set-up-mysql-database-replication/" title="Set up MySQL database replication (April 9, 2009)">Set up MySQL database replication</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/12/20/install-phpmyadmin-for-easy-mysql-administration/" title="Install phpmyadmin for easy MySQL administration (December 20, 2008)">Install phpmyadmin for easy MySQL administration</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/11/05/have-wordpress-back-ups-emailed/" title="Have WordPress back-ups emailed (November 5, 2008)">Have WordPress back-ups emailed</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/11/10/basic-postgresql-server-setup/" title="Basic postgresql server setup (November 10, 2009)">Basic postgresql server setup</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/07/30/database-monitoring-software-db2rss/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Online Network Troubleshooting Analyzer Netalyzr</title>
		<link>http://www.ghacks.net/2009/06/12/online-network-troubleshooting-analyzer-netalyzr/</link>
		<comments>http://www.ghacks.net/2009/06/12/online-network-troubleshooting-analyzer-netalyzr/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 17:42:19 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[netalyzr]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[network troubleshooting]]></category>
		<category><![CDATA[network troubleshooting analyzer]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13516</guid>
		<description><![CDATA[Network Troubleshooting can be one of the most frustrating tasks especially for the average computer user. There is always the question where to start the troubleshooting process. The Windows operating system comes with troubleshooting wizards that usually do not help at all except for the most basic of troubles that users can run into. But [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/network_troubleshooting.jpg" alt="network troubleshooting" title="network troubleshooting" width="198" height="34" class="alignleft size-full wp-image-13517" />Network Troubleshooting can be one of the most frustrating tasks especially for the average computer user. There is always the question where to start the troubleshooting process. The Windows operating system comes with troubleshooting wizards that usually do not help at all except for the most basic of troubles that users can run into. But problems in the form of forgetting to plug in the network cable are not as common as slow or corrupt downloads, page loading errors or Internet connection drops. Those on the other hand are much harder to come by and troubleshoot.</p>
<p><span id="more-13516"></span>The <a href="http://netalyzr.icsi.berkeley.edu">ICSI Netalyzr</a> is a new beta online network troubleshooting analyzer that can analyze various aspects of a computer&#8217;s network connection. It is made up of a Java applet that has to be executed on the user&#8217;s system. The benefits of a Java Applet are that it is system independent and that it can access and analyze the computer&#8217;s hardware and other aspects of the computer system.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/network_troubleshooting_analysis-500x321.jpg" alt="network troubleshooting analysis" title="network troubleshooting analysis" width="500" height="321" class="alignnone size-medium wp-image-13518" /></p>
<p>The analysis will take a while and an in depth network troubleshooting report will be generated and presented to the user in the end.</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/online_network_troubleshooting-500x483.jpg" alt="online network troubleshooting" title="online network troubleshooting" width="500" height="483" class="alignnone size-medium wp-image-13519" /></p>
<p>The network troubleshooting report is divided into two sections. The first reports on noteworthy events and is further divided into major abnormalities and minor aberrations. The second section displays the detailed network troubleshooting report that is colored for easier access. Entries with red backgrounds describe network problems while green backgrounds display unproblematic network elements.</p>
<p>Each title in the report is clickable leading to a short explanation of how the tests are conducted. Related articles can be found about <a href="http://www.ghacks.net/2008/09/21/save-network-bandwidth/">Network Bandwidth</a> and <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">Network Monitoring Software</a>.</p>

	Tags: <a href="http://www.ghacks.net/tag/netalyzr/" title="netalyzr" rel="tag">netalyzr</a>, <a href="http://www.ghacks.net/tag/network/" title="network" rel="tag">network</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/network-troubleshooting/" title="network troubleshooting" rel="tag">network troubleshooting</a>, <a href="http://www.ghacks.net/tag/network-troubleshooting-analyzer/" title="network troubleshooting analyzer" rel="tag">network troubleshooting analyzer</a>, <a href="http://www.ghacks.net/tag/pc/" title="pc" rel="tag">pc</a>, <a href="http://www.ghacks.net/tag/troubleshooting/" title="troubleshooting" rel="tag">troubleshooting</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2005/11/06/who-is-connected-to-your-pc-right-now/" title="Who is connected to your pc right now ? (November 6, 2005)">Who is connected to your pc right now ?</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/03/01/network-monitoring-software-newt/" title="Network Monitoring Software Newt (March 1, 2009)">Network Monitoring Software Newt</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/08/04/network-monitoring-software-networx-5-released/" title="Network Monitoring Software Networx 5 Released (August 4, 2009)">Network Monitoring Software Networx 5 Released</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/10/04/network-monitoring-software-networx/" title="Network Monitoring Software NetWorx (October 4, 2008)">Network Monitoring Software NetWorx</a> (12)</li>
	<li><a href="http://www.ghacks.net/2008/08/11/network-monitoring-software-looklan/" title="Network Monitoring Software Look@Lan (August 11, 2008)">Network Monitoring Software Look@Lan</a> (7)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/12/online-network-troubleshooting-analyzer-netalyzr/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Website Monitoring Software</title>
		<link>http://www.ghacks.net/2009/04/17/website-monitoring-software/</link>
		<comments>http://www.ghacks.net/2009/04/17/website-monitoring-software/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 09:58:15 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[database monitor]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[server monitoring]]></category>
		<category><![CDATA[webmasters]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[website monitoring]]></category>
		<category><![CDATA[website monitoring software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/17/website-monitoring-software/</guid>
		<description><![CDATA[It is essential for webmasters and system administrators to monitor their websites and networks to be able to react as soon as possible if all or part of it goes down. That&#8217;s especially true for professionals who earn their living with their websites. A possibility are commercial services that notify the webmaster as soon as [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/website_monitoring_software.jpg" alt="website monitoring software" title="website monitoring software" width="232" height="51" class="alignleft size-full wp-image-12089" />It is essential for webmasters and system administrators to monitor their websites and networks to be able to react as soon as possible if all or part of it goes down. That&#8217;s especially true for professionals who earn their living with their websites. A possibility are commercial services that notify the webmaster as soon as a website becomes unreachable. Ghacks is monitored round the clock by <a href="http://www.ghacks.net/2008/07/19/monitor-your-servers-with-livewatch/">Livewatch</a> which will automatically send an SMS or email when a server or website goes down. </p>
<p><span id="more-12090"></span>Not everyone wants to pay to monitor websites though. The free portable software program SiteMonitor provides a local solution for the Windows operating system. It requires the Microsoft .net Framework 2.0 and can be configured to monitor selected websites and notify the user if they become unreachable. It is a good alternative as long as it is run on a computer system that is online 24/7.</p>
<p>New urls can be added easily to <a href="http://www.iannet.org/apps/SiteMonitor/">SiteMonitor</a>. All that it takes is to add a descriptive name, an url and HTML to match which is simply content that should appear on the website. The website monitoring software will check every 30 minutes by default; To much for important websites. The interval can be changed in the options. The options are also the place where the notification preferences can be edited. The website monitor provides two different types of reactions to website connection problems:</p>
<ul>
<li>Run a script or executable, e.g. a script that will restart a server or service</li>
<li>Send email to notify a user about the connection problem</li>
</ul>
<p>The amount of failures before either one of the reactions will be initiated can be configured in the same menu as well. </p>
<p>Below is the small php script that we use to check if the database is up and running on Ghacks:</p>
<p><code>&lt;?php<br />
$dbhost = 'localhost';<br />
$dbuser = 'username';<br />
$dbpass = 'password';</p>
<p>$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die                      ('Error');</p>
<p>$dbname = 'databasename';<br />
mysql_select_db($dbname);</p>
<p>if ($conn) {echo &quot;ok&quot;;}<br />
else {echo &quot;error&quot;;}</p>
<p>?&gt;</code></p>
<p>replace username with the database username, password with the password of the username and databasename with the name of the database. Save it as database.php, upload it to your website and load the new file. It should display ok if the database is up and error if it is down. The url that points to the script can then be added to the website monitoring software to check if it returns ok. If it does the website is up, if it does not it is down.</p>
<p>Alternatives are the <a href="http://www.ghacks.net/2009/03/24/website-monitor-and-downloader/">Website Monitor and Downloader</a> Wysigot, <a href="http://www.ghacks.net/2007/05/03/monitor-your-website-with-montastic/">Montastic</a> or the <a href="http://www.ghacks.net/2008/08/13/server-monitoring-with-observu/">Server Monitor</a> Observu.</p>

	Tags: <a href="http://www.ghacks.net/tag/database-monitor/" title="database monitor" rel="tag">database monitor</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/server-monitoring/" title="server monitoring" rel="tag">server monitoring</a>, <a href="http://www.ghacks.net/tag/webmasters/" title="webmasters" rel="tag">webmasters</a>, <a href="http://www.ghacks.net/tag/website/" title="website" rel="tag">website</a>, <a href="http://www.ghacks.net/tag/website-monitoring/" title="website monitoring" rel="tag">website monitoring</a>, <a href="http://www.ghacks.net/tag/website-monitoring-software/" title="website monitoring software" rel="tag">website monitoring software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/05/website-value-calculator-stimator/" title="Website Value Calculator Stimator (April 5, 2009)">Website Value Calculator Stimator</a> (27)</li>
	<li><a href="http://www.ghacks.net/2008/08/25/website-value-calculator-cubestat/" title="Website Value Calculator Cubestat (August 25, 2008)">Website Value Calculator Cubestat</a> (15)</li>
	<li><a href="http://www.ghacks.net/2008/08/13/server-monitoring-with-observu/" title="Server Monitoring With Observu (August 13, 2008)">Server Monitoring With Observu</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/05/21/server-monitoring-software-it-service-view/" title="Server Monitoring Software IT Service View (May 21, 2009)">Server Monitoring Software IT Service View</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/09/07/monitor-website-changes/" title="5 Tools To Monitor Website Changes (September 7, 2009)">5 Tools To Monitor Website Changes</a> (14)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/17/website-monitoring-software/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Gather Wireless Information with Wavemon</title>
		<link>http://www.ghacks.net/2009/03/31/gather-wireless-information-with-wavemon/</link>
		<comments>http://www.ghacks.net/2009/03/31/gather-wireless-information-with-wavemon/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 18:42:11 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[ncurses]]></category>
		<category><![CDATA[network monitor]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[network scanning]]></category>
		<category><![CDATA[wireless-network]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=11572</guid>
		<description><![CDATA[If you&#8217;re like me you like to have as much information as you can about whatever it is you are doing. Wireless access is no exception. When using wireless so many things can go wrong. You can have a weak signal, too much noise, strange frequency variations, and many other issues. Without the tools to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me you like to have as much information as you can about whatever it is you are doing. Wireless access is no exception. When using wireless so many things can go wrong. You can have a weak signal, too much noise, strange frequency variations, and many other issues. Without the tools to find these issues you may never know what is keeping you from getting the speeds you should be getting.</p>
<p>The <a title="Wavemon" href="http://eden-feed.erg.abdn.ac.uk/wavemon/" target="_blank">wavemon</a> tool is a very handy tool to have in your arsenal that will help you gather information you might not otherwise have. With wavemon you can see Signal levels, Noise levels, Signal to noise ratios, frequencies, TX power, sensitivity (if available), bitrate, and so much more.</p>
<p><span id="more-11572"></span>One of the only issues that might turn you off of wavemon is that it is an NCurses tool. This means the tool is run in a terminal window (I have found it runs best under Eterm) and uses ASCII to create the information it offers. Don&#8217;t let this cause you not to want to use wavemon because it is a very useful tool.</p>
<p><strong>Getting and Installing</strong></p>
<p>Wavemon is downloaded and installed from source. Download the tarball from the <a title="Wavemon download" href="http://eden-feed.erg.abdn.ac.uk/wavemon/wavemon-current.tar.bz2" target="_blank">Wavemon site</a> and save it to your hard drive. The installation steps are simple:</p>
<ul>
<li>decompress wavemon with the command <em>bunzip2 xvzf wavemon-current.tar.bz2</em></li>
<li>untar the archive with the command <em>tar xvf wavemon-current.tar</em></li>
<li>cd into the newly created directory with <em>cd wavemon-current</em></li>
<li>generate the make file will <em>./configure</em></li>
<li>install wavemon with <em>make ; make install</em></li>
<li>start wavemon with the command <em>wavemon</em></li>
</ul>
<div id="attachment_11580" class="wp-caption alignleft" style="width: 310px"><a href="http://www.ghacks.net/wp-content/uploads/2009/03/wavemon_main1.png"><img class="size-medium wp-image-11580" src="http://www.ghacks.net/wp-content/uploads/2009/03/wavemon_main1-500x360.png" alt="Wavemon Info Window" width="300" height="216" /></a><p class="wp-caption-text">Wavemon Info Window</p></div>
<p>As you can see, in the image on the left, the Wavemon info window offers a lot of information.</p>
<p>At the bottom of the screen you will notice there are 10 possible options (of which some have no entries). Each of these options are different screens you can view.</p>
<p>The list of windows is:</p>
<ul>
<li>F1: Info. This is the main window that opens upon start up. This is where you get most of the information from wavemon.</li>
<li>F2: Level Histogram. This displays a real-time bar-graph of Signal level, Noise level, and Signal-to-Noise Ratio.</li>
<li>F3: Access point list. This feature has not been implemented yet.</li>
<li>F7: Preferences. Configure Wavemon.</li>
<li>F8: Help. Like a lot of Linux applications, wavemon shows the developer has a sense of humor. When you hit F8 for help it displays the message &#8220;don&#8217;t panic&#8221;. That&#8217;s it. There is more help by reading the man page (issue the command <em>man wavemon</em>).</li>
<li>F9: About. Get all the information you need about the current wavemon release.</li>
<li>F10: Quit.</li>
</ul>
<p>You can also start wavemon with a few handy options. Those options are:</p>
<ul>
<li>-i This will override auto detection and use a specified network interface.</li>
<li>-l Use linear level scales instead of logarithmic scales.</li>
<li>-r Generate random levels for testing.</li>
</ul>
<p><strong>Final thoughts</strong></p>
<p>If you need more information than your standard networking tools offer, and do not want to dump any extra cash into a third party offering, wavemon is just the tool for those looking to know everything there is to know about their networks. It&#8217;s easy to use, offers a ton of information, is open source, and has a tiny foot print.</p>

	Tags: <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/monitor/" title="monitor" rel="tag">monitor</a>, <a href="http://www.ghacks.net/tag/ncurses/" title="ncurses" rel="tag">ncurses</a>, <a href="http://www.ghacks.net/tag/network-monitor/" title="network monitor" rel="tag">network monitor</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/network-scanning/" title="network scanning" rel="tag">network scanning</a>, <a href="http://www.ghacks.net/tag/wireless-network/" title="wireless-network" rel="tag">wireless-network</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/01/23/monitor-your-network-the-open-source-way-with-etherape/" title="Monitor your Network the Open Source way with Etherape (January 23, 2009)">Monitor your Network the Open Source way with Etherape</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/12/22/installing-linux-applications-with-aptitude/" title="Installing Linux applications with Aptitude (December 22, 2008)">Installing Linux applications with Aptitude</a> (12)</li>
	<li><a href="http://www.ghacks.net/2008/12/18/connecting-to-wireless-networks-in-gnome/" title="Connecting to Wireless Networks in GNOME (December 18, 2008)">Connecting to Wireless Networks in GNOME</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/10/21/zonescreen-finally-gets-64-bit-update/" title="ZoneScreen Finally Gets 64-bit Update (October 21, 2008)">ZoneScreen Finally Gets 64-bit Update</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/31/gather-wireless-information-with-wavemon/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Network Monitoring Software Newt</title>
		<link>http://www.ghacks.net/2009/03/01/network-monitoring-software-newt/</link>
		<comments>http://www.ghacks.net/2009/03/01/network-monitoring-software-newt/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 18:02:01 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[monitor network]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[Network Monitoring Software]]></category>
		<category><![CDATA[newt]]></category>
		<category><![CDATA[remote computer]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10843</guid>
		<description><![CDATA[Newt is a network monitoring software similar to the previously mentioned network monitoring software Networx or Look@Lan. The network monitor uses a multithreaded scanning engine to scan all remote computers and domains to retrieve information about them. The information itself is shown in a spreadsheet like table-format that can be exported into various formats including [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.komodolabs.com/newtfree.shtml">Newt</a> is a <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">network monitoring software</a> similar to the previously mentioned <a href="http://www.ghacks.net/2008/10/04/network-monitoring-software-networx/">network monitoring software Networx</a> or <a href="http://www.ghacks.net/2008/08/11/network-monitoring-software-looklan/">Look@Lan</a>. The network monitor uses a multithreaded scanning engine to scan all remote computers and domains to retrieve information about them. The information itself is shown in a spreadsheet like table-format that can be exported into various formats including html, text or csv.</p>
<p>The information that are displayed after the network scan are &#8211; among others &#8211; computer names, IP addresses, operating systems, uptime, MAC address, domain name and user name. The collected data can be sorted in numerous ways. The free version of NEWT has a few limitations like only being able to scan and monitor 25 computers, no SNMP device detection or multithreaded IP Range discovery.</p>
<p>Next to the computer analysis it is possible to send a few commands to remote computers in the network. It is possible to send messages, ping computers or to turn them on or off remotely. </p>
<p><span id="more-10843"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/03/network_monitoring_software-500x375.jpg" alt="network monitoring software" title="network monitoring software" width="500" height="375" class="alignnone size-medium wp-image-10847" /></p>
<p>The <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">network monitoring</a> software is compatible with most Microsoft operating systems including Windows XP, Windows Vista and even the soon to be released <a href="http://windows7news.com/">Windows 7</a>.</p>

	Tags: <a href="http://www.ghacks.net/tag/monitor-network/" title="monitor network" rel="tag">monitor network</a>, <a href="http://www.ghacks.net/tag/network/" title="network" rel="tag">network</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/network-monitoring-software/" title="Network Monitoring Software" rel="tag">Network Monitoring Software</a>, <a href="http://www.ghacks.net/tag/newt/" title="newt" rel="tag">newt</a>, <a href="http://www.ghacks.net/tag/remote-computer/" title="remote computer" rel="tag">remote computer</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/08/04/network-monitoring-software-networx-5-released/" title="Network Monitoring Software Networx 5 Released (August 4, 2009)">Network Monitoring Software Networx 5 Released</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/06/06/remote-server-monitoring-software-dreamsys-server-monitor/" title="Remote Server Monitoring Software DreamSys Server Monitor (June 6, 2009)">Remote Server Monitoring Software DreamSys Server Monitor</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/" title="Network Monitoring Software Open Monitor (May 28, 2009)">Network Monitoring Software Open Monitor</a> (27)</li>
	<li><a href="http://www.ghacks.net/2008/10/04/network-monitoring-software-networx/" title="Network Monitoring Software NetWorx (October 4, 2008)">Network Monitoring Software NetWorx</a> (12)</li>
	<li><a href="http://www.ghacks.net/2008/08/11/network-monitoring-software-looklan/" title="Network Monitoring Software Look@Lan (August 11, 2008)">Network Monitoring Software Look@Lan</a> (7)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/01/network-monitoring-software-newt/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Monitor your Network the Open Source way with Etherape</title>
		<link>http://www.ghacks.net/2009/01/23/monitor-your-network-the-open-source-way-with-etherape/</link>
		<comments>http://www.ghacks.net/2009/01/23/monitor-your-network-the-open-source-way-with-etherape/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 19:49:03 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[etherape]]></category>
		<category><![CDATA[etherman]]></category>
		<category><![CDATA[internal traffic]]></category>
		<category><![CDATA[network analyzers]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[network tools]]></category>
		<category><![CDATA[tcp/ip]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10086</guid>
		<description><![CDATA[Every network administrator needs a good network monitor for network management. But with so many to choose from it&#8217;s hard to know which one is best. This especially applies to the open source world. Go to Freshmeat.net and you will find 191 entries for open source network analyzers and network tools. Of those many are [...]]]></description>
			<content:encoded><![CDATA[<p>Every network administrator needs a good network monitor for network management. But with so many to choose from it&#8217;s hard to know which one is best. This especially applies to the open source world. Go to Freshmeat.net and you will find 191 entries for open source network analyzers and network tools. Of those many are console based. Of those entries one monitor stands out as both powerful and easy to use. That tool? <a title="Etherape Main Page" href="http://etherape.sourceforge.net/" target="_blank">Etherape</a>.</p>
<p>Etherape is a graphical <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">network monitoring</a> tool based on etherman that features link-layer, tcp, and ip modes. Etherape is a real time monitor who&#8217;s graphic representation instantly changes as network traffic goes in and out. You can use Etherape live or have it read from a dump file. Etherape supports Ethernet, FDDI, Token Ring, ISDN, PPP and SLIP devices so you shouldn&#8217;t have any problem getting it to work on your network.</p>
<p><span id="more-10086"></span><strong>Installing</strong></p>
<p>Installing Etherape is simple. Open up your Add/Remove Software utility, do a search for &#8220;etherape&#8221; and select the entry when it appears. Apply the changes to install the application. If you prefer to go the command line route you can isse the command &#8220;sudo apt-get install etherape&#8221;. Once you have the application installed you can start Etherape by issuing the command <em>etherape</em> from a command line. You can also start Etherape from the Applications menu by looking in the Tools | System Tools submenus.</p>
<p><strong>The Main Window</strong></p>
<p>When you first open up Etherape (you will need the root password) you will see a blank window with some buttons and menus. At this point you are not capturing any packets because you haven&#8217;t instructed Etherape what interfaces to use.</p>
<div id="attachment_10088" class="wp-caption alignleft" style="width: 310px"><a href="http://www.ghacks.net/wp-content/uploads/2009/01/etherape_interfaces.png"><img class="size-medium wp-image-10088" src="http://www.ghacks.net/wp-content/uploads/2009/01/etherape_interfaces-500x382.png" alt="Configure Etherape Interfaces" width="300" height="229" /></a><p class="wp-caption-text">Configure Etherape Interfaces</p></div>
<p>In order to configure the interface click on the Capture menu and then click in the Interfaces sub-menu. Select the interface your machine uses to continue. Note that, as of this writing, Etherape does not support the Wifi0 interface. If you are using wireless you will most likely be able to use ath0.</p>
<p>Once you have configured the interface select the Mode type from the same menu you found the Interfaces entry.</p>
<p>Etherape will immediately begin capturing packets. You will see the large black window quickly fill with traffic. Depending upon your network your window can fill up very quickly. You will also notice that Etherape contains a color-coded legend.</p>
<div id="attachment_10090" class="wp-caption alignright" style="width: 310px"><a href="http://www.ghacks.net/wp-content/uploads/2009/01/etherape_main1.png"><img class="size-medium wp-image-10090" src="http://www.ghacks.net/wp-content/uploads/2009/01/etherape_main1-500x402.png" alt="Etherape Capturing Packets" width="300" height="241" /></a><p class="wp-caption-text">Etherape Capturing Packets</p></div>
<p>By default CUPS and Domain are blue, WWW, TCP, ICMP are red, IMAP2 is purple, and POP3 is yellow. These colors can be changed in the Preferences window to whatever you like.</p>
<p>As you can see (in the image to the right) there is a lot of external traffic. But what if you only want to monitor internal traffic? Simple In the Preferences window click on the Diagram tab. You will see a small text area labeled &#8220;Capture Filter&#8221;. In this text area you will enter something similar to:<em> ip and src net 192.168 and dst net 192.168</em> (where 192.168 is the first two sections of your internal network addressing.)</p>
<p>Once you enter that information, click Save, and the preferences window will go away. Etherape will now start capturing only your internal traffic.</p>
<p><strong>Reading From Files</strong></p>
<p>Etherape can read files from the <em>tcpdump</em> application. But you must run <em>tcpdump</em> with the <em>-n </em>and <em>-w</em> flags. The <em>tcpdump </em>command would be run like so: <em>tcpdump -n -w dump_file</em>. Once you are satisfied you have enough information you can stop the dump with ctrl-c. Once you have your dump file you can open it by going to File and then selected Open. The captured packets will display in real time as they were captured during tcpdump&#8217;s run.</p>
<p><strong>Final Thoughts</strong></p>
<p>Etherape is the perfect tool for monitoring network traffic. Not only is it simple to use, it gives you instant output as traffic comes in and out of your network.</p>

	Tags: <a href="http://www.ghacks.net/tag/etherape/" title="etherape" rel="tag">etherape</a>, <a href="http://www.ghacks.net/tag/etherman/" title="etherman" rel="tag">etherman</a>, <a href="http://www.ghacks.net/tag/internal-traffic/" title="internal traffic" rel="tag">internal traffic</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/network-analyzers/" title="network analyzers" rel="tag">network analyzers</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/network-tools/" title="network tools" rel="tag">network tools</a>, <a href="http://www.ghacks.net/tag/tcpip/" title="tcp/ip" rel="tag">tcp/ip</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/31/gather-wireless-information-with-wavemon/" title="Gather Wireless Information with Wavemon (March 31, 2009)">Gather Wireless Information with Wavemon</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/07/widgets-for-linux-superkaramba/" title="Widgets for Linux: SuperKaramba (December 7, 2006)">Widgets for Linux: SuperKaramba</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/12/06/widgets-for-linux-gdesklets/" title="Widgets for Linux: gDesklets (December 6, 2006)">Widgets for Linux: gDesklets</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/01/23/monitor-your-network-the-open-source-way-with-etherape/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network Monitoring Software NetWorx</title>
		<link>http://www.ghacks.net/2008/10/04/network-monitoring-software-networx/</link>
		<comments>http://www.ghacks.net/2008/10/04/network-monitoring-software-networx/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 10:58:30 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[network bandwidth]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[Network Monitoring Software]]></category>
		<category><![CDATA[networx]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=7397</guid>
		<description><![CDATA[Networx is the second network monitoring software on review at Ghacks in the last months. It was recently released in version 4 which is compatible to all Windows operating systems since Windows 98 including 32-bit and 64-bit editions of Windows XP, Vista and Windows Server 2008.
The network monitoring software can be used to monitor incoming [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.softperfect.com/products/networx/">Networx</a> is the second <a href="http://www.ghacks.net/2008/08/11/network-monitoring-software-looklan/">network monitoring software</a> on review at Ghacks in the last months. It was recently released in version 4 which is compatible to all Windows operating systems since Windows 98 including 32-bit and 64-bit editions of Windows XP, Vista and Windows Server 2008.</p>
<p>The <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">network monitoring software</a> can be used to monitor incoming and outgoing bandwidth of selected network adapters and connections. Traffic is shown in graphs and logged in a file for further processing. Reports are extensive and provide access to daily, weekly, monthly and custom reports.</p>
<p>A realtime network traffic graph visualizes the incoming and outgoing traffic. Notifications can be used to perform actions under configured conditions. They can be configured to run so called actions when network traffic drops or rises above a certain level. Possible actions include running a software, displaying visual and sound alerts or to drop the connection.</p>
<p><span id="more-7397"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/10/network_monitoring_software-500x365.gif" alt="network monitoring software" title="network monitoring software" width="500" height="365" class="alignnone size-medium wp-image-7398" /></p>
<p>Networx includes network information and testing tools like netstat that display all applications currently using the network connection. The application uses roughly 10 Megabytes of computer memory in minimized state.</p>

	Tags: <a href="http://www.ghacks.net/tag/bandwidth/" title="bandwidth" rel="tag">bandwidth</a>, <a href="http://www.ghacks.net/tag/netstat/" title="netstat" rel="tag">netstat</a>, <a href="http://www.ghacks.net/tag/network/" title="network" rel="tag">network</a>, <a href="http://www.ghacks.net/tag/network-bandwidth/" title="network bandwidth" rel="tag">network bandwidth</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/network-monitoring-software/" title="Network Monitoring Software" rel="tag">Network Monitoring Software</a>, <a href="http://www.ghacks.net/tag/networx/" title="networx" rel="tag">networx</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/08/04/network-monitoring-software-networx-5-released/" title="Network Monitoring Software Networx 5 Released (August 4, 2009)">Network Monitoring Software Networx 5 Released</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/03/01/network-monitoring-software-newt/" title="Network Monitoring Software Newt (March 1, 2009)">Network Monitoring Software Newt</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/08/11/network-monitoring-software-looklan/" title="Network Monitoring Software Look@Lan (August 11, 2008)">Network Monitoring Software Look@Lan</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/06/06/remote-server-monitoring-software-dreamsys-server-monitor/" title="Remote Server Monitoring Software DreamSys Server Monitor (June 6, 2009)">Remote Server Monitoring Software DreamSys Server Monitor</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/06/12/online-network-troubleshooting-analyzer-netalyzr/" title="Online Network Troubleshooting Analyzer Netalyzr (June 12, 2009)">Online Network Troubleshooting Analyzer Netalyzr</a> (29)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/10/04/network-monitoring-software-networx/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Network Monitoring Software Look@Lan</title>
		<link>http://www.ghacks.net/2008/08/11/network-monitoring-software-looklan/</link>
		<comments>http://www.ghacks.net/2008/08/11/network-monitoring-software-looklan/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 12:42:16 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[look@lan]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[network management]]></category>
		<category><![CDATA[Network Monitoring]]></category>
		<category><![CDATA[Network Monitoring Software]]></category>
		<category><![CDATA[network services]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6034</guid>
		<description><![CDATA[Look@Lan is a highly acclaimed network monitoring software for Microsoft Windows operating systems except Windows Vista. It provides network management and network monitoring features in an easy to use interface.
One of the main features of the network monitoring software is the ability to automatically scan a network based on a network adapter, device or selected [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lookatlan.com/">Look@Lan</a> is a highly acclaimed <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">network monitoring software</a> for Microsoft Windows operating systems except Windows Vista. It provides network management and <a href="http://www.ghacks.net/2009/05/28/network-monitoring-software/">network monitoring</a> features in an easy to use interface.</p>
<p>One of the main features of the network monitoring software is the ability to automatically scan a network based on a network adapter, device or selected IP range. The software will scan the selected range and display all connected computers and devices after the fast scan.</p>
<p>A click on a network device opens the Proof Scan window that provides access to information such as Ping, Traceroute, Netbios, running network services and SNMP System plus additional links to advanced traceroutes and a graphical ping view.</p>
<p><span id="more-6034"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/08/network-monitoring-software-500x314.gif" alt="network monitoring software" title="network monitoring software" width="500" height="314" class="alignnone size-medium wp-image-6037" /></p>
<p>Other features of the network monitoring software include a hierarchical view of the network, a search, graphs and network trapping. Trapping will alert the user of network status changes, for example when a network device goes online of offline.</p>
<p>One network management feature is the generation of network status reports which are saved in html format. They display a detailed view of IP addresses including graphs.</p>

	Tags: <a href="http://www.ghacks.net/tag/looklan/" title="look@lan" rel="tag">look@lan</a>, <a href="http://www.ghacks.net/tag/network/" title="network" rel="tag">network</a>, <a href="http://www.ghacks.net/tag/network-management/" title="network management" rel="tag">network management</a>, <a href="http://www.ghacks.net/tag/network-monitoring/" title="Network Monitoring" rel="tag">Network Monitoring</a>, <a href="http://www.ghacks.net/tag/network-monitoring-software/" title="Network Monitoring Software" rel="tag">Network Monitoring Software</a>, <a href="http://www.ghacks.net/tag/network-services/" title="network services" rel="tag">network services</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/03/01/network-monitoring-software-newt/" title="Network Monitoring Software Newt (March 1, 2009)">Network Monitoring Software Newt</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/08/04/network-monitoring-software-networx-5-released/" title="Network Monitoring Software Networx 5 Released (August 4, 2009)">Network Monitoring Software Networx 5 Released</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/10/04/network-monitoring-software-networx/" title="Network Monitoring Software NetWorx (October 4, 2008)">Network Monitoring Software NetWorx</a> (12)</li>
	<li><a href="http://www.ghacks.net/2007/02/26/use-multiple-screens-over-network/" title="Use Multiple Screens over Network (February 26, 2007)">Use Multiple Screens over Network</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/08/23/softperfect-network-scanner/" title="Softperfect Network Scanner (August 23, 2008)">Softperfect Network Scanner</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/08/11/network-monitoring-software-looklan/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
