2007-08-23 Sancho Lerena <slerena@gmail.com>
* pandoradbdata_12_to_13.sql, pandoradb_data.sql: Fixed some problems with network components, and network templates. * README: Updated doc with Guick Install Guide. * godmode/agentes/agent_template.php: Fixed BUG #1770888. * godmode/agentes/configurar_agente.php: Fixed BUG# 1770895. * godmode/agentes/agent_manager.php: Fixed BUG# 1770895 and other new bug not identified when creating an agent and try to access some items. Probably last commit before Beta2.... git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@611 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
5c81337871
commit
51b0151990
|
@ -1,3 +1,18 @@
|
|||
2007-08-23 Sancho Lerena <slerena@gmail.com>
|
||||
|
||||
* pandoradbdata_12_to_13.sql, pandoradb_data.sql: Fixed some problems with
|
||||
network components, and network templates.
|
||||
|
||||
* README: Updated doc with Guick Install Guide.
|
||||
|
||||
* godmode/agentes/agent_template.php: Fixed BUG #1770888.
|
||||
|
||||
* godmode/agentes/configurar_agente.php: Fixed BUG# 1770895.
|
||||
|
||||
* godmode/agentes/agent_manager.php: Fixed BUG# 1770895 and other new bug not
|
||||
identified when creating an agent and try to access some items.
|
||||
|
||||
|
||||
2007-08-22 Sancho Lerena <slerena@gmail.com>
|
||||
|
||||
* pandoradb_data.sql: Fixed undetermined problem with alert data load
|
||||
|
|
|
@ -6,23 +6,29 @@ http://pandora.sourceforge.net
|
|||
What is Pandora FMS
|
||||
-------------------
|
||||
|
||||
Pandora watches your systems and applications, and allows you to know the status of any element of those systems. Pandora could detect a
|
||||
network interface down, a defacement in your website, a memory leak in one of your server app, or the movement of any value of the NASDAQ
|
||||
new technology market. If you want, Pandora could send out SMS message when your systems fails... or when Google's value drop below US$ 33.
|
||||
Pandora watches your systems and applications, and allows you to know the status of any element
|
||||
of those systems. Pandora could detect a network interface down, a defacement in your website,
|
||||
a memory leak in one of your server app, or the movement of any value of the NASDAQ new
|
||||
technology market. If you want, Pandora could send out SMS message when your systems fails...
|
||||
or when Google's value drop below US$ 33.
|
||||
|
||||
Pandora will adjust, like an octopus, to your systems and requirements, because has been designed to be open, modular, multiplattform and
|
||||
easy to customize and use, all integrated into a scalable and distributed architecture.
|
||||
Pandora will adjust, like an octopus, to your systems and requirements, because has been
|
||||
designed to be open, modular, multiplattform and easy to customize and use, all integrated into
|
||||
a scalable and distributed architecture.
|
||||
|
||||
Pandora runs on any operating system, with specific agents for each platform gathering data and sending it to a server, it has specific
|
||||
agents for GNU/Linux, AIX, Solaris, HP-UX, BSD/IPSO, and Windows 2000, XP and 2003.
|
||||
Pandora runs on any operating system, with specific agents for each platform gathering data and
|
||||
sending it to a server, it has specific agents for GNU/Linux, AIX, Solaris, HP-UX, BSD/IPSO,
|
||||
and Windows 2000, XP and 2003.
|
||||
|
||||
Pandora can also monitor any kind of TCP/IP service, without the need to install agents, and monitor network systems such as load
|
||||
balancers, routers, switches, operating systems, applications, or simply printers if you need. Pandora also supports SNMP for collecting
|
||||
data and for receiving traps.
|
||||
Pandora can also monitor any kind of TCP/IP service, without the need to install agents, and
|
||||
monitor network systems such as load balancers, routers, switches, operating systems,
|
||||
applications, or simply printers if you need. Pandora also supports SNMP for collecting data
|
||||
and for receiving traps.
|
||||
|
||||
A few examples of common resources monitored by Pandora could be processor load, disk and memory usage, running processes, log files,
|
||||
environmental factors such as temperature, or application values like strings contained in web pages or any possible way to collect data in
|
||||
an automatic way.
|
||||
A few examples of common resources monitored by Pandora could be processor load, disk and
|
||||
memory usage, running processes, log files, environmental factors such as temperature, or
|
||||
application values like strings contained in web pages or any possible way to collect data in
|
||||
an automatic way.
|
||||
|
||||
Pandora FMS Features
|
||||
--------------------
|
||||
|
@ -52,17 +58,81 @@ Pandora FMS Features
|
|||
* Profiles could be personalized using up to eight security attributes without limitation on groups or profiles.
|
||||
* Filters for collected data to avoid bad data.
|
||||
|
||||
Install
|
||||
-------
|
||||
|
||||
Please visit our online documentation site or download install guides at http://pandora.sourceforge.net
|
||||
|
||||
|
||||
What do I need?
|
||||
---------------
|
||||
|
||||
Perl 5.8, Some Perl modules, MySQL4x or higher, PHP5, and some PHP Modules. See the Installation Documentation or go to
|
||||
http://pandora.sourceforge.net
|
||||
Perl 5.8, Some Perl modules, MySQL4x or higher, PHP5, and some PHP Modules. See the
|
||||
Installation Documentation or go to http://pandora.sourceforge.net
|
||||
|
||||
|
||||
Install
|
||||
-------
|
||||
|
||||
Please visit our online documentation site or download install guides at
|
||||
http://pandora.sourceforge.net.
|
||||
|
||||
|
||||
Quick install guide
|
||||
-------------------
|
||||
|
||||
Install openssh server
|
||||
|
||||
apt-get install ssh
|
||||
|
||||
Download console tarball and uncompress on /tmp/pandora/pandora_console
|
||||
|
||||
cd /tmp
|
||||
tar xvzf /whateveritwere/pandora_console_xxxx.tar.gz
|
||||
|
||||
Install apache, php, mysql (LAMP) and some PHP5 modules:
|
||||
|
||||
apt-get install libapache2-mod-php5 apache2 mysql-server php5-gd php5-mysql pear php5-snmp
|
||||
|
||||
Move pandora_console to /var/www
|
||||
|
||||
mv pandora_console/ /var/www
|
||||
|
||||
Change owner to www-data (apache2 user)
|
||||
|
||||
chown -R www-data /var/www/pandora_console/
|
||||
|
||||
If you're installing your mysql, setup a root password, for example "none"
|
||||
|
||||
mysqladmin password none
|
||||
|
||||
Access with a browser to this machine, in my case, to 192.168.50.126
|
||||
|
||||
http://192.168.50.126/pandora_console
|
||||
|
||||
A webpage should show you a welcome screen to install wizard. Read carefully and press "NEXT"
|
||||
to begin installation and go to step 2.
|
||||
|
||||
Module dependencies are tested here. Probably you need to cold restart your apache
|
||||
|
||||
/etc/init.d/apache2 stop
|
||||
/etc/init.d/apache2 start
|
||||
|
||||
Refresh your browser and you should see that now all dependencies are Ok. Let's go to step #3.
|
||||
|
||||
This screen need to enter data about your database root user (or other with privileges to
|
||||
create databases, table and insert data), and where is placed your Pandora FMS setup.
|
||||
|
||||
Enter mysql user and password (if you're follow this doc, step by step, should be root as user,
|
||||
none as password, and localhost as hostname), and let default values in last two boxes. Let's
|
||||
go to final step.
|
||||
|
||||
This should be done and Pandora Console fully installed. Last step is delete upgrade.php,
|
||||
install.php, all *.sql files:
|
||||
|
||||
rm upgrade.php
|
||||
rm install.php
|
||||
rm *.sql
|
||||
|
||||
And access to your new Pandora FMS console at
|
||||
|
||||
http://192.168.50.126/pandora_console/index.php
|
||||
|
||||
Login with user "admin" and password "pandora"
|
||||
|
||||
License
|
||||
-------
|
||||
|
|
|
@ -75,18 +75,23 @@ echo '<tr><td class="datos2">';
|
|||
echo '<b>'.$lang_label["ip_address"].'</b>';
|
||||
echo '<td class="datos2">';
|
||||
echo '<input type="text" name="direccion" size="12" value="'.$direccion_agente.'">';
|
||||
echo " ";
|
||||
|
||||
echo '<select name="address_list">';
|
||||
$sql1 = "SELECT * FROM taddress, taddress_agent
|
||||
WHERE taddress.id_a = taddress_agent.id_a
|
||||
AND taddress_agent.id_agent = $id_agente";
|
||||
if ($result=mysql_query($sql1))
|
||||
while ($row=mysql_fetch_array($result)){
|
||||
echo "<option value='".salida_limpia($row["ip"])."'>".salida_limpia($row["ip"])." ";
|
||||
}
|
||||
echo "<input name='delete_ip' type=checkbox value='1'> ".$lang_label["delete_sel"];
|
||||
echo "</td>";
|
||||
if ($create_agent != 1){
|
||||
echo " ";
|
||||
|
||||
echo '<select name="address_list">';
|
||||
$sql1 = "SELECT * FROM taddress, taddress_agent
|
||||
WHERE taddress.id_a = taddress_agent.id_a
|
||||
AND taddress_agent.id_agent = $id_agente";
|
||||
if ($result=mysql_query($sql1))
|
||||
while ($row=mysql_fetch_array($result)){
|
||||
echo "<option value='".salida_limpia($row["ip"])."'>".salida_limpia($row["ip"])." ";
|
||||
}
|
||||
echo "</select>";
|
||||
|
||||
echo "<input name='delete_ip' type=checkbox value='1'> ".$lang_label["delete_sel"];
|
||||
echo "</td>";
|
||||
}
|
||||
|
||||
echo '<tr><td class="datos"><b>'.$lang_label["group"].'</b>';
|
||||
echo '<td class="datos"><select name="grupo" class="w130">';
|
||||
|
|
|
@ -79,6 +79,30 @@ if (isset($_POST["template_id"])){
|
|||
'".$row2["id_module_group"]."'
|
||||
)";
|
||||
mysql_query ($module_sql);
|
||||
$id_agente_modulo = mysql_insert_id();
|
||||
|
||||
// Create with different estado if proc type or data type
|
||||
$id_tipo_modulo = $row2["type"];
|
||||
if (
|
||||
($id_tipo_modulo == 2) ||
|
||||
($id_tipo_modulo == 6) ||
|
||||
($id_tipo_modulo == 9) ||
|
||||
($id_tipo_modulo == 12) ||
|
||||
($id_tipo_modulo == 18)
|
||||
){
|
||||
$sql_insert = "INSERT INTO tagente_estado
|
||||
(id_agente_modulo,datos,timestamp,cambio,estado,id_agente, utimestamp)
|
||||
VALUES (
|
||||
$id_agente_modulo, 0,'0000-00-00 00:00:00',0,0,'".$id_agente."',0
|
||||
)";
|
||||
} else {
|
||||
$sql_insert = "INSERT INTO tagente_estado
|
||||
(id_agente_modulo,datos,timestamp,cambio,estado,id_agente, utimestamp)
|
||||
VALUES (
|
||||
$id_agente_modulo, 0,'0000-00-00 00:00:00',0,100,'".$id_agente."',0
|
||||
)";
|
||||
}
|
||||
mysql_query ($sql_insert);
|
||||
}
|
||||
}
|
||||
echo "<h3 class='suc'>".$lang_label["add_mod_ok"]."</h3>";
|
||||
|
|
|
@ -53,7 +53,7 @@ $direccion_agente = "";
|
|||
$intervalo = "300";
|
||||
$id_server = "";
|
||||
$max_alerts = 0;
|
||||
$modo = 0;
|
||||
$modo = 1;
|
||||
$update_module = 0;
|
||||
$modulo_id_agente = "";
|
||||
$modulo_id_tipo_modulo = "";
|
||||
|
@ -168,8 +168,7 @@ echo "</div>";
|
|||
|
||||
// Make some space between tabs and title
|
||||
echo "<div style='height: 25px'> </div>";
|
||||
// Unset variable to allow operations to work
|
||||
$id_agente = "";
|
||||
|
||||
|
||||
// Show agent creation results
|
||||
if (isset($_POST["create_agent"])){
|
||||
|
@ -256,7 +255,7 @@ if (isset($_POST["insert_alert"])){ // if created alert
|
|||
if (! $result) {
|
||||
echo "<h3 class='error'>".$lang_label["create_alert_no"]."</h3>";
|
||||
} else {
|
||||
$id_agente = mysql_insert_id();
|
||||
$id_alerta_agente_modulo = mysql_insert_id();
|
||||
echo "<h3 class='suc'>".$lang_label["create_alert_ok"]."</h3>";
|
||||
}
|
||||
|
||||
|
@ -310,8 +309,6 @@ if (isset($_POST["update_alert"])){ // Update an existing alert
|
|||
}
|
||||
else
|
||||
echo "<h3 class='suc'>".$lang_label["update_agent_ok"]."</h3>";
|
||||
|
||||
$id_agente = mysql_insert_id();
|
||||
}
|
||||
|
||||
// ================
|
||||
|
@ -357,9 +354,13 @@ if (isset($_POST["update_agent"])) { // if modified some agent paramenter
|
|||
}
|
||||
}
|
||||
|
||||
if ((isset($agent_created_ok)) && ($agent_created_ok == 1)){
|
||||
$_GET["id_agente"]= $id_agente;
|
||||
}
|
||||
|
||||
// Read agent data
|
||||
// This should be at the end of all operation checks, to read the changes
|
||||
if (isset($_GET["id_agente"])){
|
||||
if (isset($_GET["id_agente"])) {
|
||||
$id_agente = $_GET["id_agente"];
|
||||
$id_grupo = dame_id_grupo($id_agente);
|
||||
if (give_acl($id_user, $id_grupo, "AW")==1){
|
||||
|
|
|
@ -90,13 +90,60 @@ UNLOCK TABLES;
|
|||
-- Dumping data for table `tnetwork_component`
|
||||
--
|
||||
|
||||
INSERT INTO `tnetwork_component` VALUES (1,'OS Total process','Total process in Operating System (UNIX MIB)',5,8,0,0,0,0,'','NULL','NULL','',0),(2,'OS CPU Load','CPU Load in Operating System (UNIX MIB)',5,9,0,0,0,0,'','NULL','NULL','',0),(3,'Sysname','Get name of system using SNMP standard MIB',1,17,0,0,900,0,'','','public','.1.3.6.1.2.1.1.1.0',1),(4,'OS Users','Active users in Operating System (UNIX MIB)',5,6,0,0,0,0,'','NULL','NULL','',0),(5,'CiscoAP Wifi traffic','Cisco AP AP120',9,6,0,0,0,0,'','NULL','NULL','',0),(6,'CiscoAP Wifi errors','Get errors con WiFi for Cisco AP AP120',9,16,0,0,300,0,'','','public','',2),(7,'CiscoAP RAM','Get RAM available on device',9,15,0,0,300,0,'','','public','',4),(8,'CiscoAP Ethernet OUT','Cisco AP AP120',9,6,0,0,0,0,'','NULL','NULL','',0),(9,'CiscoAP Ethernet IN','Cisco AP AP120',9,6,0,0,0,0,'','NULL','NULL','',0),(10,'CiscoAP CPU Usage','Cisco AP AP120',9,6,0,0,0,0,'','NULL','NULL','',0),(11,'Cisco Catalyst CPU Usage','Cisco Catalyst 3750',8,6,0,0,0,0,'','NULL','NULL','',0),(12,'FlashFree ','Cisco Catalyst 3750',8,6,0,0,0,0,'','NULL','NULL','',0),(13,'RAM_Usage','Cisco Catalyst 3750',8,6,0,0,0,0,'','NULL','NULL','',0),(16,'CPU Usage','',7,6,0,0,0,0,'','NULL','NULL','',0),(17,'Memory available','',7,6,0,0,0,0,'','NULL','NULL','',0),(18,'Configuration changes','',7,6,0,0,0,0,'','NULL','NULL','',0),(19,'Power #1','',6,18,0,0,180,0,'','','public',' .1.3.6.1.4.1.2334.2.1.5.8.0',4),(20,'Power #2','',6,18,0,0,180,0,'','','public',' .1.3.6.1.4.1.2334.2.1.5.10.0',4),(21,'User concurrence','',6,6,0,0,0,0,'','NULL','NULL','',0),(22,'HSRP Status','Get status of HSRP',2,18,0,0,180,0,'','','public','1.3.6.1.4.1.9.9.106.1.2.1.1.15.12.106',2),(23,'Num. of classes','',6,6,0,0,0,0,'','NULL','NULL','',0),(24,'NIC #1 status','Status of NIC#1',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.1',2),(25,'NIC #2 status','Status of NIC #2',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.2',2),(26,'NIC #3 status','Status of NIC #3',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.3',2),(27,'NIC #1 outOctects','Output throughtput on Interface #1',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.1',2),(28,'NIC #2 outOctects','Output troughtput on interface #2',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.2',1),(29,'NIC #3 outOctects','Output troughtput on Interface #3',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.3',2),(30,'NIC #1 inOctects','Input troughtput on Interface #1',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.10.1',2),(31,'NIC #2 inOctects','Input throughtput for interface #2',10,16,0,0,180,0,'','NULL','public','.1.3.6.1.2.1.2.2.1.10.2',2),(32,'NIC #3 inOctects','Input throught on interface #3',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.10.3',2),(34,'Host Alive','Check if host is alive using ICMP ping check.',10,6,0,0,120,0,'','','','',2),(36,'Host Latency','Get host network latency in miliseconds, using ICMP.',10,7,0,0,180,0,'','','','',2),(37,'Check HTTP Server','Test APACHE2 HTTP service remotely (Protocol response, not only openport)',10,9,0,0,300,80,'GET / HTTP/1.0^M^M','HTTP/1.1 200 OK','','',3),(38,'Check FTP Server','Check FTP protocol, not only check port.',10,9,0,0,300,21,'QUIT','221','','',3),(39,'Check SSH Server','Checks port 22 is opened',10,9,0,0,300,22,'','','','',2),(40,'Check Telnet server','Check telnet port',10,9,0,0,300,23,'','','','',2),(41,'Check SMTP server','Check if SMTP port it's open',10,9,0,0,300,25,'','','','',2),(42,'Check POP3 server','Check POP3 port.',10,9,0,0,300,110,'','','','',2),(43,'NIC #7 outOctects','Get outcoming octects from NIC #7',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.7',2),(44,'NIC #7 inOctects','Get incoming octects from NIC #7',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.10.7',2),(45,'NIC #4 Status','Get status of NIC #4',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.4',2),(46,'NIC #5 Status','Get status of NIC #5',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.5',2),(47,'NIC #6 Status','Get status of NIC #6',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.6',2),(48,'NIC #7 Status','Get status of NIC #7',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.7',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (3,'Sysname','Get name of system using SNMP standard MIB',1,17,0,0,900,0,'','','public','.1.3.6.1.2.1.1.1.0',1);
|
||||
INSERT INTO `tnetwork_component` VALUES (19,'Power #1','PowerSupply #1 status',6,18,0,0,300,0,'','','public',' .1.3.6.1.4.1.2334.2.1.5.8.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (20,'Power #2','PowerSupply #2 status',6,18,0,0,300,0,'','','public',' .1.3.6.1.4.1.2334.2.1.5.10.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (22,'HSRP Status','Get status of HSRP',2,18,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.106.1.2.1.1.15.12.106',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (24,'NIC #1 status','Status of NIC#1',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.1',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (25,'NIC #2 status','Status of NIC #2',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.2',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (26,'NIC #3 status','Status of NIC #3',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.3',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (27,'NIC #1 outOctects','Output throughtput on Interface #1',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.1',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (28,'NIC #2 outOctects','Output troughtput on interface #2',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.2',1);
|
||||
INSERT INTO `tnetwork_component` VALUES (29,'NIC #3 outOctects','Output troughtput on Interface #3',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.3',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (30,'NIC #1 inOctects','Input troughtput on Interface #1',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.10.1',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (31,'NIC #2 inOctects','Input throughtput for interface #2',10,16,0,0,180,0,'','NULL','public','.1.3.6.1.2.1.2.2.1.10.2',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (32,'NIC #3 inOctects','Input throught on interface #3',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.10.3',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (34,'Host Alive','Check if host is alive using ICMP ping check.',10,6,0,0,120,0,'','','','',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (36,'Host Latency','Get host network latency in miliseconds, using ICMP.',10,7,0,0,180,0,'','','','',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (37,'Check HTTP Server','Test APACHE2 HTTP service remotely (Protocol response, not only openport)',10,9,0,0,300,80,'GET / HTTP/1.0^M^M','HTTP/1.1 200 OK','','',3);
|
||||
INSERT INTO `tnetwork_component` VALUES (38,'Check FTP Server','Check FTP protocol, not only check port.',10,9,0,0,300,21,'QUIT','221','','',3);
|
||||
INSERT INTO `tnetwork_component` VALUES (39,'Check SSH Server','Checks port 22 is opened',10,9,0,0,300,22,'','','','',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (40,'Check Telnet server','Check telnet port',10,9,0,0,300,23,'','','','',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (41,'Check SMTP server','Check if SMTP port it's open',10,9,0,0,300,25,'','','','',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (42,'Check POP3 server','Check POP3 port.',10,9,0,0,300,110,'','','','',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (43,'NIC #7 outOctects','Get outcoming octects from NIC #7',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.16.7',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (44,'NIC #7 inOctects','Get incoming octects from NIC #7',10,16,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.10.7',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (45,'NIC #4 Status','Get status of NIC #4',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.4',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (46,'NIC #5 Status','Get status of NIC #5',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.5',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (47,'NIC #6 Status','Get status of NIC #6',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.6',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (48,'NIC #7 Status','Get status of NIC #7',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.7',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (49,'CPU User','Linux User CPU Usage (%)',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.9.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (50,'CPU System','Linux System CPU usage',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.10.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (51,'System Context Change','Linux System Context changes ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.8.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (52,'System Interrupts','Linux system interrupts ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.7.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (53,'Sytem IO Sent','Linux System IO Sent ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.5.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (54,'System IO Recv','Linux System IO Recv ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.6.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (55,'System SwapIn ','Linux System Swap In',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.3.0',1);
|
||||
INSERT INTO `tnetwork_component` VALUES (56,'System Buffer Memory','Linux System Buffer Memory (used as available memory)',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.4.14.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (57,'System Cached Memory','Linux System Cached Memory (used as free memory)',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.4.15.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (58,'System Processes','Total system process on any host',12,15,0,0,180,0,'','','public','.1.3.6.1.2.1.25.1.6.0',4);
|
||||
|
||||
--
|
||||
-- Dumping data for table `tnetwork_component_group`
|
||||
--
|
||||
INSERT INTO `tnetwork_component_group` VALUES (1,'General group',0);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (2,'Cisco MIBs',10);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (3,'Nortel MIBS',10);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (4,'3COM MIBs',10);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (5,'UNIX MIBs',12);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (6,'Packetshaper MIBs',10);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (7,'Nortel BPS 2000 MIBs',3);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (8,'Cisco Catalyst3750 MIBs',2);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (9,'Cisco AP120+',2);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (10,'Network Management',0);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (11,'Microsoft Windows MIB',12);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (12,'Operating Systems',0);
|
||||
|
||||
INSERT INTO `tnetwork_component_group` VALUES (1,'General group',0),(2,'Cisco MIBs',10),(3,'Nortel MIBS',10),(4,'3COM MIBs',10),(5,'UNIX MIBs',12),(6,'Packetshaper MIBs',10),(7,'Nortel BPS 2000 MIBs',3),(8,'Cisco Catalyst3750 MIBs',2),(9,'Cisco AP120+',2),(10,'Network Management',0),(11,'Microsoft Windows MIB',12),(12,'Operating Systems',0);
|
||||
|
||||
--
|
||||
-- Dumping data for table `torigen`
|
||||
|
@ -130,3 +177,24 @@ INSERT INTO `tusuario_perfil` VALUES (1,'demo',1,1,'admin'),(2,'admin',5,1,'admi
|
|||
INSERT INTO `tperfil` VALUES (1,'Operator (Read)',0,1,0,1,0,0,0,0,0,0),(2,'Operator (Write)',1,1,0,1,0,0,0,0,0,0),(3,'Chief Operator',1,1,1,1,0,0,0,0,0,0),(4,'Group coordinator',1,1,1,1,1,1,1,0,0,0),(5,'Pandora Administrator',1,1,1,1,1,1,1,1,1,1);
|
||||
|
||||
INSERT INTO `tnews` VALUES (1,'admin','Welcome to Pandora FMS 1.3 !','This is our new console, a lot of new features has been added from last version. Please read documentation about it and be free to test any option.\r\n\r\nPandora FMS team.','2007-06-22 13:03:20');
|
||||
|
||||
INSERT INTO `tnetwork_profile` VALUES (1,'SNMP Basic management','Basic SNMP management (only first interface)');
|
||||
INSERT INTO `tnetwork_profile` VALUES (2,'Basic Server','Check basic server services and network latency. This checks SSH, FTP and HTTP. Also a ICMP host alive check.');
|
||||
INSERT INTO `tnetwork_profile` VALUES (3,'Linux SNMP','Linux SNMP Management');
|
||||
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (1,24,1);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (2,27,1);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (3,30,1);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (4,37,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (5,38,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (6,39,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (7,36,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (8,34,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (9,51,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (10,52,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (11,53,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (12,54,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (13,55,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (14,56,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (15,57,3);
|
||||
|
||||
|
|
|
@ -27,27 +27,10 @@ UPDATE tgrupo SET icon = 'house', parent = 0, disabled = 0 WHERE id_grupo = 10;
|
|||
UPDATE tgrupo SET icon = 'computer', parent = 0, disabled = 0 WHERE id_grupo = 11;
|
||||
UPDATE tgrupo SET icon = 'applications', parent = 0, disabled = 0 WHERE id_grupo = 12;
|
||||
|
||||
INSERT INTO `tnetwork_component` VALUES (1,'OS Total process','Total process in Operating System (UNIX MIB)',5,8,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (2,'OS CPU Load','CPU Load in Operating System (UNIX MIB)',5,9,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (3,'Sysname','Get name of system using SNMP standard MIB',1,17,0,0,900,0,'','','public','.1.3.6.1.2.1.1.1.0',1);
|
||||
INSERT INTO `tnetwork_component` VALUES (4,'OS Users','Active users in Operating System (UNIX MIB)',5,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (5,'CiscoAP Wifi traffic','Cisco AP AP120',9,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (6,'CiscoAP Wifi errors','Get errors con WiFi for Cisco AP AP120',9,16,0,0,300,0,'','','public','',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (7,'CiscoAP RAM','Get RAM available on device',9,15,0,0,300,0,'','','public','',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (8,'CiscoAP Ethernet OUT','Cisco AP AP120',9,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (9,'CiscoAP Ethernet IN','Cisco AP AP120',9,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (10,'CiscoAP CPU Usage','Cisco AP AP120',9,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (11,'Cisco Catalyst CPU Usage','Cisco Catalyst 3750',8,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (12,'FlashFree ','Cisco Catalyst 3750',8,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (13,'RAM_Usage','Cisco Catalyst 3750',8,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (16,'CPU Usage','',7,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (17,'Memory available','',7,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (18,'Configuration changes','',7,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (19,'Power #1','',6,18,0,0,180,0,'','','public',' .1.3.6.1.4.1.2334.2.1.5.8.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (20,'Power #2','',6,18,0,0,180,0,'','','public',' .1.3.6.1.4.1.2334.2.1.5.10.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (21,'User concurrence','',6,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (22,'HSRP Status','Get status of HSRP',2,18,0,0,180,0,'','','public','1.3.6.1.4.1.9.9.106.1.2.1.1.15.12.106',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (23,'Num. of classes','',6,6,0,0,0,0,'','NULL','NULL','',0);
|
||||
INSERT INTO `tnetwork_component` VALUES (19,'Power #1','PowerSupply #1 status',6,18,0,0,300,0,'','','public',' .1.3.6.1.4.1.2334.2.1.5.8.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (20,'Power #2','PowerSupply #2 status',6,18,0,0,300,0,'','','public',' .1.3.6.1.4.1.2334.2.1.5.10.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (22,'HSRP Status','Get status of HSRP',2,18,0,0,300,0,'','','public','1.3.6.1.4.1.9.9.106.1.2.1.1.15.12.106',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (24,'NIC #1 status','Status of NIC#1',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.1',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (25,'NIC #2 status','Status of NIC #2',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.2',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (26,'NIC #3 status','Status of NIC #3',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.3',2);
|
||||
|
@ -71,8 +54,29 @@ INSERT INTO `tnetwork_component` VALUES (45,'NIC #4 Status','Get status of NIC #
|
|||
INSERT INTO `tnetwork_component` VALUES (46,'NIC #5 Status','Get status of NIC #5',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.5',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (47,'NIC #6 Status','Get status of NIC #6',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.6',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (48,'NIC #7 Status','Get status of NIC #7',10,18,0,0,180,0,'','','public','.1.3.6.1.2.1.2.2.1.8.7',2);
|
||||
INSERT INTO `tnetwork_component` VALUES (49,'CPU User','Linux User CPU Usage (%)',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.9.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (50,'CPU System','Linux System CPU usage',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.10.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (51,'System Context Change','Linux System Context changes ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.8.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (52,'System Interrupts','Linux system interrupts ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.7.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (53,'Sytem IO Sent','Linux System IO Sent ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.5.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (54,'System IO Recv','Linux System IO Recv ',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.6.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (55,'System SwapIn ','Linux System Swap In',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.11.3.0',1);
|
||||
INSERT INTO `tnetwork_component` VALUES (56,'System Buffer Memory','Linux System Buffer Memory (used as available memory)',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.4.14.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (57,'System Cached Memory','Linux System Cached Memory (used as free memory)',5,15,0,0,180,0,'','','public','.1.3.6.1.4.1.2021.4.15.0',4);
|
||||
INSERT INTO `tnetwork_component` VALUES (58,'System Processes','Total system process on any host',12,15,0,0,180,0,'','','public','.1.3.6.1.2.1.25.1.6.0',4);
|
||||
|
||||
INSERT INTO `tnetwork_component_group` VALUES (1,'General group',0),(2,'Cisco MIBs',10),(3,'Nortel MIBS',10),(4,'3COM MIBs',10),(5,'UNIX MIBs',12),(6,'Packetshaper MIBs',10),(7,'Nortel BPS 2000 MIBs',3),(8,'Cisco Catalyst3750 MIBs',2),(9,'Cisco AP120+',2),(10,'Network Management',0),(11,'Microsoft Windows MIB',12),(12,'Operating Systems',0);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (1,'General group',0);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (2,'Cisco MIBs',10);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (3,'Nortel MIBS',10);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (4,'3COM MIBs',10);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (5,'UNIX MIBs',12);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (6,'Packetshaper MIBs',10);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (7,'Nortel BPS 2000 MIBs',3);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (8,'Cisco Catalyst3750 MIBs',2);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (9,'Cisco AP120+',2);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (10,'Network Management',0);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (11,'Microsoft Windows MIB',12);
|
||||
INSERT INTO `tnetwork_component_group` VALUES (12,'Operating Systems',0);
|
||||
|
||||
UPDATE ttipo_modulo SET icon = 'mod_data.png' WHERE icon = 'mod_data.gif';
|
||||
UPDATE ttipo_modulo SET icon = 'mod_proc.png' WHERE icon = 'mod_proc.gif';
|
||||
|
@ -91,3 +95,25 @@ UPDATE ttipo_modulo SET icon = 'mod_snmp_string.png' WHERE icon = 'mod_snmp_stri
|
|||
UPDATE ttipo_modulo SET icon = 'mod_snmp_proc.png' WHERE icon = 'mod_snmp_proc.gif';
|
||||
|
||||
INSERT INTO `tnews` VALUES (1,'admin','Welcome to Pandora FMS 1.3 !','This is our new console, a lot of new features has been added from last version. Please read documentation about it and be free to test any option.\r\n\r\nPandora FMS team.','2007-06-22 13:03:20');
|
||||
|
||||
INSERT INTO `tnetwork_profile` VALUES (1,'SNMP Basic management','Basic SNMP management (only first interface)');
|
||||
INSERT INTO `tnetwork_profile` VALUES (2,'Basic Server','Check basic server services and network latency. This checks SSH, FTP and HTTP. Also a ICMP host alive check.');
|
||||
INSERT INTO `tnetwork_profile` VALUES (3,'Linux SNMP','Linux SNMP Management');
|
||||
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (1,24,1);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (2,27,1);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (3,30,1);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (4,37,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (5,38,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (6,39,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (7,36,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (8,34,2);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (9,51,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (10,52,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (11,53,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (12,54,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (13,55,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (14,56,3);
|
||||
INSERT INTO `tnetwork_profile_component` VALUES (15,57,3);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue