Dec 11, 2020 | Network Connections, Stats and Bandwidth, Network Monitoring
#!/usr/bin/perl -w # calculate the variance over the latency of 5 consecutive measurements to a host, aka jitter # Cor van Wandelen 10-12-2020 use strict; use warnings; if (($#ARGV + 1) != 1) { print "Usage: jitter.pl host or ip address"; exit; } my @rt = (0,0,0,0,0);...Mar 3, 2020 | Enterprise, Network Monitoring
Basic remote policy. It uses ICMP and UDP to create the following modules: Host alive Host latency SSH Reachable SNMP Available Only enterprise users can view the download links.Jan 2, 2020 | SNMP category, Virtualization
#!/bin/bash # Cor van Wandelen # percentage memory used on VMware host if [ $# -eq 0 ] || [ $# -eq 1 ] then echo “Syntax: ” exit -1 fi USED=`snmpwalk -v2c -c $2 $1 1.3.6.1.2.1.25.5.1.1.2 | cut -d ‘ ‘ -f4 | paste -sd+ | bc` TOTAL=`snmpwalk -v2c...Jul 31, 2019 | Network Monitoring
Pandora Network Traffic Analyzer (Pandora NTA) is a network traffic analysis tool designed for environments where you don’t want, or can’t, use Netflow to do a network analysis. As a base for Pandora NTA/NTOP we use a fork of the NTOP project (of the...Jan 25, 2019 | Enterprise, Network Monitoring
Pandora FMS IPAM DHCP tool provides DHCP monitorization modules for a Windows DHCP server and also complements the information shown in IPAM extension. This is an agent plugin. You must create a collection in your Pandora FMS console. For instance, use a custom...Jul 13, 2018 | SNMP category, Tools
Tool to migrate all SNMP monitoring from a Cacti system to Pandora FMS including historical data. See more at https://blog.pandorafms.org/how-to-migrate-cacti/ Spanish documentation English documentation Cacti to Pandora migration tool...