<?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>Linux Admin Zone &#187; network</title>
	<atom:link href="http://linuxadminzone.com/tag/network/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxadminzone.com</link>
	<description>Adding more reasons to celebrate Open Source.</description>
	<lastBuildDate>Wed, 09 May 2012 10:17:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Install and configure ntop for network stats, monitoring</title>
		<link>http://linuxadminzone.com/install-and-configure-ntop-for-network-stats-monitoring/</link>
		<comments>http://linuxadminzone.com/install-and-configure-ntop-for-network-stats-monitoring/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 07:10:33 +0000</pubDate>
		<dc:creator>jagbir</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[ntop]]></category>

		<guid isPermaLink="false">http://linuxadminzone.com/?p=30</guid>
		<description><![CDATA[ntop is one of the most powerful and easy to use tool for network traffic statistics viewing and analysis. Here are quick steps to install it on CentOS 5.2 box (upgraded from 5.0 release). Try to install in easy way: $ yum install ntop Most probably yum get failed for missing dependencies such as rrdtool [...]]]></description>
			<content:encoded><![CDATA[<p>ntop is one of the most powerful and easy to use tool for network traffic statistics viewing and analysis.</p>
<p>Here are quick steps to install it on CentOS 5.2 box (upgraded from 5.0 release). </p>
<p>Try to install in easy way:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ yum <span style="color: #c20cb9; font-weight: bold;">install</span> ntop</pre></div></div>

<p>Most probably yum get failed for missing dependencies such as rrdtool package. If this is the case, download and install this package manually:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>src
$ <span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>dag.wieers.com<span style="color: #000000; font-weight: bold;">/</span>rpm<span style="color: #000000; font-weight: bold;">/</span>packages<span style="color: #000000; font-weight: bold;">/</span>rrdtool<span style="color: #000000; font-weight: bold;">/</span>rrdtool-1.2.23-<span style="color: #000000;">1</span>.el5.rf.i386.rpm
$ rpm <span style="color: #660033;">-ivh</span> rrdtool-1.2.23-<span style="color: #000000;">1</span>.el5.rf.i386.rpm <span style="color: #660033;">--nodeps</span></pre></div></div>

<p>I&#8217;ve used &#8211;nodeps option in rpm command to ignore any dependencies. Yum will take care of that, we just need rrdtool as of now. </p>
<p>now try again with yum, ntop should be installed successfully:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ yum <span style="color: #c20cb9; font-weight: bold;">install</span> ntop</pre></div></div>

<p>Configure ntop to suit your requirements, such as which network interface should it monitor and on which port (http port) should it display graphical interface.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">vim</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>ntop.conf</pre></div></div>

<p>Save the file and start ntop with specifying the path of conf file:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ ntop <span style="color: #000000; font-weight: bold;">@/</span>etc<span style="color: #000000; font-weight: bold;">/</span>ntop.conf</pre></div></div>

<p>you can also handle it with more easy &#8216;service ntop start/stop&#8217; commands. </p>
<p>ntop will start collecting network stats and you can view the graphs and further configure its graphical interface: http://localhost:3000/</p>
<p>You may also like to read:<br />
* <a href="http://linuxadminzone.com/5-steps-to-secure-your-linux-server/"> 5 steps to secure your Linux Server </a><br />
* <a href="http://linuxadminzone.com/ensuring-secure-access-to-production-linux-servers/"> Ensuring secure access to production Linux Servers </a><br />
* <a href="http://linuxadminzone.com/bash-script-to-backup-essential-log-files-of-linux-server/"> Bash script to backup essential log files in Linux </a><br />
* <a href="http://linuxadminzone.com/quickly-change-your-ssh-port-from-default-22-to-something-higher/"> Quickly change your ssh port from defualt 22 to something higher </a><br />
* <a href="http://linuxadminzone.com/ssh-port-forwarding-from-remote-to-local-machine/"> SSH port forwarding from remote to local machine </a><br />
* <a href="http://linuxadminzone.com/save-root-or-user-history-to-check-later/"> Save root or user history to check later </a><br />
* <a href="http://linuxadminzone.com/install-and-configure-denyhost/"> Install and configure denyhost to prevent brute force attacks </a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxadminzone.com/install-and-configure-ntop-for-network-stats-monitoring/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

