<?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>夜行人 &#187; Cacti</title>
	<atom:link href="http://www.187299.com/archives/category/cacti/feed" rel="self" type="application/rss+xml" />
	<link>http://www.187299.com</link>
	<description>寻觅生命中的那一片浅草......</description>
	<lastBuildDate>Sun, 05 Sep 2010 15:59:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SysAdmin to SysAdmin： Making use of SNMP</title>
		<link>http://www.187299.com/archives/1329</link>
		<comments>http://www.187299.com/archives/1329#comments</comments>
		<pubDate>Sat, 14 Nov 2009 02:18:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1329</guid>
		<description><![CDATA["Simple Network Management Protocol" is a relative term. To the uninitiated, raw SNMP output, along with arcane technobabble like "MIB" and "ASN.1," looks a little daunting. Developing some understanding of how to parse and filter SNMP information doesn'... ]]></description>
			<content:encoded><![CDATA[<p>"Simple Network Management Protocol" is a relative term. To the uninitiated, raw SNMP output, along with arcane technobabble like "MIB" and "ASN.1," looks a little daunting. Developing some understanding of how to parse and filter SNMP information doesn't take long, though, and can put you on a fast track to making SNMP bend to your whim.</p>
<p>The first thing to know about SNMP is that it is a service that is structured such that an SNMP agent sitting on a target host can be queried by remote hosts for various bits of information. Only the target host (the one you want information about) needs to be running an SNMP daemon. The client making the queries just needs some tool capable of making SNMP queries and parsing the output. Most Linux server and client tools are supplied by the Net-SNMP project. A quick poke around your system to locate snmpwalk or snmpget should let you know in short order if you have the client tools installed. The server daemon is called, predictably, snmpd.</p>
<p>The easiest way to get familiar with how SNMP works is to set it up on your own Linux system. Since this might be the piece of machinery with which you are also the most familiar, it'll also be a great way to see the sheer power of SNMP. Since most Linux distributions come with a Net-SNMP daemon, I'm going to forgo discussing installation and head right to configuration.</p>
<p>Configuring snmpd</p>
<p>If you maintain a lot of services, you're probably tired of having to remember which directive handles what in all of the differently formatted config files. Apache, BIND, Sendmail, LDAP, NIS, NFS, and SSH all have different formats -- and that's just the beginning. You'll be relieved to know that SNMP has a really great configuration tool called snmpconf. Veteran sysadmins will be happy to know that this is a command-line tool. New admins will have to suck it up!</p>
<p>Seriously, though, if you just want to get a very quick configuration put together, try running snmpconf -g basic_setup, and you'll be able to set up what you need in order to see what the daemon has to offer. For those who have more than three minutes on their hands and want more control over the configuration, simply running snmpconf will prompt you with menus to configure the different aspects of the running daemon. The questions are very easy and completely self-explanatory (I'd even venture to say elementary) for any Linux or Unix sysadmin. Once you finish, move the resulting snmpd.conf file into place, and start the snmpd daemon.</p>
<p>Once the daemon is started, try pasting this into your terminal and pressing Enter: snmpwalk -v2c -c public localhost tcp. Here's some output from my laptop:</p>
<p>TCP-MIB::tcpConnState.0.0.0.0.22.0.0.0.0.0 = INTEGER: listen(2)<br />
TCP-MIB::tcpConnState.0.0.0.0.111.0.0.0.0.0 = INTEGER: listen(2)<br />
TCP-MIB::tcpConnState.0.0.0.0.199.0.0.0.0.0 = INTEGER: listen(2)<br />
TCP-MIB::tcpConnState.0.0.0.0.32768.0.0.0.0.0 = INTEGER: listen(2)<br />
TCP-MIB::tcpConnState.127.0.0.1.25.0.0.0.0.0 = INTEGER: listen(2)<br />
TCP-MIB::tcpConnState.127.0.0.1.631.0.0.0.0.0 = INTEGER: listen(2)<br />
TCP-MIB::tcpConnState.127.0.0.1.32769.0.0.0.0.0 = INTEGER: listen(2)<br />
TCP-MIB::tcpConnState.127.0.0.1.32776.127.0.0.1.631 = INTEGER: closeWait(8)</p>
<p>This is just a chunk of output, and as you can probably discern, it's telling me which ports I have open (they're in state "listen"). For the record, recent Net-SNMP packages come with a command called snmpnetstat that does this and more for you. But the point is that SNMP can tell you just about anything you want to know about the running system, but this output doesn't reveal very much about SNMP itself.</p>
<p>Let's alter the command like this: snmpwalk -On -v2c -c public localhost tcp. The -On flag tells the client to return the numeric OID or object ID string instead of abbreviating it using the MIB used to parse said OID. What's an OID? Glad you asked. Let's look at the output:</p>
<p>.1.3.6.1.2.1.6.13.1.1.0.0.0.0.22.0.0.0.0.0 = INTEGER: listen(2)<br />
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.111.0.0.0.0.0 = INTEGER: listen(2)<br />
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.199.0.0.0.0.0 = INTEGER: listen(2)<br />
.1.3.6.1.2.1.6.13.1.1.0.0.0.0.32768.0.0.0.0.0 = INTEGER: listen(2)<br />
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.25.0.0.0.0.0 = INTEGER: listen(2)<br />
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.631.0.0.0.0.0 = INTEGER: listen(2)<br />
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.32769.0.0.0.0.0 = INTEGER: listen(2)<br />
.1.3.6.1.2.1.6.13.1.1.127.0.0.1.32776.127.0.0.1.631 = INTEGER: closeWait(8)</p>
<p>My favorite output flag, though, is -Of, which parses each of the numbers above into a human-readable (if very long) name.</p>
<p>The OID in the above output is everything before the equals-sign. It's called an object ID because SNMP stores every piece of data as an object. Furthermore, those objects are identified internally as numbers, which get parsed into names on the client side, using a Management Information Base (MIB) file. A MIB is a human-readable text file which is actually extremely handy, since it contains all of the descriptions for the different pieces of data returned. If you're not sure if a particular piece of data is what you're looking for, heading for the MIB file that parsed it is usually a good way to find the answer.</p>
<p>For example, in the first output listing, you can see something called "tcpConnState." At the very beginning of each line, you also see "TCP-MIB." If you want to see a better description of what this value really means, you need to find a file on your system called TCP-MIB.txt; on my Fedora Core 2 machine, MIBs are in /usr/share/snmp/mibs. grep for "tcpConnState" in the file, and scroll down to the description to see what it says. NOTE: Descriptions aren't always useful. Generally, though, the standard MIBs (i.e., not vendor-supplied ones) are good enough to get a clue.</p>
<p>So what's with the long numbers as OIDs? That's ASN.1 notation. Abstract Syntax Notation provides a standard way of describing data independent of any language or application. Agents are written to provide data using ASN.1, and client applications are written to handle that data in any language and in any way the developers see fit. The goal is generalization, and it would appear that it works. LDAP and SNMP both use ASN.1 notation, and the tools built around these two protocols (snmpwalk, ldapsearch, etc.) handle the task of making the output readable by humans. In LDAP parlance, a MIB is called a "schema." The rest is very similar from a data representation perspective.</p>
<p>For SNMP data (as well as LDAP), the ASN.1 numbers actually represent a hierarchical structure -- similar to the way the directory on your system is hierarchical in nature. In fact, you could look at the numeric output above, and think of .1 as the / or root directory. The fact that it's followed by a 3 would seem to imply that there are at least two other nodes under that top-level node, and you'd be right in assuming that. The same goes for all of the numbers all the way down the line. In fact, you could think of the command snmpwalk -Of -v2c -c public localhost tcp as simply running ls -lR on the tcp directory within the hierarchy.</p>
<p>What SNMP can do for you</p>
<p>Here are some quick one-liners that illustrate some cool stuff about your system. These were tested on my FC2 laptop, as well as a SUSE 9.1 workstation:</p>
<p>* snmpwalk -Ov -OQ -v2c -c public localhost .1.3.6.1.2.1.25.6.3.1.2</p>
<p>This lists the names of every installed package on the machine. It essentially does the same thing as rpm -qa on an RPM-based distro, but it's slightly easier to grab the information from a remote location using SNMP. There are lots of those -O flags available. The O stands for "output," and you can stack them as I've done here in order to strip out everything but the actual value. For more on this, see the snmpcmd manpage.<br />
* snmpwalk -Of -v2c -c public localhost interfaces | grep ".2 ="</p>
<p>This walks the interfaces directory and grabs anything pertaining to what amounts to "interface 2." The interfaces are indexed numerically, and interface 1 is generally the loopback. For each interface, a host of values is displayed, so if you run something like this on a huge switch and aggregate and parse the data, you can create some extremely useful data.<br />
* snmpwalk -OQ -Ov -v2c -c public localhost .1.3.6.1.2.1.25.4.2.1.2</p>
<p>This gets you a quick list of the programs running on a remote (or in this case, a local) host. The processes are also indexed, and you can get other information about them if you want to do a little scripting.</p>
<p>Plenty more where this came from</p>
<p>This is the tip of the iceberg. For avid scripters, I've used both the Perl and PHP SNMP interfaces, and both are immensely useful. Also, don't think that SNMP is limited in use to Linux boxen; SNMP agents have been written for everything from large UPS units to tiny humidity sensors that'll send a trap if your machine room starts to resemble a swampland. If there's something in your environment with an Ethernet jack on it, there's probably an SNMP agent for it.</p>
<p>I haven't even mentioned the notion of actually making configuration changes via the snmpset command, but I urge you to investigate it for yourself. There's a whole SNMP world out there waiting for you, and taking advantage of it can make your life as an administrator infinitely easier.</p>
<p>转载自：<a href="http://www.linux.com/archive/articles/113774" target="_blank">http://www.linux.com/archive/articles/113774</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1329/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS_4.6_Cacti短信报警设置</title>
		<link>http://www.187299.com/archives/1322</link>
		<comments>http://www.187299.com/archives/1322#comments</comments>
		<pubDate>Wed, 11 Nov 2009 08:19:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1322</guid>
		<description><![CDATA[首先 参考安装Cacti的插件 http://www.php-oa.com/2009/06/04/plugin-architecture.html 参考设置邮件报警，并确认邮件报警是生效的，否则短信报警不会生效 http://www.hiadmin.com/cacti%E9%85%8D%E7%BD%AEe-mail%E6%8A%A5%E8%AD%... ]]></description>
			<content:encoded><![CDATA[<p>首先<br />
参考安装Cacti的插件</p>
<p>http://www.php-oa.com/2009/06/04/plugin-architecture.html</p>
<p>参考设置邮件报警，并确认邮件报警是生效的，否则短信报警不会生效</p>
<p>http://www.hiadmin.com/cacti%E9%85%8D%E7%BD%AEe-mail%E6%8A%A5%E8%AD%A6/</p>
<p>然后，安装飞信<br />
mkdir /root/downloadsss/fetion<br />
cd /root/downloadsss/fetion<br />
下载飞信主程序<br />
wget http://www.it-adv.net/fetion/downng/fetion20090406003-linux.tar.gz<br />
下载飞信用到的库<br />
wget http://www.it-adv.net/fetion/downng/library_linux.tar.gz</p>
<p>mkdir -p /usr/local/tools/fetion/<br />
cd /usr/local/tools/fetion/<br />
tar xzf /root/downloadsss/fetion/fetion20090406003-linux.tar.gz<br />
mv install/ fetion_src<br />
mkdir /usr/local/tools/fetion/lib</p>
<p>释放fetion会用到的库<br />
tar -xzvf /root/downloadsss/fetion/library_linux.tar.gz -C /usr/local/tools/fetion/lib<br />
cd /usr/local/tools/fetion/lib<br />
ln -s libcrypto.so.0.9.8 libcrypto.so.4<br />
ln -s libssl.so.0.9.8 libssl.so.4</p>
<p>###################如果你是CentOS5以上版本（例如CactiEZ9.0），则无需做以下操作#################<br />
由于是在CentOS4.6上安装fetion，所以需要拷贝CentOS5上的一些库文件，幸好网上有人找出来打包好了，下载来用就可以了<br />
下载CentOS4会用到的库<br />
cd /root/downloadsss/fetion<br />
wget http://xok.la/file/2009/04/fetion_lib_rhel4_xok.zip<br />
cd /usr/local/tools/fetion/<br />
unzip /root/downloadsss/fetion/fetion_lib_rhel4_xok.zip<br />
这个fetion_lib_rhel4_xok.zip包里的库文件也不是很全，启动飞信时，提示少一个libgcc_s.so.1，我们去我们自己的CentOS 5.2上scp一个过来<br />
scp 192.168.0.110:/lib/libgcc_s.so.1 /usr/local/tools/fetion/lib<br />
########################如果你是CentOS5以上版本，则无需做以上操作#################</p>
<p>编写飞信的启动脚本<br />
vi /usr/local/tools/fetion/fetion<br />
添加以下内容<br />
#!/bin/bash<br />
prefix=/usr/local/tools/fetion/<br />
LD_LIBRARY_PATH="$prefix/lib${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}"<br />
export LD_LIBRARY_PATH<br />
$prefix/lib/ld-linux.so.2 /usr/local/tools/fetion/fetion_src/fetion "$@"</p>
<p>保存退出<br />
chmod 755 /usr/local/tools/fetion/fetion</p>
<p>至此，飞信就安装好了。</p>
<p>最后，编辑cacti/plugins/thold/thold-functions.php<br />
在thold–functions.php查找function thold_mail($to, $from, $subject, $message, $filename, $headers = ”)行在此行下面加入：<br />
file_put_contents(’/var/www/cacti/plugins/thold/alert.log’, $subject);  # 用file_put_contents函数将$subject写入alert.log文件<br />
exec(’echo $subject  &gt;&gt; /var/www/cacti/plugins/thold/alert.log’);  # 换行<br />
exec(’date +%D/%T  &gt;&gt; /var/www/cacti/plugins/thold/alert.log’); #加入时间标签<br />
exec(’sh /var/www/cacti/plugins/thold/sendsms.sh’);  #执行飞信机器人脚步</p>
<p>编写脚本sendsms.sh自动调用飞信机器人发送报警</p>
<p>#!/bin/sh<br />
#send sms by fetion<br />
#Write by Ethan.Pan<br />
if [ ! -e "/var/www/cacti/plugins/thold/alert.log" ]; then<br />
echo "Usage:alert.log does not exist"<br />
elif [ -n "`cat /var/www/cacti/plugins/thold/alert.log`" ]; then<br />
echo `cat /var/www/cacti/plugins/thold/alert.log`<br />
/usr/local/tools/fetion/fetion --mobile=18888888888 --pwd=123456 --to=1888888882 --msg-type=1 --file-utf8=/var/www/cacti/plugins/thold/alert.log<br />
echo "`cat /var/www/cacti/plugins/thold/alert.log`" &gt;&gt; /var/www/cacti/plugins/thold/sms.txt<br />
echo "exit" &gt;&gt; /var/www/cacti/plugins/thold/sms.txt<br />
echo "Usage:all sms sends"<br />
fi</p>
<p>主要参考文章：</p>
<p>http://hi.baidu.com/ethanpan/blog/item/0c6d0bf0d1ce0ba7a50f5237.html</p>
<p>http://xok.la/2009/03/fetion_2009_to_rhel4_linux4.html</p>
<p>http://www.hiadmin.com/cacti%E9%85%8D%E7%BD%AEe-mail%E6%8A%A5%E8%AD%A6/</p>
<p>http://www.php-oa.com/2009/06/04/plugin-architecture.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1322/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>thold设置报警无法获取所有数据源</title>
		<link>http://www.187299.com/archives/1320</link>
		<comments>http://www.187299.com/archives/1320#comments</comments>
		<pubDate>Tue, 10 Nov 2009 08:48:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1320</guid>
		<description><![CDATA[解决方法：将thold_add.php的第490-523行替换成 if ($graph != '') { $dt = db_fetch_assoc('SELECT DISTINCT data_template_rrd.local_data_id FROM data_template_rrd LEFT JOIN graph_templates_item ON graph_templates_item.task_item_id = data_template_... ]]></description>
			<content:encoded><![CDATA[<p>解决方法：将thold_add.php的第490-523行替换成<br />
if ($graph != '') {<br />
$dt = db_fetch_assoc('SELECT DISTINCT data_template_rrd.local_data_id<br />
FROM data_template_rrd<br />
LEFT JOIN graph_templates_item ON graph_templates_item.task_item_id = data_template_rrd.id<br />
LEFT JOIN graph_local ON graph_local.id=graph_templates_item.local_graph_id<br />
WHERE graph_local.id = ' . $graph);<br />
/* show the data source options */<br />
?&gt;<br />
&lt;tr&gt;<br />
&lt;td width='70' style='white-space:nowrap;'&gt;<br />
&amp;nbsp;&lt;b&gt;Data Source:&lt;/b&gt;<br />
&lt;/td&gt;<br />
&lt;td&gt;<br />
&lt;select name=dsid onChange="applyTholdFilterChange(document.tholdform, 'ds')"&gt;<br />
&lt;option value=""&gt;&lt;/option&gt;&lt;?php<br />
foreach ($dt as $row1) {<br />
$dss = db_fetch_assoc('SELECT DISTINCT id, data_source_name<br />
FROM data_template_rrd<br />
WHERE local_data_id = ' . $row1['local_data_id'] . ' ORDER BY data_source_name');<br />
foreach ($dss as $row) {<br />
echo "&lt;option value='" . $row['id'] . "'" . ($row['id'] == $ds ? ' selected' : '') . '&gt;' . $row['data_source_name'] . '&lt;/option&gt;';<br />
}}?&gt;<br />
&lt;input type=hidden name=dt value="&lt;?php print $row1['local_data_id'];?&gt;"&gt;<br />
&lt;/select&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;&lt;?php<br />
} else {<br />
?&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;<br />
&lt;input type=hidden name=dsid value=""&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;&lt;?php<br />
}</p>
<p>来自over大神</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1320/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cacti无法登陆故障解决一例</title>
		<link>http://www.187299.com/archives/1162</link>
		<comments>http://www.187299.com/archives/1162#comments</comments>
		<pubDate>Mon, 31 Aug 2009 17:16:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1162</guid>
		<description><![CDATA[Cacti0.87b,今天发现不能登陆。 具体表现为： 用户名/密码输入正确、数据库的user_log表中正确记录了登录信息，并且result为1（验证成功），但是页面始终停留在index.php，不能进入 查资料得知，... ]]></description>
			<content:encoded><![CDATA[<p>Cacti0.87b,今天发现不能登陆。</p>
<p>具体表现为：</p>
<p>用户名/密码输入正确、数据库的user_log表中正确记录了登录信息，并且result为1（验证成功），但是页面始终停留在index.php，不能进入</p>
<p>查资料得知，这个现象大多时候是因为php的session异常。</p>
<p>经检查发现，在这台机器上，由于另一服务的日志突然暴增，导致/分区的磁盘容量用尽，session无地方可写。删除异常的日志文件后，问题得到了解决。</p>
<p>另：</p>
<p>cacti的密码是MD5加密的，可以在登录mysql后，用这种方式重置密码</p>
<p>UPDATE user_auth SET password=MD5("yourpassword") WHERE username='admin'</p>
<p>session.save_handler = files</p>
<p>session.save_path = "/tmp"</p>
<p>转载自：<a href="http://www.dbalife.com/archives/146.html" target="_blank">http://www.dbalife.com/archives/146.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1162/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitor设备分组显示</title>
		<link>http://www.187299.com/archives/1151</link>
		<comments>http://www.187299.com/archives/1151#comments</comments>
		<pubDate>Mon, 24 Aug 2009 04:30:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1151</guid>
		<description><![CDATA[额，下面简单描述一下在monitor插件里将设备分组显示（会的朋友就别看了，别骂我谢谢，只提供给没找到的朋友交流一下，谢谢） 首先分组：在“Managemen”里点“Graph Trees”，再点击“default tr... ]]></description>
			<content:encoded><![CDATA[<p>额，下面简单描述一下在monitor插件里将设备分组显示（会的朋友就别看了，别骂我谢谢，只提供给没找到的朋友交流一下，谢谢）<br />
首先分组：在“Managemen”里点“Graph Trees”，再点击“default tree”进去后可以将name修改成你想要的，这个不会在monitor里显示，接下来点击右边的“add”，“Title"里填入你要分的第一个组的名字（支持中文），其他默认，“create”，依此类推，创建所有的组。<br />
再就是在组里添加主机设备，点击已经创建的组名后面的“add”，然后，“Tree Item Type"选择“host”，然后下面就自动列出所有的host主机或者设备，选择一个“create”即可，依此类推。<br />
设置组基本结束，这样monitor里面还是不会以组式显示，点击“configuration”-&gt;"Settings"-&gt;"Misc"，找到monitor的配置区域（关键就是这里），"Gouping"选择"Tree"，"View"里选择"Title"。保存即可，再去monitor看看，OK了！<br />
希望能帮到大家。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1151/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cacti0.8.7d中文版在CentOS5上的安装</title>
		<link>http://www.187299.com/archives/1130</link>
		<comments>http://www.187299.com/archives/1130#comments</comments>
		<pubDate>Mon, 10 Aug 2009 07:17:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1130</guid>
		<description><![CDATA[1、Cacti 0.8.7d 中文版下载地址： http://blog.chinaunix.net/u/4312/showart_1884754.html 下载cacti-0.8.7d-cn-utf8.tar.gz即可 cacti-plugin-0.8.7d-PA-v2.4-cn-utf8.diff.gz这个文件在我安装过程中没有用到 2、安装php,mysql等环境 ... ]]></description>
			<content:encoded><![CDATA[<p>1、Cacti 0.8.7d 中文版下载地址：</p>
<p>http://blog.chinaunix.net/u/4312/showart_1884754.html</p>
<p>下载cacti-0.8.7d-cn-utf8.tar.gz即可<br />
cacti-plugin-0.8.7d-PA-v2.4-cn-utf8.diff.gz这个文件在我安装过程中没有用到</p>
<p>2、安装php,mysql等环境<br />
# yum install yum-priorities<br />
# wget http://apt.sw.be/redhat/el5/en/i386/RPMS.dag/\<br />
rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt<br />
# rpm -K rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
# rpm -Uvh rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
# yum -y install httpd mysql rrdtool perl-rrdtool php-cli php-mysql \<br />
php-snmp net-snmp-libs php-snmp net-snmp net-snmp-devel net-snmp-utils</p>
<p>3、解压缩cacti-0.8.7d-cn-utf8.tar.gz<br />
# cd /var/www/html<br />
# tar /tmp/cacti-0.8.7d-cn-utf8.tar.gz<br />
# mv cacti-0.8.7d-cn-utf8 cacti<br />
请根据Apache的运行用户对www进行修改<br />
# chown -R www.www cacti</p>
<p>4、建立数据库，<br />
# service mysqld start<br />
# mysql<br />
mysql&gt; create database cacti default character set utf8;//gb2312环境为set gb2312，本例使用utf8<br />
mysql&gt; set NAMES 'utf8';//gb2312环境为 set  gb2312<br />
mysql&gt; use cacti;<br />
mysql&gt; source /var/www/html/cacti/cacti.sql<br />
建立用户<br />
mysql&gt; grant all on cacti.* to "cacti166"@"localhost" identified by "cacti166";<br />
mysql&gt; flush privileges;</p>
<p>5、开始安装了<br />
# cd /var/www/html/cacti/include<br />
# cp config.php config.php.090810<br />
# vi config.php<br />
主要修改数据库名，数据库用户和密码<br />
根据第4点的操作，相应项目修改后变成这样<br />
$database_type = "mysql";<br />
$database_default = "cacti";<br />
$database_hostname = "localhost";<br />
$database_username = "cacti166";<br />
$database_password = "cacti166";<br />
$database_port = "3306";</p>
<p>浏览器打开www.yourdomain.com/cacti，如果没什么意外，一直下一步就可以了。<br />
如果提示有些命令找不到，那就查看相应的包是否安装了。<br />
安装好后，默认用户名和密码都是admin，登录进去后，会强制要求修改密码。</p>
<p>6、添加计划任务，定期采集数据<br />
# crontab -e<br />
*/5 * * * *  php /var/www/html/cacti/poller.php &amp;&gt;/dev/null<br />
保存退出<br />
#service crond reload</p>
<p>这里为了能快点看到图，可以先在终端里手动执行几次<br />
php /var/www/html/cacti/poller.php &amp;&gt;/dev/null</p>
<p>问题：<br />
上文提到的是比较大众化的安装方法，我本人的MySQL是手动编译的，mysql.sock放在了/tmp目录下，<br />
导致我执行php /var/www/html/cacti/poller.php &amp;&gt;/dev/null时提示以下错误：<br />
FATAL: Cannot connect to MySQL server on 'localhost'. Please make sure you have specified<br />
a valid MySQL database name in 'include/config.php'</p>
<p>事实上，config.php里的配置是没有错的，因为刚才安装过程一切顺利已经说明了这一点，<br />
网上说poller.php是使用/var/lib/mysql/mysql.sock的，<br />
当我在my.cnf里把mysql.sock定义到/var/lib/mysql/mysql.sock时，poller.php可以连接，<br />
但执行mysql就提示错误了，<br />
我把mysql.sock的位置改为/tmp/mysql.sock，使用网上提供解决办法：<br />
ln -s /tmp/mysql.sock /var/lib/mysql/mysql.sock</p>
<p>问题解决了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1130/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>spine的configure: error: Cannot find MySQL headers</title>
		<link>http://www.187299.com/archives/1002</link>
		<comments>http://www.187299.com/archives/1002#comments</comments>
		<pubDate>Sat, 20 Jun 2009 05:52:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=1002</guid>
		<description><![CDATA[有朋友在ubuntu上安装Cacti的spine，configure时，提示 configure: error: Cannot find MySQL headers.  Use --with-mysql= to specify non-default path. 记得上次在CentOS上安装也出现过这个错误，yum -y install mysql-devel就可以了... ]]></description>
			<content:encoded><![CDATA[<p>有朋友在ubuntu上安装Cacti的spine，configure时，提示<br />
configure: error: Cannot find MySQL headers.  Use --with-mysql= to specify non-default path.</p>
<p>记得上次在CentOS上安装也出现过这个错误，yum -y install mysql-devel就可以了</p>
<p>然后告诉朋友，要他安装mysql-devel，结果输入sudo apt-get install mysql-devel</p>
<p>提示发现没有这个包</p>
<p>Google了下</p>
<p>发现在ubuntu上应该安装libmysqlclient15-dev</p>
<p>sudo apt-get install libmysqlclient15-dev</p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/1002/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cacti的几个常见模块安装配置</title>
		<link>http://www.187299.com/archives/862</link>
		<comments>http://www.187299.com/archives/862#comments</comments>
		<pubDate>Fri, 15 May 2009 06:59:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=862</guid>
		<description><![CDATA[一. squid 1. squid编译时要加入参数–enable-snmp 编辑squid.conf,加入如下行 snmp_port 3401 acl snmppublic snmp_community blog.zhangjianfeng.com snmp_access allow snmppublic snmp_incoming_address 0.0.0.0 snmp_outgoing_address 255.255.255.25... ]]></description>
			<content:encoded><![CDATA[<p>一. squid<br />
1. squid编译时要加入参数–enable-snmp<br />
编辑squid.conf,加入如下行<br />
snmp_port 3401<br />
acl snmppublic snmp_community blog.zhangjianfeng.com<br />
snmp_access allow snmppublic<br />
snmp_incoming_address 0.0.0.0<br />
snmp_outgoing_address 255.255.255.255<br />
2.编辑snmpd.conf,加入如下行<br />
view    systemview    included   .1.3.6.1.4.1.3495.1<br />
proxy -v 1 -c blog.zhangjianfeng.com 127.0.0.1:3401 .1.3.6.1.4.1.3495.1<br />
# 可以手工检查 snmpwalk -v 1 -c blog.zhangjianfeng.com squidIP  .1.3.6.1.4.1.3495.<br />
3.下载三个模版文件<br />
wget http://forums.cacti.net/download.php?id=346<br />
wget http://forums.cacti.net/download.php?id=345<br />
wget http://forums.cacti.net/download.php?id=347<br />
4.在cacti管理页面中导入相关xml文件–”Import Templates”</p>
<p><span id="more-862"></span>二.mysql</p>
<p>http://www.faemalia.net/mysqlUtils/</p>
<p>– cacti server<br />
Put mysql_stats.php and dumpMemcachedStats.php in cacti/scripts/<br />
Import  .XMLs<br />
– mysql server<br />
GRANT PROCESS ON *.* TO cactiuser@’%’ IDENTIFIED by ‘iloveyou’;<br />
GRANT SUPER ON *.* TO cactiuser@’%’ IDENTIFIED BY ‘iloveyou’;</p>
<p>三.apache</p>
<p>http://forums.cacti.net/about9861.html</p>
<p>导入两个xml<br />
将pl脚本放到cacti/scripts/目录下<br />
—apache服务器<br />
ExtendedStatus On</p>
<p>SetHandler server-status<br />
Order deny,allow<br />
Deny from all<br />
Allow from cactiserverip</p>
<p>四.nginx</p>
<p>http://forums.cacti.net/about26458.html</p>
<p>– nginx server<br />
location /nginx_status {<br />
stub_status on;<br />
access_log   off;<br />
}<br />
– cacti server<br />
cp get_nginx_clients_status.pl /scripts/<br />
cp get_nginx_socket_status.pl /scripts/<br />
chmod 0755 /scripts/get_nginx_socket_status.pl<br />
chmod 0755 /scripts/get_nginx_clients_status.pl<br />
手工检查 get_nginx_clients_status.pl http://nginx.server.ip/nginx_status<br />
# 如出现no (LWP::UserAgent not found)<br />
# perl -MCPAN -e shell<br />
# cpan&gt; install LWP::UserAgent<br />
在CACTI中建图的时候需要填写一下URL of nginx stub status为完整URL，如http://xx.xx.xx.xx/NginxStatus</p>
<p>五.memcached</p>
<p>http://dealnews.com/developers/cacti/memcached.html</p>
<p>1. Python Client API Installation<br />
下载python-memcached  ftp://ftp.tummy.com/pub/python-memcached/<br />
tar xzf python-memcached-.tar.gz<br />
python setup.py install<br />
2. Template Installation<br />
wget http://content.dealnews.com/dealnews/developers/cacti-memcached-1.0.tar.gz<br />
复制memcached.py 到 /scripts/<br />
测试 python /scripts/memcached.py -p portnumber<br />
默认端口号是11211,如果memcache的监听端口不是这个,需要调整<br />
1). Data Input Methods - Memcached - Statistics<br />
2). Under the Data Input Methods section, in the Input String textbox, add -p PORT before<br />
e.g. python /scripts/memcached.py -p 2345</p>
<p><!--一. squid<br />
1. squid编译时要加入参数&#8211;enable-snmp<br />
编辑squid.conf,加入如下行<br />
snmp_port 3401<br />
acl snmppublic snmp_community blog.zhangjianfeng.com<br />
snmp_access allow snmppublic<br />
snmp_incoming_address 0.0.0.0<br />
snmp_outgoing_address 255.255.255.255<br />
2.编辑snmpd.conf,加入如下行<br />
view    systemview    included   .1.3.6.1.4.1.3495.1<br />
proxy -v 1 -c blog.zhangjianfeng.com 127.0.0.1:3401 .1.3.6.1.4.1.3495.1<br />
# 可以手工检查 snmpwalk -v 1 -c blog.zhangjianfeng.com squidIP  .1.3.6.1.4.1.3495.<br />
3.下载三个模版文件<br />
wget http://forums.cacti.net/download.php?id=346<br />
wget http://forums.cacti.net/download.php?id=345<br />
wget http://forums.cacti.net/download.php?id=347<br />
4.在cacti管理页面中导入相关xml文件&#8211;&#8221;Import Templates&#8221;<br />
二.mysql</p>
<p>http://www.faemalia.net/mysqlUtils/</p>
<p>&#8211; cacti server<br />
Put mysql_stats.php and dumpMemcachedStats.php in cacti/scripts/<br />
Import  .XMLs<br />
&#8211; mysql server<br />
GRANT PROCESS ON *.* TO cactiuser@&#8217;%&#8217; [...]</p>
<p>--></p>
<div class="feedback"><!--	 		--></div>
<p># Last modified at:  February 13th, 2009  11:14am</p>
<p><!--– 转载声明开始   –-->载自:  Jeffrey’s Blog [<a href="http://blog.zhangjianfeng.com/">http://blog.zhangjianfeng.com</a>]<br />
本文链接:  <a title="cacti的几个常见模块安装配置笔记" href="http://blog.zhangjianfeng.com/article/1166">http://blog.zhangjianfeng.com/article/1166</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/862/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cacti可以监控的东西</title>
		<link>http://www.187299.com/archives/824</link>
		<comments>http://www.187299.com/archives/824#comments</comments>
		<pubDate>Wed, 13 May 2009 14:54:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=824</guid>
		<description><![CDATA[Cacti可以监控的东西,下面看看，可多啦 Handy Repopulate Poller Cache Script Download and Documentation http://forums.cacti.net/about10292.html New Advanced Ping Template Version Download and Documentation http://forums.cacti.net/about10049.h... ]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Arial;"><span style="font-family: Verdana;">Cacti可以监控的东西,下面看看，可多啦</span></span></p>
<p><span style="font-family: Verdana; font-size: xx-small;"> </span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="font-family: Verdana; font-size: xx-small;"><span style="color: #cc0066;"><strong>Handy Repopulate  				Poller Cache Script</strong></span></span></span></span></p>
<p><span style="font-family: Verdana; font-size: xx-small;"><span style="color: #cc0066;">Download and Documentation</span></span></p>
<p><span style="font-family: Verdana; font-size: xx-small;"><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10292.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10292.html</span></span></a><span style="font-size: larger;"></span></span></p>
<p><span style="font-family: Verdana; font-size: xx-small;"><strong><span style="color: #cc0066;">New Advanced Ping Template Version<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation</span></span></p>
<p><span style="font-family: Verdana; font-size: xx-small;"><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10049.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10049.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"> </span></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Powerware 9120 UPS  				via </strong></span></span></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink1" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">SNMP</span></span></a><br />
</strong></span><br />
<span style="color: #cc0066;">Download and Documentation</span></span></span></p>
<p><a href="http://forums.cacti.net/about5427.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about5427.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"> </span></span><span style="font-size: x-small;"></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Smoke Ping Like</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8503.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8503.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Apache stats Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9861.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9861.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Dell  				PowerEdge(1750,2650,2800,6650)/PowerVault Templates -  				Temperature</strong><br />
PowerEdge 2650 template also works with a PowerVault 775N</span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><span style="color: #cc0066; font-size: x-small;"><a href="http://forums.cacti.net/about15451.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about15451.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>ZXTM </strong></span></span></span><span style="color: #cc0066; font-size: x-small;"><span style="font-size: larger;"><span style="font-family: Arial;"><strong><a id="KonaLink2" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">load </span><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">balancer</span></span></a> product  				from Zeus templates</strong> </span></span></span></p>
<p><span style="color: #cc0066; font-size: x-small;">Downloads and Documents </span></p>
<p><span style="color: #cc0066; font-size: x-small;"><a href="http://forums.cacti.net/about15287.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about15287.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Cisco SAN MDS9020  				Switch Port statistics</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about15797.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about15797.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span id="more-824"></span></span></span><span style="color: #cc0066;"><strong>Arris C3 CMTS template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about15807.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: x-small;"></span><span style="font-size: larger;"><span style="font-family: Arial;">/about15807.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Cisco ADSL info </strong> </span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a href="http://forums.cacti.net/about15157.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about15157.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>VPN connections on a  				Nortel Contivity </strong></span></span></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink3" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">router</span></span></a><br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a href="http://forums.cacti.net/about15156.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about15156.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><strong><span style="color: #cc0066;">Trango M5830S, host template w/  				dependencies (queries, etc.)<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7572.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7572.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Windows uptime statistics</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10514.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10514.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>ucd/net-SNMP lmSensors Template<br />
</strong></span><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11590.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11590.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Multi CPU Utilization Graph</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11615.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11615.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Barracuda Spam Firewall Templates</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14951.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14951.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>UPS Smart APC templates</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about15908.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about15908.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Sonicwall Templates</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><a href="http://forums.cacti.net/about2893.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about2893.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink4" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 12px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">JBoss</span></span></a> snmp-adaptor Templates</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><a href="http://forums.cacti.net/about16322.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about16322.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Monitoring 4PSA CleanServer and  				SpamGuardian on Linux/Plesk</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><a href="http://forums.cacti.net/about16961.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about16961.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>QueueStats -- Graph Qmail Local and  				Remote queue sizes</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><a href="http://forums.cacti.net/about4455.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about4455.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Postfix Queues Templates</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><a href="http://forums.cacti.net/about16480.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about16480.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><strong><span style="color: #cc0066;">aggrated traffic (2links) Templates</span></strong></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about15902.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about15902.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Sendmail &amp; Mailscanner version 2</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about15651.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about15651.html</span></span></a></p>
<p><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Cisco SAA Jitter/Jitter-error/http  				template</span></strong></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;">Download and  				Documentation<strong><span style="color: #cc0066;"><br />
</span></strong><br />
</span></span><span style="font-size: x-small;"><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4136.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4136.html</span></span></a></span><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco NBAR Protocol Statistics Query</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8050.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8050.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">MIB Protocol Statistics</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11001.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11001.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>BIND 9 Statistics Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3018.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3018.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">UNIX Template Set for Cacti: HP-UX,  				Solaris, </span></strong><span style="font-size: larger;"><span style="font-family: Arial;"><strong><span style="color: #cc0066;"><a id="KonaLink5" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Linux</span></span></a><br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
</span></span><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11634.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11634.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">IIS - WWW Graph templates<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12464.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12464.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Host template for Network Appliance  				storage arrays and more</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5954.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5954.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Aggregation of 2,3, and 4 sources for  				Bandwidth</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10465.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10465.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">BES (BlackBerry Enterprise Server)  				template using WMI<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13721.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13721.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Monitor Windows Service stats from  				Linux<br />
</strong></span><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11232.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11232.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Game </span></strong><span style="font-size: larger;"><span style="font-family: Arial;"><strong><span style="color: #cc0066;"><a id="KonaLink6" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Server</span></span></a> Reporting - UT2004, QW,  				BF1042, BFV, COD, HL Templates</span></strong></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3735.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3735.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Poller Time Template<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14882.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14882.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Postifx monitoring Template</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6657.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6657.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Postfix monitoring with David  				Schweikert's Mailgraph</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about1571.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about1571.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">WeatherBug script &amp; templates<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8821.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8821.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>ucd/net snmp Device (Disk) I/O  				templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8777.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8777.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">PPP / PPPoE User Traffic Graphs</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12280.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12280.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Windows 2000 / 2k3 Disk Statistics<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10707.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10707.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco BGP graph Templates<br />
</strong></span><br />
<span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12327.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12327.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">W32 CPU (any number of </span></strong><span style="font-size: larger;"><span style="font-family: Arial;"><strong><span style="color: #cc0066;"><a id="KonaLink7" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">processors</span></span></a>) Perl  				Script via WMI<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
</span></span><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4370.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4370.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Windows Memory Usage Template</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4739.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4739.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Liebert GXT UPS Template</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8760.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8760.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Traffic between 2 peers Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13931.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13931.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>ASSP </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink8" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">antispam</span></span></a> statistics<br />
</strong></span><br />
<span style="color: #cc0066;">Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6996.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6996.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Exchange 2003 scripts from Windows  				Cacti</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12383.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12383.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Packet Shaper Template</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12814.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12814.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>AS400 CPU Utilization Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4523.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4523.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">memcached Host Template and Graphs<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14605.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14605.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Host template for </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink9" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Compaq</span></span></a> (HP) Insight  				Manager<br />
</strong></span><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
</span></span><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4222.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4222.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Cisco CSS SNMP rosetta stone<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5114.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5114.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">Interface errors scripts and templates<br />
</span></strong><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12660-0-asc-15.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12660-0-asc-15.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>NetApp WebCache Host Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3143.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3143.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Bluecoat Proxy Template (inc fan &amp;  				temp)<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9302.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9302.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Nokia IP </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink10" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Firewall</span></span></a> Checkpoint Template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12292.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12292.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Groupwise Statistics Script(s)</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7536.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7536.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Sendmail &amp; Mailscanner (alternate)  				Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7830.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7830.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>CISCO SLB(Load Balancer) Templates<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12448.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12448.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco Pix - Authenticated VPN Users  				Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14410.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14410.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>icecast statistic Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7713.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7713.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>NUT (Network UPS Tools) Status Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14475.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14475.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Quick and dirty script to add devices  				to cacti</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7683.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7683.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Netscreen </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink11" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">CPU </span><span class="kLink" style="color: #009900 ! important; position: static;">Memory</span></span></a> and Session stats</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3078.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3078.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>SuperMicro SuperoDoctor sensors  				Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11722.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11722.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>FLEXlm Template and script set</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12450.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12450.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Foundry bigiron templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11422.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11422.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>snmpdiskio (Disk I/O statistics on  				Linux)</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12742.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12742.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>APC Environment Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11794.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11794.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>AIX Host Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6072-0-asc-0.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6072-0-asc-0.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco Environmental Monitoring (Temp,  				Voltage) Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10491.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10491.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Dell PowerEdge 2650 System Temperature</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4368.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4368.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>sendmail mailstats template / script<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14370.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14370.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>dhcpd-snmp Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14345.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14345.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Templates for Riello UPS</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14330.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14330.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cablemodem template &amp; </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink12" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">perl </span><span class="kLink" style="color: #009900 ! important; position: static;">script</span></span></a></strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8688.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8688.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Windows Services monitoring with WMI</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13562.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13562.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Win32 - Monitor running processes  				Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6661.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6661.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Brocade Fibre Channel templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6346.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6346.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Netvision UPS - Scomec Sicon</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6942.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6942.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Sensatronic EM1 monitors</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14103.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14103.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>SNMP Printer Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12970.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12970.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>exim statistics Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14143.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14143.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>cmts templates for Arris C3,and  				Motorola BSR 1000</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12328.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12328.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink13" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">CPU </span><span class="kLink" style="color: #009900 ! important; position: static;">Usage</span></span></a> for Solaris<br />
</strong></span><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
</span></span><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4742.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4742.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Skystream - iPlex Host Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14075.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14075.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Windows 2003 Domain Controller NTDS  				Stats</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about14062.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about14062.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>windows media server Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13737.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13737.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>NetApp qtrees Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13089.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13089.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>DOCSIS </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink14" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Cable </span><span class="kLink" style="color: #009900 ! important; position: static;">Modem</span></span></a> Stats Template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11626.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11626.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>netapp space available query template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11446.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11446.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>MySQL Stats Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11010.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11010.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Allot NetEnforcer Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12177.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12177.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Djbdns stats template<br />
</strong></span><br />
<span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10993.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10993.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Win32 - </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink15" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Motherboard</span></span></a> Monitor 5 via SNMP  				Template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7050.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7050.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>script to alert you if any network  				ports go above a %</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13557.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13557.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>DELL PowerEdge 1750 Fan Speed Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12530.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12530.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>TCP &amp; HTTP Server Response Time: Script  				&amp; Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11020.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11020.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>CISCO CMTS SNMP QUERY/GRAPH  				TEMPLATES/DATA TEMPLATES</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13519.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13519.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink16" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">Cisco </span><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">pix </span><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">firewall</span></span></a> template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3050.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3050.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>RMON Group 1 Etherstats - Templates<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8367.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8367.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Templates to Cisco uBR (SNR, FEC,  				Modems Ups, Interf Utiliz)</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10443.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10443.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>IBM Lotus Notes Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13222.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13222.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink17" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Microsoft</span></span></a> DHCP Free / In Use Script</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6005.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6005.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>W32 DNS Statistics Perl Script using  				WMI</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4426.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4426.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;">J<strong>uniper FRU statistics Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11320.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11320.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Novell Netware CPU and Memory graphing</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13141.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13141.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Checkpoint Firewall Packet Statistics</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about13532.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about13532.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>APC UPII Monitoring  				via Windows from *nix Cacti<br />
</strong></span><br />
<span style="color: #cc0066;">Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about16194.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about16194.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">hddtemp template (update)</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about15743.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: x-small;"></span></a><span style="font-size: larger;"><span style="font-family: Arial;"><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about15743.html" target="_blank">/about15743.html</a></span></span><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Dell PowerEdge 2650 Fan RPMs</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4369.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4369.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Graphing Windows NT hosts via SNMP</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8579.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8579.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco Aironet </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink18" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">wireless </span><span class="kLink" style="color: #009900 ! important; position: static;">access </span><span class="kLink" style="color: #009900 ! important; position: static;">point</span></span></a> graph</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4901.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4901.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Virtual counter64 SNMP support Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9952.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9952.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>f5 BigIP Load Balancer Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12773.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12773.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>VPN Tunnel monitoring Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12873.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12873.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Monitoring Exchange 2003 from Linux  				Cacti</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11589.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11589.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Host Template for Nortel Alteon 180  				series<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about15021.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about15021.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink19" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">HP </span><span class="kLink" style="color: #009900 ! important; position: static;">Laserjet</span></span></a> 2300 and 2500 Percentage  				Templates<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12840.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12840.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>3Com Total Control HiPer NMP - Modem  				Utilization<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about2818.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about2818.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Trango T-Link10 and Atlas RSSI and  				Traffic Graphs<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10631.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10631.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Net-SNMP lm_sensors temperature, fan  				speed, voltage monitor</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8323.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8323.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink20" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Powerware </span><span class="kLink" style="color: #009900 ! important; position: static;">UPS</span></span></a> via SNMP</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5427.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5427.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>HDD Temperature Script</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about15020.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about15020.html</span></span></a><span style="font-size: larger;"></span></p>
<p><strong><span style="color: #cc0066;">smartmontools - hdd temperature checker  				script</span></strong></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4714.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4714.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Ethernet Stats(RFC1643) </strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3805.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3805.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>TCP Connection Status</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12787.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12787.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Juniper M20 Memory / Temps / </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink21" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">CPU</span></span></a> Graphs<br />
</strong><br />
Download and Documentation<br />
</span><br />
</span></span><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12792.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12792.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>HP-UX Host template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10594.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10594.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>tcp connections script</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12766.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12766.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Read Windows 2000 mem stats from Linux  				(informant)</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6255.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6255.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>APC rack pdu Templates<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7612.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7612.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink22" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">Windows </span><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">2000</span></span></a> / 2k3 Disk Statistics</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12468.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12468.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco Cache Engine Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9438.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9438.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Netscreen (Juniper) 5.0 Tunnel  				interface graphs<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11873.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11873.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco - Riverhead DDos Guard Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12859.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12859.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>HP Laserjet 4100 and 4600 Percentage  				Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12841.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12841.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink23" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">Monitor</span></span></a> Vmware ESX Template<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3730.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3730.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco Class Map Statistics</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10220.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10220.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>NetFlow Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3655.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3655.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>JBOSS Console Page Memory Check<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12802.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12802.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Monitoring Oracle</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7567.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7567.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Mikrotik SNMP Queue Tree Monitor<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10373.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10373.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>IPMI sensors Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11593.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11593.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Domino R6 mail stats - Graph template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12627.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12627.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>HP 2500 </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink24" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Laser </span><span class="kLink" style="color: #009900 ! important; position: static;">Color </span><span class="kLink" style="color: #009900 ! important; position: static;">Printer</span></span></a> Template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6941.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6941.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>cisco CBWFQ QoS monitoring</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12485.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12485.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>DELL PowerEdge 1750 - Temperature<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12529.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12529.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Sensatronics TempTrax monitoring  				template and script set<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12451.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12451.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Template: </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink25" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">HP </span><span class="kLink" style="color: #009900 ! important; position: static;">Inkjet</span></span></a> 3000 - network  				printer ink levels<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12428.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12428.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Dell Poweredge Servers Temperature  				Templates<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11189.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11189.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Allied Telesyn iMAP 9700 DSLAM  				Templates<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12330.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12330.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Solaris CPU graph template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about12272.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about12272.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>plethora of windows nsclient scripts</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9513.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9513.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Graph templates for Squid</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4142.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4142.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>ZyXEL NAT Statistics<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11530.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11530.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Extreme </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink26" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Networks</span></span></a> Host Template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6909.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6909.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Netscreen Template to monitor traffic  				for sub-interfaces</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11064.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11064.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Microsoft IIS current connection  				template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10080.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10080.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Black Box Servsensor jr host template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11649.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11649.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>TrippLite PowerAlert 12 UPS stats<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11627.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11627.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>SQL Server 2000 Connections via WMI<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5225.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5225.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>MGE UPS Tempate</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11257.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11257.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>SHOUTCAST streaming </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink27" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">server </span><span class="kLink" style="color: #009900 ! important; position: static;">Monitoring</span></span></a><br />
</strong><br />
Download and Documentation<br />
</span><br />
</span></span><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5286.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5286.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>APC MasterSwitch VM Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11258.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11258.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco 3000 VPN Concentrator - Sessions<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4018.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4018.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Show locked Machines, Shares and Files  				from a Samba Server<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7516.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7516.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Citrix Presentation Server - Sessions -  				Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about11015.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about11015.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Active FTP/SSH/Telnet/Samba Connections  				- Uses SNMP+BASH</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9097.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9097.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>WxGoose Climate Monitor<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4367.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4367.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Graphing Physical/Paging memory from  				Insight Manager<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10252.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10252.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>NetScreen,Nokia,Cisco,Fortigat</strong></span><span style="color: #cc0066;"><strong></strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>e  				Templates</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10085.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10085.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>APC Environmental Management System  				Templates<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10956.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10956.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco CallManager MGCP PRI usage  				Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10857.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10857.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco Callmanager Active/Inactive  				Phones Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10882.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10882.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Smart UPS3000 Integrated Temperature<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10883.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10883.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>FatPipe Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10840.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10840.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink28" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Foundry</span></span></a> Networks ServerIron load  				balancer host template<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7533.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7533.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco Gatekeeper LocalZone Statistics  				Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10769.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10769.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco Call Manager - Phones Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10209.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10209.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco ASA templates - YMMV</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10589.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10589.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>SNMP - Informant - Windows Paging  				Activity</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10342.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10342.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Liebert Air Conditioners<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6750.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6750.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Windows Ping Script<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8497.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8497.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Juniper Firewall Table Packets<br />
</strong><br />
Download and Documentation</span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"> </span></span><span style="font-size: x-small;"><a href="http://forums.cacti.net/about4189.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about4189.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>SocketStats Template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4036.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4036.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>qmail +net-snmp template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9859.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9859.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink29" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">Compaq </span><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">Server</span></span></a> Health Query Template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about2802.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about2802.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>w32 Windows2000 TerminalService  				Sessions counter<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9339.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9339.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>wireless link quality (Funkwerk, ARTEM  				W1000) Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10203.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10203.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>TeamSpeak - Current Players Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7505.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7505.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Bintec XL2, Watchguard X5000, IP  				Forward Graph<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10077.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10077.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>F5 BigIP Virtual Server Query Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5929.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5929.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Windows pagefaults Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about10033.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about10033.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>AccuWeather script &amp; templates<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8820.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8820.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>W32 - Process Stats </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink30" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Data </span><span class="kLink" style="color: #009900 ! important; position: static;">Query</span></span></a> Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
</span></span><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9580.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9580.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Huawei Router NE80 Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9702.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9702.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>watching number of processes over snmp</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9805.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9805.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>LDAP / OpenLDAP scripts for response  				time and operations<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8905.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8905.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Script for Monitoring Network/Switch  				Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8585.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8585.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Reback SMS 1800 Scripts<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9692.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9692.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Adding Colours template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6308.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6308.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Juniper (Netscreen) WebVPN Session  				Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9549.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9549.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink31" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">DNS </span><span class="kLink" style="color: #009900 ! important; position: static;">Server</span></span></a> Response Time: Script &amp;  				Templates<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6332.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6332.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco 4500 switche template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4846.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4846.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>D-Link's DES-35xx CPU Usage Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9437.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9437.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Weather via wxer.pl - Weather  				conditions<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6153.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6153.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Script for reading mod_watch statistics<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6770.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6770.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Memory Cache Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4723.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4723.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>phpBB2 scripts</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6468.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6468.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cacti template for Allied Telesyn  				Routers/Switches<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9075.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9075.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>NetApp Graphs</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8748.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8748.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Total CPU Usage for </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink32" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">HP </span><span class="kLink" style="color: #009900 ! important; position: static;">Proliant </span><span class="kLink" style="color: #009900 ! important; position: static;">Servers</span></span></a> Templates<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about9032.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about9032.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco 7200 router template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4845.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4845.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>ucd/net - Swap Usage (SNMP Graph  				Template)<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8973.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8973.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco 6500 switche template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4844.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4844.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Inverse Traffic Graph</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8850.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8850.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Powerware UPS Host Templates<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8849.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8849.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Novel Netware </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink33" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">printer</span></span></a> template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8780.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8780.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Adding template from command line<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8827.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8827.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Archive Script For Graphs</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5404.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5404.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Alteon Application Switch 2208  				templates<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7640.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7640.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Script for analize Cisco "ip  				accounting" output<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about1686.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about1686.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink34" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">FreeBSD</span></span></a> IPFW rule counter Template<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8517.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8517.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Omnitronix Enviromental Monitors - SL10  				templates<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8566.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8566.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Powerware 9305 + 9120 UPS host template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8349.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8349.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>script to get snmp data from the  				ethernetbox of pcmeasure<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7256.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7256.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>W32 </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink35" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">IIS</span></span></a> W3SVC Perl Script via check_nt<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7131.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7131.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>MRTG to Cacti basic conversion Script (  				Bash Shell )</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8382.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8382.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>3550 RRD conversion from MRTG RRD to  				Cacti RRD</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8383.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8383.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>SOLA 4000 UPS host template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8347.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8347.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Graph template for interrupts/context  				switching<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about8178.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about8178.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Bluecoat </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink36" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">proxy </span><span class="kLink" style="color: #009900 ! important; position: static;">server</span></span></a> template<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6735.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6735.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Ping Latency Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6900.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6900.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Stalker CommuniGate Pro addon</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4473.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4473.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Data Query - Get SNMP RADIUS  				Information<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7977.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7977.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Supermicro Monitoring (Voltages, Fans,  				CPU/Chassis.)<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6678.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6678.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Least Squres Fitting/Linear Regression  				Trending Graphs<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5203.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5203.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco PVC Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7606.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7606.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>ClientExec monitoring  				(active/cancelled/pending)<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7705.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7705.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Vbulletin Posts/Threads/Users Templates<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7271.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7271.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>MailScanner/SendMail/Spamassas</strong></span><span style="color: #cc0066;"><strong></strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>sin  				Templates</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7618.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7618.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco catOS host template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4356.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4356.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Graph/data templates for Riverstone </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink37" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">CPU </span><span class="kLink" style="color: #009900 ! important; position: static;"> Utilization</span></span></a><br />
</strong><br />
Download and Documentation<br />
</span><br />
</span></span><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7431.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7431.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cacti template for Windows uptime -  				requires nsclient<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5823.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5823.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cacti log statistics</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7416.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7416.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>IBM xSeries Temperature Script</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5978.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5978.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>interface fired, proxy squid http  				fired,cpu load Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6054.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6054.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>MS Internet Authenticate Server<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about7084.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about7084.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>HP-UX </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink38" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">File </span><span class="kLink" style="border-bottom: 1px solid #009900; color: #009900 ! important; position: static; background-color: transparent;">system</span></span></a> snmp indexed query  				script</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3850.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3850.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Patch to implement database independent  				Cacti<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6080.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6080.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Rittal-CMC Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6848.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6848.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Addons to monitor smartBridges devices</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3952.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3952.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>ISDN Call Stats Query Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about2943.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about2943.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink39" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Unix</span></span></a> - Multi Ping Host Templates<br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6662.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6662.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco router - buffer failure templates<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4333.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4333.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Ikonboard Active Users Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5775.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5775.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Mapping disk usage Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5481.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5481.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Brocade FC Switch Query Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5244.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5244.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Printer MIBS</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4422.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4422.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Netopia Router Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6077.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6077.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Step-by-Step for graphing temperature  				of </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink40" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Sun</span></span></a></strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about6036.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about6036.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Netbotz Devices host Template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5962.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5962.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Uptime Devices Host Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5961.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5961.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>F5 BigIP SSL Proxy Query</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5928.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5928.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco ASs DS0 Usage Templates</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5712.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5712.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Count processes</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5789.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5789.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>perl scripts for monitoring </strong></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink41" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Windows </span><span class="kLink" style="color: #009900 ! important; position: static;"> servers</span></span></a><br />
</strong><br />
Download and Documentation</span></span></span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about1474.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about1474.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco routers (cpu, temperature and  				memory) templates<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5603.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5603.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>templates for MGE UPS Pulsar Extreme C</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5459.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5459.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco 2900-3500 switche template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4843.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4843.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Windows Memory Template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4722.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4722.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Graph Qmail Local and Remote queue  				sizes<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4455.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4455.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>NTP stats</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4768.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4768.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>SQL Server 2000 Buffer Manager Pages  				via WMI<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5265.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5265.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>W32 System via WMI</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5226.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5226.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink42" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">Cisco</span></span></a> Remote Ping Template and script</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5107.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5107.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Exchange 2003 RPC Information</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5227.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5227.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Proxim ORiNOCO AP-4000 Template<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about5164.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about5164.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Postfix Mail queue<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4864.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4864.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco 2600-3600 router template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4841.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4841.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Windows Processor<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4668.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4668.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco 2600-3600 RAS router template<br />
</strong><br />
Download and Documentation<br />
</span><br />
<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4842.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4842.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Script to repair spikes in all your .rrd  				files at once<br />
</strong><br />
Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4451.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4451.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Template for interface bits/sec with  				percentage</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about4298.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about4298.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Windows IIS/W3SVC script</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about2954.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about2954.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Cisco DSL Sessions XML</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3874.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3874.html</span></span></a><span style="font-size: larger;"></span></p>
<p><span style="color: #cc0066;"><strong>Aironet Associated clients template</strong></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about3055.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about3055.html</span></span></a></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Mikrotik RouterOS  				Registration Tables</strong> </span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about17936.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about17936.html</span></span></a></span></p>
<p><span style="color: #cc0066;"><span style="font-size: larger;"><span style="font-family: Arial;"><strong><a id="KonaLink43" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">IBM </span><span class="kLink" style="color: #009900 ! important; position: static;">Server</span></span></a> Templates</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about17708.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about17708.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Win32 Disk Stats</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about17776.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about17776.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Cisco Router - Class Map  				statistics</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about17775.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about17775.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Alvarion BreezeAccess-VL  				BU/RB Template</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about17749.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about17749.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Cisco interface  				operational status monitor</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about17722.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about17722.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Templates for Sun ONE  				webserver and Sun ONE directory server</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about16638.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about16638.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>ApacheStats 0.6 (</strong></span></span></span><span style="color: #cc0066;"><span style="font-size: larger;"><span style="font-family: Arial;"><strong><a id="KonaLink44" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">PHP </span><span class="kLink" style="color: #009900 ! important; position: static;"> Script</span></span></a> Server Version)</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about17995.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about17995.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Cisco routers (cpu,  				temperature and memory) templates</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about5603.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about5603.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Fast Class Based  				Weighted Fair Queuing (CBWFQ) QoS Poller for Windows Only </strong> </span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about18103.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about18103.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>New and more Poller  				Statistics (0.8.6i based)</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about18057.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about18057.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Interscann VirusWall </strong> </span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about18066.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about18066.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Dell PowerEdge Data  				Queries</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about18227.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about18227.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>APC Symmetra graphs</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation </span></p>
<p><span style="color: #cc0066;"><a href="http://forums.cacti.net/about18188.html"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net/about18188.html</span></span></a></span></p>
<p><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong>Monitoring </strong></span></span></span><span style="font-size: larger;"><span style="font-family: Arial;"><span style="color: #cc0066;"><strong><a id="KonaLink45" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.debianhelp.co.uk/cactitemplates.htm#" target="_new"><span style="color: #009900 ! important; font-size: 13px; position: static;"><span class="kLink" style="color: #009900 ! important; position: static;">HP </span><span class="kLink" style="color: #009900 ! important; position: static;">Printer </span><span class="kLink" style="color: #009900 ! important; position: static;">Toner</span></span></a> Levels</strong></span></span></span></p>
<p><span style="color: #cc0066;">Download and Documentation</span></p>
<p><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://forums.cacti.net/about2771.html" target="_blank"><span style="font-size: larger;"><span style="font-family: Arial;"> http://forums.cacti.net</span></span><span style="font-size: larger;"><span style="font-family: Arial;">/about2771.html</span></span></a></p>
<p>转载本站文章请注明，转载自：<strong>扶凯</strong>[<a href="http://www.php-oa.com/">http://www.php-oa.com</a>]</p>
<p>本文链接: <a title="Cacti可以监控的东西" href="http://www.php-oa.com/2008/03/15/cacti.html">http://www.php-oa.com/2008/03/15/cacti.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/824/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS5.0上用yum方式安装Cacti0.8.7d</title>
		<link>http://www.187299.com/archives/819</link>
		<comments>http://www.187299.com/archives/819#comments</comments>
		<pubDate>Wed, 13 May 2009 14:45:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>

		<guid isPermaLink="false">http://www.187299.com/?p=819</guid>
		<description><![CDATA[上次安装不成功，最终放弃，总是不甘心，这次重来，这次安装还算顺利！发现有些事情，放一放，重新来，就会有新的思路，也会发现新的方法，但所有的事情都经得起等待吗？ 1、首先，激... ]]></description>
			<content:encoded><![CDATA[<p>上次安装不成功，最终放弃，总是不甘心，这次重来，这次安装还算顺利！发现有些事情，放一放，重新来，就会有新的思路，也会发现新的方法，但所有的事情都经得起等待吗？</p>
<p>1、首先，激活额外的yum源</p>
<p># yum install yum-priorities<br />
# wget http://apt.sw.be/redhat/el5/en/i386/RPMS.dag/rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt<br />
# rpm -K rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
# rpm -Uvh rpmforge-release-0.3.6-1.el5.rf.i386.rpm</p>
<p><span id="more-819"></span>2、配置MySQL、Apache、PHP环境<br />
# yum -y install mysql mysql-server php-mysql httpd php</p>
<p>安装完,启动相关的服务，和设置开机启动<br />
# chkconfig --level 235 mysqld on<br />
# chkconfig --level 235 httpd on<br />
# service mysqld start<br />
# service httpd start</p>
<p>3、准备数据库<br />
准备数据库，和设置权限，安装cacti。<br />
# mysqladmin -uroot -p create cacti<br />
# mysql -uroot -p<br />
mysql&gt;grant all on cacti.* to cactiuser@localhost identified by 'cactiuser';<br />
mysql&gt;flush privileges;<br />
mysql&gt;exit</p>
<p>4、安装Cacti<br />
# yum -y install cacti<br />
这里它应该会安装所有依赖的包，具体有哪些不知道了。因为之前配置时，手动装过一些包，用rpm -qa查了下，列出软件包如下，如果以上命令没有装，则手动装下吧</p>
<p>rrdtool<br />
perl-rrdtool<br />
php-cli<br />
php-mysql<br />
php-snmp<br />
net-snmp-libs<br />
php-snmp<br />
net-snmp<br />
net-snmp-devel<br />
net-snmp-utils</p>
<p>这步结束后，它会自动添加cacti系统用户<br />
# grep cacti /etc/passwd<br />
cacti:x:100:101:cacti:/var/www/cacti:/bin/sh</p>
<p>为安全起见，改变cacti的shell</p>
<p>vi /etc/passwd</p>
<p>将</p>
<p>cacti:x:100:101:cacti:/var/www/cacti:/bin/sh</p>
<p>修改为</p>
<p>cacti:x:100:101:cacti:/var/www/cacti:/bin/false</p>
<p>保存退出</p>
<p>还会自动添加计划任务</p>
<p># cat /etc/cron.d/cacti<br />
*/5 * * * *     cacti   php /var/www/cacti/poller.php &amp;&gt;/dev/null</p>
<p>我把它注释了,改用root执行</p>
<p>vi /etc/cron.d/cacti</p>
<p>#*/5 * * * *     cacti   php /var/www/cacti/poller.php &amp;&gt;/dev/null</p>
<p>保存退出</p>
<p># service cond reload</p>
<p>启动snmpd<br />
# chkconfig --level 235 snmpd on<br />
# service snmpd start</p>
<p>5.导入数据，修改数据连接信息</p>
<p>导入数据信息<br />
# cd /var/www/cacti<br />
# mysql -ucactiuser -pcactiuser cacti &lt; cacti.sql</p>
<p>修改数据库连接信息<br />
# vim /var/www/cacti/include/config.php</p>
<p>$database_type = "mysql";<br />
$database_default = "cacti";<br />
$database_hostname = "localhost";<br />
$database_username = "cactiuser";<br />
$database_password = "cactiuser";<br />
$database_port = "3306";</p>
<p>修改目录的属主<br />
# chown -R cacti.cacti /var/www/cacti/rra /var/www/cacti/log<br />
如果打开浏览器，发现不能显示或者显示禁止访问，请将/var/www/cacti目录的属主设置为运行httpd的用户，如nobody<br />
# chown -R nobody.nobody /var/www/cacti<br />
# chown -R cacti.cacti /var/www/cacti/rra /var/www/cacti/log<br />
如果监控时没有图，或有图没数据，请执行以下命令<br />
# chmod -R 777 /var/www/cacti/rra<br />
# chmod -R 777 /var/www/cacti/log</p>
<p>6、配置httpd服务器的配置文件</p>
<p># vim /etc/httpd/conf.d/cacti.conf</p>
<p>Alias /cacti/ /var/www/cacti/<br />
&lt;Directory /var/www/cacti/&gt;<br />
DirectoryIndex index.php<br />
Options -Indexes<br />
AllowOverride all<br />
order deny,allow<br />
AddType application/x-httpd-php .php<br />
php_flag magic_quotes_gpc on<br />
php_flag track_vars on<br />
&lt;/Directory&gt;</p>
<p>重起httpd的服务，让上面的修改生效<br />
# apachectl graceful</p>
<p>7.测试安装是否正常<br />
打开下面的url.</p>
<p>http://server.ip.or.name/cacti</p>
<p>打开网站，点next.选择new install,使用一路回车法.最后完成<br />
最后的用户名为: admin 密码为: admin<br />
第一次登陆，会强制要求修改密码</p>
<p>8.收尾<br />
让系统每5分钟收集,用root用户去执行这个计划任务</p>
<p># crontab -e<br />
*/5 * * * * /usr/bin/php /var/www/cacti/poller.php &gt; /dev/null 2&gt;&amp;1<br />
也可手工跑一次:<br />
/usr/bin/php /var/www/cacti/poller.php &gt; /dev/null 2&gt;&amp;1</p>
<p>建立cacti用户，是为了去执行这个计划任务：/usr/bin/php /var/www/cacti/poller.php &gt; /dev/null 2&gt;&amp;1<br />
假如是用root用户去执行，那么是否就没有必要去新建这个用户呢？我想是的，我现在的/var/www/cacti目录下的文件所有者和组就是httpd的运行用户<br />
rra下的rrd文件所有者和组都是root</p>
<p>如果监控设备很多，可以考虑使用spine方式来获取数据。</p>
<p>奇怪，在添加host后，添加图形时，下拉菜单下，看不到添加网卡流量的图，经过一番查找，找到方法</p>
<p>经过摸索，觉得添加图片的过程应该是这样的，纯属猜测</p>
<p>添加数据查询--添加数据源--添加图片</p>
<p>1）、添加查询</p>
<p>Device--选择主机</p>
<p>Associated Data Queries<br />
Add Data Query:选择SNMP - Interface Statistics<br />
Re-Index Method: 选择None<br />
Add<br />
Save</p>
<p>2）、添加Data Sources</p>
<p>Console--Data Sources--Add-</p>
<p>Selected Data Template---选择Interface-Traffic</p>
<p>Host---选择你要监视的主机</p>
<p>create---Inex value 填入网卡名（Index Value）---save</p>
<p>3）、添加图形：</p>
<p>Console--Graph Management--Add--Selected Graph Template(选择Interface)</p>
<p>4）、将被监控主机添加到图形树</p>
<p>Management--Graph Trees--Default Tree--Add--Tree Item Type（选择Host）--Host（选择要添加的Host）--Graph Grouping Style（Graph Template）--可能还需要点击那个有两个++的图片<br />
这时点击graph就会看到新添加的host了</p>
<p>如果监控不到网卡，请参考：</p>
<h2><a title="Permanent Link: 关于cacti监控不到网卡流量" rel="bookmark" href="../archives/123">关于cacti监控不到网卡流量</a></h2>
<p>参考文章：</p>
<p><a href="http://www.php-oa.com/2008/01/12/centos5-cacti.html" target="_blank">Cacti中文版在Centos5(Rhel5)上的安装</a><br />
<a href="http://blog.csdn.net/yjz0065/archive/2009/03/02/3950478.aspx" target="_blank">Cacti on CentOS 4.x</a><br />
<a href="http://wiki.centos.org/AdditionalResources/Repositories/RPMForge?action=show&amp;redirect=Repositories%2FRPMForge" target="_blank">Installing RPMforge</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.187299.com/archives/819/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
