<?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>Free Linux Tools &#187; Monitoring</title>
	<atom:link href="http://linuxproducts.net/free/monitoring/feed" rel="self" type="application/rss+xml" />
	<link>http://linuxproducts.net</link>
	<description></description>
	<lastBuildDate>Fri, 06 Mar 2009 22:05:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Vtstats 0.0.2</title>
		<link>http://linuxproducts.net/vtstats-002-556.html</link>
		<comments>http://linuxproducts.net/vtstats-002-556.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:48:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[ramdac]]></category>
		<category><![CDATA[serverkit]]></category>
		<category><![CDATA[vtstats]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-vtstats-002.html</guid>
		<description><![CDATA[Vtstats is a supplemental module for use with other modules collectively forming a ServerKit personality.
Vtstats&#8217;s purpose is to report ServerKit runtime statistics on a virtual terminal periodically, optionally with screen blanking disabled in the interests of keeping recent statistics available in the face of system failures, overloads, or access restrictions regardless of console inactivity.
The information [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Vtstats is a supplemental module for use with other modules collectively forming a ServerKit personality.</p>
<p>Vtstats&#8217;s purpose is to report ServerKit runtime statistics on a virtual terminal periodically, optionally with screen blanking disabled in the interests of keeping recent statistics available in the face of system failures, overloads, or access restrictions regardless of console inactivity.</p>
<p>The information displayed is the same information you see on the server processes output upon delivery of SIGUSR1, but the vtstats report loop is unrelated to the builtin ServerKit signal-driven statistics report beyond sharing the same reporting function.</p>
<p>When used along with disabled screen blanking and vt activation enabled, this module takes advantage of the characteristic of frame buffers to independently continue displaying the contents of memory regardless of the overall system health/state. Even when the machine is frozen the RAMDAC continues &#8220;displaying&#8221; the contents of video memory.</p>
<p>If you do not disable screen blanking, you lose the ability to simply attach a display adapter and view the current video memory contents in situations where the machine is unable to respond to keypresses or other events that would normally unblank the screen. (lockups)</p>
<p><strong>Usage</strong></p>
<p>It is advised that you read the ServerKit documentation before trying to use this module, as most of the basic usage is simply using ServerKit, nothing specific to this module.</p>
<p>To integrate vtstats into existing ServerKit personalities, simply add the vtstats.so module to the existing personalities modules subdirectory. Configuration of the vtstats module is achieved through adding a vtstats section to your existing c11n file.</p>
<p>Vtstats will generally require a server process that starts as root so it can manipulate /dev/console. It is recommended that you configure the personality to switch users using the uid and gid directives when executing as root. Note that in order for ServerKit to allow root execution, the executes_as_root configuration option must be set to true.</p>
<p><u>Note:</u></p>
<p>ServerKit versions 1.2.0 and earlier contain a bug in the reporting function which ignores the supplied FILE * and prints directly to stderr. If when vtstats reports statistics you get some of the statistics printed to stderr instead of the virtual terminal, your ServerKit has the bug.</p>
<p><strong>Configuration options for the vtstats section:</strong></p>
<p>period, integer, default=5:<br />
How long to wait in seconds between reports</p>
<p>vt_number, integer, default=0:<br />
Which virtual terminal to use, these are the &#8220;virtual consoles&#8221; you<br />
access with alt-fN generally in linux. Setting to 0 instructs vtstats<br />
to find the next available vt.</p>
<p>activate_vt, boolean, default=false:<br />
Set to true if you want vtstats to &#8220;activate&#8221; the vt being used, this<br />
will result in the &#8220;focusing&#8221; of the vt being used for statistics so<br />
they will be on-screen without intervention, which incidentally also<br />
adds scrollback history until the focus is changed.</p>
<p>disable_blanking, boolean, default=false:<br />
Set to true if you want vtstats to disable the blanking &amp; powersave<br />
features of the console driver. Generally in datacenters there are no<br />
permanent displays connected to the servers so this doesnt produce a<br />
huge waste of energy in that case. It is useful because if a server is<br />
frozen, and the screen has been blanked, it will not be able to respond<br />
to a keypress (or other user generated event) to unblank the screen.<br />
Thus rendering the likely present statistics in video memory<br />
inaccessible because they are not being actively displayed <img src='http://linuxproducts.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .</p>
<p>Generally, this module will require that your personality start as root. All<br />
of the vtstats open and ioctl operations occur during the &#8220;prestart&#8221; phase of<br />
server initialization. The &#8220;prestart&#8221; phase occurs before any user switching is done so starting as root is effective in allowing vtstats to manipulate<br />
/dev/console. To keep things sane, you should use the uid &amp; gid core server configuration options to drop root privileges after performing all prestart duties.</p>
<p>It&#8217;s common to start personalities as root anywyas, because things like binding to port 110 (for a pop server) or port 80 (for http server) require root. In these cases adding vtstats is simplest.</p>
<p>Here is a sample configuration of a r2d2 pop3 server personality c11n file which configures both the r2d2 and vtstats modules:</p>
<p><c11n></c11n></p>
<p>identity = pop3<br />
executes_as_root=true<br />
uid = 11000<br />
gid = 11000</p>
<p>database testdb {<br />
name = testdatabase<br />
user = foo<br />
password = bar<br />
host = localhost<br />
pool_max = 100<br />
pool_min = 1<br />
}</p>
<p>vtstats {<br />
activate_vt = true<br />
disable_blanking = true<br />
period = 1<br />
}</p>
<p>r2d2 {<br />
max_threads = 10<br />
min_threads = 1<br />
database = testdb<br />
port = 1100</p>
<p>#TLS-related options below<br />
tls_port = 9950<br />
tls_address = 0.0.0.0<br />
x509_key_file = &#8220;x509-server-key.pem&#8221;<br />
x509_cert_file = &#8220;x509-server.pem&#8221;<br />
}</p>
<p><c11n></c11n></p>
<p>The above disables blanking, enables the vt switch, sets a period of 1 second (1HZ) and uses the default behavior of finding the next available VT.</p>
<p>It&#8217;s as simple as adding a vtstats section to your c11n file to change the<br />
defaults, and adding the vtstats.so to your modules directory either by placing the module there or symlinking it from there.</p>
<p><span style="color: green"><strong>Requirements:</strong></span></p>
<p>· ServerKit</p>
<p><strong>What&#8217;s New</strong> in This Release:</p>
<p>· Updated report method to be ServerKit 2.x compatible<br />
· Added c11n and run files<br />
· Cleaned up some blanking-disable related things</p>
<p><a href="http://serverkit.org/modules/vtstats/vtstats-0.0.2.tar.gz">Sources mirror 1 (tar.gz)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/vtstats-002-556.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gnome System Monitor 2.21.4</title>
		<link>http://linuxproducts.net/gnome-system-monitor-2214-555.html</link>
		<comments>http://linuxproducts.net/gnome-system-monitor-2214-555.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:47:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[gnome system monitor]]></category>
		<category><![CDATA[graph]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-gnome-system-monitor-2214.html</guid>
		<description><![CDATA[Gnome System Monitor is a GNOME process viewer and system monitor with a nice easy-to-use interface.
Gnome System Monitor has some nice features, such as a tree view for process dependencies, icons for processes, the ability to hide processes that you don&#8217;t want to see, graphical time histories of CPU/swap/memory usage, the ability to kill/renice processes [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Gnome System Monitor is a GNOME process viewer and system monitor with a nice easy-to-use interface.</p>
<p>Gnome System Monitor has some nice features, such as a tree view for process dependencies, icons for processes, the ability to hide processes that you don&#8217;t want to see, graphical time histories of CPU/swap/memory usage, the ability to kill/renice processes needing root access, as well as the standard features that you might expect from a process viewer.</p>
<p><strong>Installation:</strong></p>
<p>The simplest way to compile this package is:</p>
<p>1. `cd&#8217; to the directory containing the package&#8217;s source code and type `./configure&#8217; to configure the package for your system. If you&#8217;re using `csh&#8217; on an old version of System V, you might need to type `sh ./configure&#8217; instead to prevent `csh&#8217; from trying to execute `configure&#8217; itself.</p>
<p>Running `configure&#8217; takes awhile. While running, it prints some messages telling which features it is checking for.</p>
<p>2. Type `make&#8217; to compile the package.</p>
<p>3. Optionally, type `make check&#8217; to run any self-tests that come with the package.</p>
<p>4. Type `make install&#8217; to install the programs and any data files and documentation.</p>
<p>5. You can remove the program binaries and object files from the source code directory by typing `make clean&#8217;. To also remove the files that `configure&#8217; created (so you can compile the package for a different kind of computer), type `make distclean&#8217;. There is also a `make maintainer-clean&#8217; target, but that is intended mainly for the package&#8217;s developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.</p>
<p><span style="color: green"><strong>Requirements:</strong></span></p>
<p>· libwnck</p>
<p><strong>What&#8217;s New</strong> in This Release:</p>
<p>· &#8216;Arguments&#8217; column is now correctly escaped for markup. Josh Lee. Closes #498569.<br />
· Graph improvements by Karl Lattimer &#8211; new developer.</p>
<p><a href="http://download.gnome.org/sources/gnome-system-monitor/2.21/gnome-system-monitor-2.21.4.tar.g">Sources mirror 1 (tar.gz)</a></p>
<p align="justify"><a href="http://download.gnome.org/sources/gnome-system-monitor/2.21/gnome-system-monitor-2.21.4.tar.bz2">Sources mirror 2 (tar.bz2)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/gnome-system-monitor-2214-555.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NagVis 1.2</title>
		<link>http://linuxproducts.net/nagvis-12-554.html</link>
		<comments>http://linuxproducts.net/nagvis-12-554.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:45:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[nagios]]></category>
		<category><![CDATA[nagvis]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-nagvis-12.html</guid>
		<description><![CDATA[NagVis is a visualization addon for the well known network managment system Nagios.
NagVis can be used to visualize Nagios Data, e.g. to display IT processes like a mail system or a network infrastructure.
Requirements:
· Nagios (2.x branch)
· MySQL (recommended)
Installation:
STEP 1
Get NagVis, the latest test release can be found at www.nagvis.org
STEP 2
Place the NagVis directory tree into [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">NagVis is a visualization addon for the well known network managment system Nagios.</p>
<p>NagVis can be used to visualize Nagios Data, e.g. to display IT processes like a mail system or a network infrastructure.</p>
<p><span style="color: green"><strong>Requirements:</strong></span></p>
<p>· Nagios (2.x branch)<br />
· MySQL (recommended)</p>
<p><strong>Installation:</strong></p>
<p>STEP 1</p>
<p>Get NagVis, the latest test release can be found at www.nagvis.org</p>
<p>STEP 2</p>
<p>Place the NagVis directory tree into your Nagios share Folder<br />
(usally /usr/local/nagios/share).</p>
<p>STEP 3</p>
<p>DONT move any files or folders inside the NagVis directory! (In fact you can move,<br />
but in this case you have to change the main config file &#8211; if everything is left<br />
untouched it should run &#8220;out of the box&#8221; without changes to the config)</p>
<p>STEP 4</p>
<p>!!! IMPORTANT !!! &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br />
Check the main config file (etc/config.ini.php) to fit your system!<br />
&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;<!-- IMPORTANT !!!<--><br />
STEP 5</p>
<p>Make sure that the Webserver User can write to the NagVis etc directory.</p>
<p>E.g. issue the following as root (change pathes according to your installation) :<br />
chmod 665 -R /usr/local/nagios/share/nagvis/etc/maps/<br />
chmod 665 -R /usr/local/nagios/share/nagvis/maps/<br />
chmod 665 /usr/local/nagios/share/nagvis/etc/config.ini.php</p>
<p>(You can even set less than 665 if you know what you&#8217;re doing and the groups are set fine)</p>
<p>STEP 6</p>
<p>If you want to use the Config Tool<br />
call http://[nagiosserver]/[path_to_nagvis]/config.php and do a right-click</p>
<p>You should now be able to create new config files. (Make sure the Webserver<br />
can write to the etc directory!).</p>
<p>!!! IMPORTANT !!! &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br />
The Config Tools DOES NOT display the current Nagios States of Objects<br />
configured. Its only for configuring! To &#8220;use&#8221; your configured Maps<br />
afterwards see STEP 7!<br />
&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;<!-- IMPORTANT !!!<--><br />
If this does not work for you, you can simply edit the Map config files in the etc/maps/ directory by hand, see &#8220;Map Config File Format&#8221; document at www.nagvis.org for doing this.</p>
<p><strong>What&#8217;s New</strong> in This Release:</p>
<p>· The map rotation feature has been recoded: map rotation can be stopped and restarted on demand.<br />
· There is a countdown to the next reload/rotate in the header menu.<br />
· It can be included to the map in a textbox via macro.<br />
· You can also define several map rotation pools in the main configuration. Dynamic Favicon has been added to increase comfort when using tabbed browsing Better value validation has been added to prevent incorrect configuration.<br />
· Performance (map load time) has been improved by up to 50%.</p>
<p><a href="http://prdownloads.sourceforge.net/nagvis/nagvis-1.2.tar.gz?use_mirror=nchc">Sources mirror 1 (tar.gz)</a></p>
<p align="justify"><a href="http://prdownloads.sourceforge.net/nagvis/nagvis-1.2.tar.gz">Sources mirror 2 (tar.gz) </a></p>
<p align="justify"><a href="http://prdownloads.sourceforge.net/nagvis/nagvis-1.2.tar.gz?use_mirror=easynews">Sources mirror 3 (tar.gz) </a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/nagvis-12-554.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menace 1.3 Beta</title>
		<link>http://linuxproducts.net/menace-13-beta-553.html</link>
		<comments>http://linuxproducts.net/menace-13-beta-553.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:44:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[menace]]></category>
		<category><![CDATA[menace beta]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-menace-13-beta.html</guid>
		<description><![CDATA[Menace is a network monitoring tool that collects data from your network and stores it into a database. From there, only the past 30 minutes of data is kept and is displayed on the webpage. This shows all traffic either from the source or to the destination.
Menace is written in PHP for the web pages [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Menace is a network monitoring tool that collects data from your network and stores it into a database. From there, only the past 30 minutes of data is kept and is displayed on the webpage. This shows all traffic either from the source or to the destination.</p>
<p>Menace is written in PHP for the web pages and Python for the parser. They both depend on a mysql database. Menace stands for Managed Eye of Network Attacks with a Complete Engine.</p>
<p><strong>INSTALLATION:</strong></p>
<p><strong>Method A &#8211; 1 Server:</strong></p>
<p>Make a DB and user for menace</p>
<p>Run ./install.sh</p>
<p>In the webdir edit db.php and in the parser scanner.py to have the db details you created</p>
<p><strong>Method B &#8211; 2+ Servers:</strong></p>
<p>Make a DB and user for menace and allow connections from the other servers<br />
Run ./install.sh and only install the web part on the DB server<br />
In the webdir edit db.php and in the parser scanner.py to have the db details you created<br />
Copy the Parser Directory so the program can run on the other servers</p>
<p><span style="color: green"><strong>Requirements:</strong></span></p>
<p>· Python<br />
· MySQL</p>
<p><a href="http://heanet.dl.sourceforge.net/sourceforge/menace/Menace-beta-1.3.tar.gz">Sources mirror 1 (tar.gz)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/menace-13-beta-553.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>audit daemon 1.6.3</title>
		<link>http://linuxproducts.net/audit-daemon-163-551.html</link>
		<comments>http://linuxproducts.net/audit-daemon-163-551.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:43:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[audit]]></category>
		<category><![CDATA[audit daemon]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-audit-daemon-163.html</guid>
		<description><![CDATA[audit package contains the user-space utilities for creating audit rules. As well as for storing and searching the audit records generate by the audit subsystem in the Linux 2.6 kernel.
Usage:
Examples usage of utilities:
General:
Window 1:
./auditd
Window 2 (you don&#8217;t have to have the daemon running to try this, but
enabled has to be 1):
./auditctl -s
./auditctl -a entry,always -S [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">audit package contains the user-space utilities for creating audit rules. As well as for storing and searching the audit records generate by the audit subsystem in the Linux 2.6 kernel.</p>
<p><strong>Usage:</strong></p>
<p>Examples usage of utilities:</p>
<p>General:</p>
<p>Window 1:<br />
./auditd<br />
Window 2 (you don&#8217;t have to have the daemon running to try this, but<br />
enabled has to be 1):<br />
./auditctl -s<br />
./auditctl -a entry,always -S open<br />
ls<br />
./auditctl -d entry,always -S open</p>
<p>Identity tracking:<br />
./auditctl -a exit,always -S all -F loginuid=2000<br />
./auditctl -L 2000,&#8221;test uid&#8221;</p>
<p><strong>What&#8217;s New</strong> in This Release:</p>
<p>· system-config-audit was updated to version 0.4.5.<br />
· The &#8220;week-ago&#8221; keyword was added to aureport and ausearch start and end times.<br />
· Audit log permissions on rotate were fixed.<br />
· If a file&#8217;s group is root, then the permissions are set to 0400, otherwise they are set to 0440.<br />
· A RACF zos remote audispd plugin was added.<br />
· An event queue overflow action was added to audispd.</p>
<p><a href="http://people.redhat.com/sgrubb/audit/audit-1.6.3-1.src.rpm">RedHat SRPM mirror 1</a></p>
<p align="justify"><a href="http://people.redhat.com/sgrubb/audit/audit-1.6.3.tar.gz">Sources mirror 1 (tar.gz)</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/audit-daemon-163-551.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NDisc6 0.9.5</title>
		<link>http://linuxproducts.net/ndisc6-095-550.html</link>
		<comments>http://linuxproducts.net/ndisc6-095-550.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:41:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[icmpv6]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[ndisc]]></category>
		<category><![CDATA[ndisc6]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-ndisc6-095.html</guid>
		<description><![CDATA[ndisc6 consists of two small command line tools (ndisc6 and rdisc6) that perform ICMPv6 Neighbor Discovery and ICMPv6 Router Discovery respectively.
NDisc6 is primarily meant for IPv6 networking diagnostics or to detect rogue IPv6 nodes or routers on an Ethernet segment.
What&#8217;s New in This Release:
· This release adds an ICMPv6 DNS servers discovery daemon, and fixes [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">ndisc6 consists of two small command line tools (ndisc6 and rdisc6) that perform ICMPv6 Neighbor Discovery and ICMPv6 Router Discovery respectively.</p>
<p>NDisc6 is primarily meant for IPv6 networking diagnostics or to detect rogue IPv6 nodes or routers on an Ethernet segment.</p>
<p><strong>What&#8217;s New</strong> in This Release:</p>
<p>· This release adds an ICMPv6 DNS servers discovery daemon, and fixes name2addr and addr2name inversion.</p>
<p><a href="http://people.via.ecp.fr/~rem/ndisc6/ndisc6-0.9.5.tar.bz2">Sources mirror 1 (tar.bz2)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/ndisc6-095-550.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vmstat-monitor 1.0</title>
		<link>http://linuxproducts.net/vmstat-monitor-10-549.html</link>
		<comments>http://linuxproducts.net/vmstat-monitor-10-549.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:40:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[rrdtool]]></category>
		<category><![CDATA[vmstat]]></category>
		<category><![CDATA[vmstat monitor]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-vmstat-monitor-10.html</guid>
		<description><![CDATA[vmstat-monitor project is a shell script collection that calls vmstat regularly.
The statistics generated by vmstat are collected and visualized using rrdtool.
Sources mirror 1 (tgz) for Kernel 2.6
Sources mirror 2 (tgz) for Kernel 2.4
]]></description>
			<content:encoded><![CDATA[<p align="justify">vmstat-monitor project is a shell script collection that calls vmstat regularly.</p>
<p>The statistics generated by vmstat are collected and visualized using rrdtool.</p>
<p><a href="http://www.beranek.de/downloads/monitor-1.0.tgz">Sources mirror 1 (tgz) for Kernel 2.6</a></p>
<p><a href="http://www.beranek.de/downloads/monitor-1.0_2.4.tgz">Sources mirror 2 (tgz) for Kernel 2.4</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/vmstat-monitor-10-549.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watsup 0.08</title>
		<link>http://linuxproducts.net/watsup-008-548.html</link>
		<comments>http://linuxproducts.net/watsup-008-548.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:38:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[io]]></category>
		<category><![CDATA[watsup]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-watsup-008.html</guid>
		<description><![CDATA[Watsup is a system and process monitor for CPU, memory, page faults, disk IO, network IO.
Low overhead. GUI controls. Formatted report in window. Sample interval down to 0.1 secs. Choose font size. System resources: CPU (1-4), memory (free/used/cache), page faults (hard/soft), disk IO, network IO. Process resources: same + execution file name.
Here are some key [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Watsup is a system and process monitor for CPU, memory, page faults, disk IO, network IO.</p>
<p>Low overhead. GUI controls. Formatted report in window. Sample interval down to 0.1 secs. Choose font size. System resources: CPU (1-4), memory (free/used/cache), page faults (hard/soft), disk IO, network IO. Process resources: same + execution file name.</p>
<p><span style="color: blue"><strong>Here are some key features of &#8220;Watsup&#8221;:</strong></span></p>
<p>· overhead is about 1/3 as much<br />
· sample interval as low as 0.1 seconds is supported<br />
· overall system and top process resources are shown on one page<br />
· disk I/O, network I/O, and page fault rates can be monitored<br />
· font can be made small (for display in a corner) or large (whole screen)<br />
· the top N processes are displayed with minimal jumping around between samples<br />
· (which makes it easier to watch one or a few processes)<br />
· process ranking is a weighted sum of CPU, hard page faults, and disk I/O</p>
<p><span style="color: green"><strong>Requirements:</strong></span></p>
<p>· GTK+ version 2.8.x<br />
· Standard GTK app.<br />
· C++ compiler<br />
· libgtk2-dev needed if you want to rebuild</p>
<p><strong>What&#8217;s New</strong> in This Release:</p>
<p>· GUI was made multi-language capable, and a German version is now available.<br />
· The build script allows user choice of install location and desktop launcher.<br />
· Fixed crash from attempt to open a non-image file.</p>
<p><a href="http://kornelix.squarespace.com/storage/watsup/watsup.08.tar.gz">Sources mirror 1 (tar.gz)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/watsup-008-548.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Kernel Monitor 0.3 Beta</title>
		<link>http://linuxproducts.net/linux-kernel-monitor-03-beta-547.html</link>
		<comments>http://linuxproducts.net/linux-kernel-monitor-03-beta-547.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:36:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[gtkcombobox]]></category>
		<category><![CDATA[linux kernel monitoring]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-linux-kernel-monitor-03-beta.html</guid>
		<description><![CDATA[Linux Kernel Monitor is a tool for monitoring and managing linux&#8217;s kernel. It has been developed for GNOME, using Glib and Gtk libraries in C language.
lkmonitor tries to offer detailed information of the characteristics of the system, as type of cpu, state of the memory or the file system registered in kernel.
lkmonitor is an open [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Linux Kernel Monitor is a tool for monitoring and managing linux&#8217;s kernel. It has been developed for GNOME, using Glib and Gtk libraries in C language.</p>
<p>lkmonitor tries to offer detailed information of the characteristics of the system, as type of cpu, state of the memory or the file system registered in kernel.</p>
<p>lkmonitor is an open source project with information about the source code and software architecture to make easy the development of new characteristics.</p>
<p><strong>What&#8217;s New</strong> in This Release:</p>
<p>· Added. Embedded documentation<br />
· Changed. Fails during the reading of devices info doesn&#8217;t call g_error but g_critical<br />
· Fixed. Crash in machines without net devs information file. GtkComboBox becomes disabled when no NIC&#8217;s are present.<br />
· Fixed. Integer overflow in network panel.<br />
· Updated Urdu translation. (Thanks to Abid Sidique).</p>
<p><a href="http://sourceforge.net/project/showfiles.php?group_id=151642">Debian DEB mirror 1</a></p>
<p align="justify"><a href="http://sourceforge.net/project/showfiles.php?group_id=151642">RedHat RPM i386 mirror 1</a></p>
<p align="justify"><a href="http://sourceforge.net/project/showfiles.php?group_id=151642">RedHat RPM x86 64 mirror 2 </a></p>
<p align="justify"><a href="https://sourceforge.net/project/showfiles.php?group_id=151642&amp;release_id=528788">Sources mirror 1 (tar.gz)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/linux-kernel-monitor-03-beta-547.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetSPoC 3.1</title>
		<link>http://linuxproducts.net/netspoc-31-546.html</link>
		<comments>http://linuxproducts.net/netspoc-31-546.html#comments</comments>
		<pubDate>Sat, 05 Jan 2008 14:34:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[cvs]]></category>
		<category><![CDATA[netspoc]]></category>
		<category><![CDATA[pix]]></category>
		<category><![CDATA[vrrp]]></category>

		<guid isPermaLink="false">http://www.linuxproducts.org/linux-monitoring-tools/download-netspoc-31.html</guid>
		<description><![CDATA[NetSPoC is a tool for security managment of large computer networks with different security domains. It generates configuration files for packet filters which are controlling the borders of security domains.
NetSPoC provides its own language for describing the security policy and topology of a network. The security policy is a set of rules that state which [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">NetSPoC is a tool for security managment of large computer networks with different security domains. It generates configuration files for packet filters which are controlling the borders of security domains.</p>
<p>NetSPoC provides its own language for describing the security policy and topology of a network. The security policy is a set of rules that state which packets are allowed to pass the network and which not. NetSPoC is topology aware: a rule for traffic from A to B is automatically applied to all managed packet filters on the path from A to B.</p>
<p>Currently NetSPoC generates ACLs and static routing entries for</p>
<p>Cisco routers with or without firewall feature set,<br />
PIX firewalls and<br />
Linux iptables and ip route.</p>
<p>It supports network address translation, virtual IP addresses for redundancy protocols like VRRP and some dynamic routing protocols.</p>
<p>IPSec encryption is supported as well. A powerful syntax allows to easily define a large number of crypto tunnels of either a hub and spoke topology or a fully meshed topology. Crypto rules define which type of traffic needs to be encrypted. Crypto configuration for Cisco IOS routers and PIX firewalls is generated.</p>
<p>NetSPoC&#8217;s text based specification language is well suited for integration with CVS or other version control systems. A script is provided for tagging a policy and saving it to a policy database.</p>
<p>This software is actively developed with perl 5.8 under linux. It should be portable to other platforms where perl is available.</p>
<p><strong>What&#8217;s New</strong> in This Release:</p>
<p>· The rule set can be better adapted to stateful and stateless devices.<br />
· New &#8220;automatic&#8221; groups can be used for simpler definition of similar rules which affect a large set of objects.<br />
· Loopback interfaces and negotiated interfaces are now supported.<br />
· Support for Cisco VPN 3000 devices has been added, but currently isn&#8217;t well documented.<br />
· More checks are done to prevent an inconsistent configuration.<br />
· There are many other improvements and some bugfixes.</p>
<p><a href="http://download.berlios.de/netspoc/netspoc-3.1.tar.gz">Sources mirror 1 (tar.gz)</a></p>
<p align="justify"><a href="http://download2.berlios.de/netspoc/netspoc-3.1.tar.gz">Sources mirror 2 (tar.gz)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxproducts.net/netspoc-31-546.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
