2006-07-09 02:33:33 +02:00
|
|
|
<?php
|
2006-06-29 21:31:53 +02:00
|
|
|
// Pandora - the Free monitoring system
|
|
|
|
// ====================================
|
|
|
|
// Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com
|
2006-06-30 00:03:26 +02:00
|
|
|
// Copyright (c) 2005-2006 Artica Soluciones Tecnologicas S.L, info@artica.es
|
2006-06-29 21:31:53 +02:00
|
|
|
// Copyright (c) 2004-2006 Raul Mateos Martin, raulofpandora@gmail.com
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
?>
|
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
<script language="JavaScript" type="text/javascript">
|
|
|
|
<!--
|
|
|
|
function type_change()
|
|
|
|
{
|
|
|
|
// tipo 1-4 - Generic_xxxxxx
|
|
|
|
if ((document.modulo.tipo.value > 0) && (document.modulo.tipo.value < 5)){
|
|
|
|
document.modulo.snmp_oid.style.background="#ddd";
|
|
|
|
document.modulo.snmp_oid.disabled=true;
|
|
|
|
document.modulo.snmp_community.style.background="#ddd";
|
|
|
|
document.modulo.snmp_community.disabled=true;
|
2006-07-05 15:31:42 +02:00
|
|
|
document.modulo.combo_snmp_oid.style.background="#ddd";
|
|
|
|
document.modulo.combo_snmp_oid.disabled=true;
|
|
|
|
document.modulo.oid.disabled=true;
|
2006-03-27 05:37:27 +02:00
|
|
|
document.modulo.tcp_send.style.background="#ddd";
|
|
|
|
document.modulo.tcp_send.disabled=true;
|
|
|
|
document.modulo.tcp_rcv.style.background="#ddd";
|
|
|
|
document.modulo.tcp_rcv.disabled=true;
|
|
|
|
document.modulo.tcp_port.style.background="#ddd";
|
|
|
|
document.modulo.tcp_port.disabled=true;
|
|
|
|
document.modulo.ip_target.style.background="#ddd";
|
|
|
|
document.modulo.ip_target.disabled=true;
|
|
|
|
document.modulo.modulo_max.style.background="#fff";
|
|
|
|
document.modulo.modulo_max.disabled=false;
|
|
|
|
document.modulo.modulo_min.style.background="#fff";
|
|
|
|
document.modulo.modulo_min.disabled=false;
|
|
|
|
}
|
|
|
|
// tipo 15-18- SNMP
|
|
|
|
if ((document.modulo.tipo.value > 14) && (document.modulo.tipo.value < 19 )){
|
|
|
|
document.modulo.snmp_oid.style.background="#fff";
|
|
|
|
document.modulo.snmp_oid.style.disabled=false;
|
|
|
|
document.modulo.snmp_community.style.background="#fff";
|
|
|
|
document.modulo.snmp_community.disabled=false;
|
2006-07-05 15:31:42 +02:00
|
|
|
document.modulo.combo_snmp_oid.style.background="#fff";
|
|
|
|
document.modulo.combo_snmp_oid.disabled=false;
|
|
|
|
document.modulo.oid.disabled=false;
|
2006-03-27 05:37:27 +02:00
|
|
|
document.modulo.tcp_send.style.background="#ddd";
|
|
|
|
document.modulo.tcp_send.disabled=true;
|
|
|
|
document.modulo.tcp_rcv.style.background="#ddd";
|
|
|
|
document.modulo.tcp_rcv.disabled=true;
|
|
|
|
document.modulo.tcp_port.style.background="#ddd";
|
|
|
|
document.modulo.tcp_port.disabled=true;
|
|
|
|
document.modulo.ip_target.style.background="#fff";
|
|
|
|
document.modulo.ip_target.disabled=false;
|
|
|
|
if (document.modulo.tipo.value == 18) {
|
|
|
|
document.modulo.modulo_max.style.background="#ddd";
|
|
|
|
document.modulo.modulo_max.disabled=true;
|
|
|
|
document.modulo.modulo_min.style.background="#ddd";
|
|
|
|
document.modulo.modulo_min.disabled=true;
|
|
|
|
} else {
|
|
|
|
document.modulo.modulo_max.style.background="#fff";
|
|
|
|
document.modulo.modulo_max.disabled=false;
|
|
|
|
document.modulo.modulo_min.style.background="#fff";
|
|
|
|
document.modulo.modulo_min.disabled=false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// tipo 6-7 - ICMP
|
|
|
|
if ((document.modulo.tipo.value == 6) || (document.modulo.tipo.value == 7)){
|
|
|
|
document.modulo.snmp_oid.style.background="#ddd";
|
|
|
|
document.modulo.snmp_oid.disabled=true;
|
|
|
|
document.modulo.snmp_community.style.background="#ddd";
|
|
|
|
document.modulo.snmp_community.disabled=true;
|
2006-07-05 15:31:42 +02:00
|
|
|
document.modulo.combo_snmp_oid.style.background="#ddd";
|
|
|
|
document.modulo.combo_snmp_oid.disabled=true;
|
|
|
|
document.modulo.oid.disabled=true;
|
2006-03-27 05:37:27 +02:00
|
|
|
document.modulo.tcp_send.style.background="#ddd";
|
|
|
|
document.modulo.tcp_send.disabled=true;
|
|
|
|
document.modulo.tcp_rcv.style.background="#ddd";
|
|
|
|
document.modulo.tcp_rcv.disabled=true;
|
|
|
|
document.modulo.tcp_port.style.background="#ddd";
|
|
|
|
document.modulo.tcp_port.disabled=true;
|
|
|
|
document.modulo.ip_target.style.background="#fff";
|
|
|
|
document.modulo.ip_target.disabled=false;
|
2006-06-06 12:48:54 +02:00
|
|
|
document.modulo.modulo_max.style.background="#fff";
|
|
|
|
document.modulo.modulo_max.disabled=false;
|
|
|
|
document.modulo.modulo_min.style.background="#fff";
|
|
|
|
document.modulo.modulo_min.disabled=false;
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
|
|
|
// tipo 8-11 - TCP
|
|
|
|
if ((document.modulo.tipo.value > 7) && (document.modulo.tipo.value < 12)){
|
|
|
|
document.modulo.snmp_oid.style.background="#ddd";
|
|
|
|
document.modulo.snmp_oid.disabled=true;
|
|
|
|
document.modulo.snmp_community.style.background="#ddd";
|
|
|
|
document.modulo.snmp_community.disabled=true;
|
2006-07-05 15:31:42 +02:00
|
|
|
document.modulo.combo_snmp_oid.style.background="#ddd";
|
|
|
|
document.modulo.combo_snmp_oid.disabled=true;
|
|
|
|
document.modulo.oid.disabled=true;
|
2006-03-27 05:37:27 +02:00
|
|
|
document.modulo.tcp_send.style.background="#fff";
|
|
|
|
document.modulo.tcp_send.disabled=false;
|
|
|
|
document.modulo.tcp_rcv.style.background="#fff";
|
|
|
|
document.modulo.tcp_rcv.disabled=false;
|
|
|
|
document.modulo.tcp_port.style.background="#fff";
|
|
|
|
document.modulo.tcp_port.disabled=false;
|
|
|
|
document.modulo.ip_target.style.background="#fff";
|
|
|
|
document.modulo.ip_target.disabled=false;
|
|
|
|
document.modulo.modulo_max.style.background="#ddd";
|
|
|
|
document.modulo.modulo_max.disabled=true;
|
|
|
|
document.modulo.modulo_min.style.background="#ddd";
|
|
|
|
document.modulo.modulo_min.disabled=true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// tipo 12 - UDP
|
|
|
|
if (document.modulo.tipo.value == 12){
|
|
|
|
document.modulo.snmp_oid.style.background="#ddd";
|
|
|
|
document.modulo.snmp_oid.disabled=true;
|
|
|
|
document.modulo.snmp_community.style.background="#ddd";
|
|
|
|
document.modulo.snmp_community.disabled=true;
|
2006-07-05 15:31:42 +02:00
|
|
|
document.modulo.oid.disabled=true;
|
2006-03-27 05:37:27 +02:00
|
|
|
document.modulo.tcp_send.style.background="#fff";
|
2006-07-05 15:31:42 +02:00
|
|
|
document.modulo.tcp_send.disabled=false;
|
2006-03-27 05:37:27 +02:00
|
|
|
document.modulo.tcp_rcv.style.background="#fff";
|
2006-07-05 15:31:42 +02:00
|
|
|
document.modulo.tcp_rcv.disabled=false;
|
2006-03-27 05:37:27 +02:00
|
|
|
document.modulo.tcp_port.style.background="#fff";
|
2006-07-05 15:31:42 +02:00
|
|
|
document.modulo.tcp_port.disabled=false;
|
2006-03-27 05:37:27 +02:00
|
|
|
document.modulo.ip_target.style.background="#fff";
|
2006-07-05 15:31:42 +02:00
|
|
|
document.modulo.ip_target.disabled=false;
|
2006-03-27 05:37:27 +02:00
|
|
|
document.modulo.modulo_max.style.background="#ddd";
|
|
|
|
document.modulo.modulo_max.disabled=true;
|
|
|
|
document.modulo.modulo_min.style.background="#ddd";
|
|
|
|
document.modulo.modulo_min.disabled=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//-->
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// Load global vars
|
|
|
|
require("include/config.php");
|
|
|
|
if (give_acl($id_user, 0, "AW")==1) {
|
|
|
|
// Init vars
|
|
|
|
$descripcion = "";
|
|
|
|
$comentarios = "";
|
|
|
|
$campo_1 = "";
|
|
|
|
$campo_2 = "";
|
|
|
|
$campo_3 = "";
|
|
|
|
$maximo = "0";
|
|
|
|
$minimo = "0";
|
|
|
|
$nombre_agente = "";
|
|
|
|
$direccion_agente = "";
|
|
|
|
$id_agente = "";
|
|
|
|
$intervalo = "300";
|
|
|
|
$id_agente = "";
|
|
|
|
$id_server = "";
|
|
|
|
$max_alerts = 0;
|
|
|
|
$modo = 0;
|
|
|
|
$update_module = 0;
|
|
|
|
$modulo_id_agente = "";
|
|
|
|
$modulo_id_tipo_modulo = "";
|
|
|
|
$modulo_nombre = "";
|
|
|
|
$modulo_descripcion = "";
|
|
|
|
$alerta_id_aam = "";
|
|
|
|
$alerta_campo1 = "";
|
|
|
|
$alerta_campo2 = "";
|
|
|
|
$alerta_campo3 ="";
|
|
|
|
$alerta_dis_max = "";
|
|
|
|
$alerta_dis_min = "";
|
|
|
|
$alerta_max_alerts = "";
|
|
|
|
$alerta_time_threshold = "";
|
|
|
|
$alerta_descripcion = "";
|
|
|
|
$disabled="";
|
|
|
|
$modulo_max="";
|
|
|
|
$modulo_min='';
|
|
|
|
$module_interval = "";
|
|
|
|
$tcp_port = "";
|
|
|
|
$tcp_send = "";
|
|
|
|
$tcp_rcv = "";
|
|
|
|
$snmp_oid= "";
|
|
|
|
$ip_target ="";
|
|
|
|
$snmp_community="";
|
|
|
|
$creacion_agente = 0;
|
2006-06-29 21:31:53 +02:00
|
|
|
$combo_snmp_oid="";
|
2006-03-27 05:37:27 +02:00
|
|
|
// Delete Alert
|
|
|
|
// =============
|
|
|
|
if (isset($_GET["delete_alert"])){ // if modified some parameter
|
|
|
|
$id_borrar_modulo = $_GET["delete_alert"];
|
|
|
|
// get info about agent
|
|
|
|
$sql1='DELETE FROM talerta_agente_modulo WHERE id_aam = '.$id_borrar_modulo;
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
if (! $result)
|
|
|
|
echo "<h3 class='error'>".$lang_label["delete_alert_no"]."</h3>";
|
|
|
|
else
|
|
|
|
echo "<h3 class='suc'>".$lang_label["delete_alert_ok"]."</h3>";
|
|
|
|
|
|
|
|
}
|
|
|
|
// Create alert
|
|
|
|
// =============
|
|
|
|
if (isset($_POST["insert_alert"])){ // if created alert
|
|
|
|
//$id_agente = $_POST["id_agente"];
|
|
|
|
$id_agente_modulo = entrada_limpia($_POST["agente_modulo"]);
|
|
|
|
$descripcion= entrada_limpia($_POST["descripcion"]);
|
|
|
|
$campo_1 = entrada_limpia($_POST["campo_1"]);
|
|
|
|
$campo_2 = entrada_limpia($_POST["campo_2"]);
|
|
|
|
$campo_3 = entrada_limpia($_POST["campo_3"]);
|
|
|
|
$maximo = entrada_limpia($_POST["maximo"]);
|
|
|
|
$minimo = entrada_limpia($_POST["minimo"]);
|
|
|
|
$tipo_alerta = entrada_limpia($_POST["tipo_alerta"]);
|
|
|
|
$time_threshold = entrada_limpia($_POST["time_threshold"]);
|
|
|
|
$max_alerts = entrada_limpia($_POST["max_alerts"]);
|
|
|
|
$min_alerts = entrada_limpia($_POST["min_alerts"]);
|
|
|
|
$other = entrada_limpia($_POST["other"]);
|
|
|
|
if ($time_threshold == -1) {
|
|
|
|
$time_threshold = $other;
|
|
|
|
}
|
|
|
|
$sql_insert="INSERT INTO talerta_agente_modulo (id_agente_modulo,id_alerta,al_campo1,al_campo2,al_campo3,descripcion,dis_max,dis_min,time_threshold,max_alerts, min_alerts) VALUES ('".$id_agente_modulo."','".$tipo_alerta."','".$campo_1."','".$campo_2."','".$campo_3."','".$descripcion."','".$maximo."','".$minimo."','".$time_threshold."','".$max_alerts."','".$min_alerts."')";
|
|
|
|
$result=mysql_query($sql_insert);
|
|
|
|
if (! $result)
|
|
|
|
echo "<h3 class='error'>".$lang_label["create_alert_no"]."</h3>";
|
|
|
|
else
|
|
|
|
$id_agente = mysql_insert_id();
|
|
|
|
echo "<h3 class='suc'>".$lang_label["create_alert_ok"]."</h3>";
|
|
|
|
|
|
|
|
}
|
2006-06-29 21:31:53 +02:00
|
|
|
// Update ALERT
|
2006-03-27 05:37:27 +02:00
|
|
|
// =============
|
|
|
|
if (isset($_POST["update_alert"])){ // Update an existing alert
|
|
|
|
$id_aam = entrada_limpia($_POST["id_aam"]);
|
|
|
|
$tipo_alerta = entrada_limpia($_POST["tipo_alerta"]);
|
2006-07-09 02:33:33 +02:00
|
|
|
if (isset($_POST["agente_modulo"])) {
|
|
|
|
$id_agente_modulo = entrada_limpia($_POST["agente_modulo"]);
|
|
|
|
}
|
2006-03-27 05:37:27 +02:00
|
|
|
$descripcion= entrada_limpia($_POST["descripcion"]);
|
|
|
|
$campo_1 = entrada_limpia($_POST["campo_1"]);
|
|
|
|
$campo_2 = entrada_limpia($_POST["campo_2"]);
|
|
|
|
$campo_3 = entrada_limpia($_POST["campo_3"]);
|
|
|
|
$maximo = entrada_limpia($_POST["maximo"]);
|
|
|
|
$minimo = entrada_limpia($_POST["minimo"]);
|
|
|
|
$time_threshold = entrada_limpia($_POST["time_threshold"]);
|
|
|
|
$max_alerts = entrada_limpia($_POST["max_alerts"]);
|
|
|
|
$min_alerts = entrada_limpia($_POST["min_alerts"]);
|
|
|
|
$other = entrada_limpia($_POST["other"]);
|
|
|
|
if ($time_threshold == -1) {
|
|
|
|
$time_threshold = $other;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql_insert="UPDATE talerta_agente_modulo SET id_alerta = ".$tipo_alerta.", max_alerts = '".$max_alerts."', min_alerts = '".$min_alerts."' ,time_threshold = '".$time_threshold."' ,dis_min = '".$minimo."' ,dis_max = '".$maximo."' ,al_campo3 = '".$campo_3."' ,al_campo2 = '".$campo_2."' ,al_campo1 = '".$campo_1."' , descripcion = '".$descripcion."' WHERE id_aam = ".$id_aam;
|
|
|
|
$result=mysql_query($sql_insert);
|
|
|
|
if (! $result) {
|
|
|
|
echo "<h3 class='error'>".$lang_label["update_alert_no"]."</h3>";
|
|
|
|
// echo "SQL DEBUG ".$sql_insert;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
echo "<h3 class='suc'>".$lang_label["update_agent_ok"]."</h3>";
|
|
|
|
|
|
|
|
$id_agente = mysql_insert_id();
|
|
|
|
}
|
2006-06-29 21:31:53 +02:00
|
|
|
// ================================
|
|
|
|
// Create AGENT
|
|
|
|
// ================================
|
|
|
|
if (isset($_POST["create_agent"])) { // Create a new and shining agent
|
2006-03-27 05:37:27 +02:00
|
|
|
$nombre_agente = entrada_limpia($_POST["agente"]);
|
|
|
|
$direccion_agente = entrada_limpia($_POST["direccion"]);
|
|
|
|
$grupo = entrada_limpia($_POST["grupo"]);
|
|
|
|
$intervalo = entrada_limpia($_POST["intervalo"]);
|
|
|
|
$comentarios = entrada_limpia($_POST["comentarios"]);
|
|
|
|
$modo = entrada_limpia($_POST["modo"]);
|
|
|
|
$id_server = entrada_limpia($_POST["id_server"]);
|
|
|
|
$os_name = entrada_limpia($_POST["os_name"]);
|
|
|
|
$disabled = entrada_limpia($_POST["disabled"]);
|
|
|
|
|
|
|
|
// Check if agent exists (BUG WC-50518-2 )
|
|
|
|
$sql1='SELECT * FROM tagente WHERE nombre = "'.$nombre_agente.'"';
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
if ($row=mysql_fetch_array($result)){
|
|
|
|
echo "<h3 class='error'>".$lang_label["agent_exists"]."</h3>";
|
|
|
|
$creacion_agente = 1;
|
|
|
|
} else {
|
|
|
|
if ($id_server != ""){
|
|
|
|
$sql_insert ="INSERT INTO tagente (nombre, direccion, id_grupo, intervalo, comentarios,modo, id_os, disabled, id_server) VALUES ('".$nombre_agente."', '".$direccion_agente."', '".$grupo."', '".$intervalo."', '".$comentarios."',".$modo.", ".$os_name.", '".$disabled."',$id_server)";
|
|
|
|
} else {
|
|
|
|
$sql_insert ="INSERT INTO tagente (nombre, direccion, id_grupo, intervalo, comentarios,modo, id_os, disabled) VALUES ('".$nombre_agente."', '".$direccion_agente."', '".$grupo."', '".$intervalo."', '".$comentarios."',".$modo.", ".$os_name.", '".$disabled."')";
|
|
|
|
}
|
|
|
|
$result=mysql_query($sql_insert);
|
|
|
|
if (! $result)
|
|
|
|
echo "<h3 class='error'>".$lang_label["create_agent_no"]."</h3>";
|
|
|
|
else
|
|
|
|
echo "<h3 class='suc'>".$lang_label["create_agent_ok"]."</h3>";
|
|
|
|
$id_agente = mysql_insert_id();
|
|
|
|
// Create special MODULE agent_keepalive
|
|
|
|
$sql_insert ="INSERT INTO tagente_modulo (nombre, id_agente, id_tipo_modulo, descripcion) VALUES ('agent_keepalive', ".$id_agente.",-1,'Agent Keepalive monitor')";
|
|
|
|
$result=mysql_query($sql_insert);
|
|
|
|
if (! $result) {
|
|
|
|
echo "<h3 class='error'>".$lang_label["create_keep_no"]."</h3>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ================
|
2006-06-29 21:31:53 +02:00
|
|
|
// Update AGENT
|
|
|
|
// ================
|
|
|
|
if (isset($_POST["update_agent"])) { // if modified some agent paramenter
|
2006-03-27 05:37:27 +02:00
|
|
|
$id_agente = entrada_limpia($_POST["id_agente"]);
|
|
|
|
$nombre_agente = entrada_limpia($_POST["agente"]);
|
|
|
|
$direccion_agente = entrada_limpia($_POST["direccion"]);
|
|
|
|
$grupo = entrada_limpia($_POST["grupo"]);
|
|
|
|
$intervalo = entrada_limpia($_POST["intervalo"]);
|
|
|
|
$comentarios = entrada_limpia($_POST["comentarios"]);
|
|
|
|
$modo = entrada_limpia($_POST["modo"]);
|
|
|
|
$os_name = entrada_limpia($_POST["os_name"]);
|
|
|
|
$id_os = $os_name; // Bug reported by Azabel, Feb/2006 :-)
|
|
|
|
$id_server = entrada_limpia($_POST["id_server"]);
|
|
|
|
$disabled = entrada_limpia($_POST["disabled"]);
|
|
|
|
$sql_update ="UPDATE tagente SET disabled = ".$disabled." , id_os = ".$os_name." , modo = ".$modo." , nombre = '".$nombre_agente."', direccion = '".$direccion_agente."', id_grupo = '".$grupo."', intervalo = '".$intervalo."', comentarios = '".$comentarios."', id_server = ".$id_server." WHERE id_agente = '".$id_agente."'";
|
|
|
|
$result=mysql_query($sql_update);
|
|
|
|
if (! $result)
|
|
|
|
echo "<h3 class='error'>".$lang_label["update_agent_no"]."</h3>";
|
|
|
|
else
|
|
|
|
echo "<h3 class='suc'>".$lang_label["update_agent_ok"]."</h3>";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read agent data
|
|
|
|
// This should be at the end of all operation checks, to read the changes
|
|
|
|
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){
|
|
|
|
$sql1='SELECT * FROM tagente WHERE id_agente = '.$id_agente;
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
if ($row=mysql_fetch_array($result)){
|
|
|
|
$intervalo = $row["intervalo"]; // Define interval in seconds
|
|
|
|
$nombre_agente = $row["nombre"];
|
|
|
|
$direccion_agente =$row["direccion"];
|
|
|
|
$grupo = $row["id_grupo"];
|
|
|
|
$ultima_act = $row["ultimo_contacto"];
|
|
|
|
$comentarios = $row["comentarios"];
|
|
|
|
$id_server = $row["id_server"];
|
|
|
|
$modo = $row["modo"];
|
|
|
|
$id_os = $row["id_os"];
|
|
|
|
$disabled=$row["disabled"];
|
|
|
|
} else {
|
|
|
|
echo "<h3 class='error'>".$lang_label["agent_error"]."</h3>";
|
|
|
|
echo "</table>";
|
|
|
|
include ("general/footer.php");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
audit_db($id_user,$REMOTE_ADDR, "ACL Violation","Trying to admin an Agent out of admin groups!");
|
|
|
|
require ("general/noaccess.php");
|
|
|
|
echo "</table>";
|
|
|
|
require ("general/footer.php");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isset($_GET["creacion"]))
|
|
|
|
$creacion_agente = 1;
|
|
|
|
|
|
|
|
// Read data module if editing module
|
2006-06-29 21:31:53 +02:00
|
|
|
// ==================================
|
|
|
|
if ((isset($_GET["update_module"])) && (!isset($_POST["oid"])) && (!isset($_POST["update_module"]))) {
|
2006-03-27 05:37:27 +02:00
|
|
|
$update_module = 1;
|
|
|
|
$id_agente_modulo = $_GET["update_module"];
|
|
|
|
|
|
|
|
$sql_update = "SELECT * FROM tagente_modulo WHERE id_agente_modulo = ".$id_agente_modulo;
|
|
|
|
$result=mysql_query($sql_update);
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
$modulo_id_agente = $row["id_agente"];
|
|
|
|
$modulo_id_tipo_modulo = $row["id_tipo_modulo"];
|
|
|
|
$modulo_nombre = $row["nombre"];
|
|
|
|
$modulo_descripcion = $row["descripcion"];
|
|
|
|
$tcp_send = $row["tcp_send"];
|
|
|
|
$tcp_rcv = $row["tcp_rcv"];
|
|
|
|
$tcp_port = $row["tcp_port"];
|
|
|
|
$ip_target = $row["ip_target"];
|
|
|
|
$snmp_community = $row["snmp_community"];
|
|
|
|
$snmp_oid = $row["snmp_oid"];
|
|
|
|
$id_module_group = $row["id_module_group"];
|
|
|
|
$module_interval = $row["module_interval"];
|
|
|
|
$modulo_max = $row["max"];
|
|
|
|
if (! isset($modulo_max))
|
|
|
|
$modulo_max ="N/A";
|
|
|
|
$modulo_min = $row["min"];
|
|
|
|
if (! isset($modulo_min))
|
|
|
|
$modulo_min ="N/A";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Read alert data if editing alert
|
|
|
|
if (isset($_GET["update_alert"])){
|
|
|
|
$id_grupo = dame_id_grupo($id_agente);
|
|
|
|
if (give_acl($id_user, $id_grupo, "LW")==0){
|
|
|
|
audit_db($id_user,$REMOTE_ADDR, "ACL Violation","Trying to update an alert without admin rights");
|
|
|
|
require ("general/noaccess.php");
|
|
|
|
echo "</table>";
|
|
|
|
require ("general/footer.php");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
$update_alert = 1;
|
|
|
|
$id_aam = $_GET["update_alert"];
|
|
|
|
$sql_update = "SELECT * FROM talerta_agente_modulo WHERE id_aam = ".$id_aam;
|
|
|
|
$result=mysql_query($sql_update);
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
$alerta_id_aam = $id_aam;
|
|
|
|
$alerta_campo1 = $row["al_campo1"];
|
|
|
|
$alerta_campo2 = $row["al_campo2"];
|
|
|
|
$alerta_campo3 = $row["al_campo3"];
|
|
|
|
$alerta_dis_max = $row["dis_max"];
|
|
|
|
$alerta_dis_min = $row["dis_min"];
|
|
|
|
$tipo_alerta = $row["id_alerta"];
|
|
|
|
$alerta_max_alerts = $row["max_alerts"];
|
|
|
|
$alerta_min_alerts = $row["min_alerts"];
|
|
|
|
$alerta_time_threshold = $row["time_threshold"];
|
|
|
|
$alerta_descripcion = $row["descripcion"];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2006-06-29 21:31:53 +02:00
|
|
|
|
|
|
|
// GET DATA for MODULE UPDATE OR MODULE INSERT
|
|
|
|
// ===========================================
|
|
|
|
if ((isset($_POST["update_module"])) || (isset($_POST["insert_module"]))) {
|
|
|
|
if (isset($_POST["update_module"])){
|
|
|
|
$update_module = 1;
|
|
|
|
$id_agente_modulo = $_POST["id_agente_modulo"];
|
|
|
|
}
|
2006-03-27 05:37:27 +02:00
|
|
|
$id_grupo = dame_id_grupo($id_agente);
|
2006-06-29 21:31:53 +02:00
|
|
|
if (give_acl($id_user, $id_grupo, "AW")==0){
|
|
|
|
audit_db($id_user,$REMOTE_ADDR, "ACL Violation","Trying to create a module without admin rights");
|
|
|
|
require ("general/noaccess.php");
|
|
|
|
echo "</table>";
|
|
|
|
require ("general/footer.php");
|
|
|
|
exit;
|
|
|
|
}
|
2006-03-27 05:37:27 +02:00
|
|
|
if (isset($_POST["tipo"]))
|
|
|
|
$id_tipo_modulo = entrada_limpia($_POST["tipo"]);
|
2006-06-29 21:31:53 +02:00
|
|
|
if (isset($_POST["nombre"])){
|
2006-03-27 05:37:27 +02:00
|
|
|
$nombre = entrada_limpia($_POST["nombre"]);
|
2006-06-29 21:31:53 +02:00
|
|
|
$modulo_nombre = $nombre;
|
|
|
|
}
|
|
|
|
if (isset($_POST["descripcion"])){
|
2006-03-27 05:37:27 +02:00
|
|
|
$descripcion = entrada_limpia($_POST["descripcion"]);
|
2006-06-29 21:31:53 +02:00
|
|
|
$modulo_descripcion = $descripcion;
|
|
|
|
}
|
2006-03-27 05:37:27 +02:00
|
|
|
if (isset($_POST["modulo_max"]))
|
|
|
|
$modulo_max = entrada_limpia($_POST["modulo_max"]);
|
|
|
|
if (isset($_POST["modulo_min"]))
|
|
|
|
$modulo_min = entrada_limpia($_POST["modulo_min"]);
|
|
|
|
|
|
|
|
// Pandora 1.2 new module data:
|
|
|
|
if (isset($_POST["tcp_send"]))
|
|
|
|
$tcp_send = entrada_limpia($_POST["tcp_send"]);
|
|
|
|
if (isset($_POST["tcp_rcv"]))
|
|
|
|
$tcp_rcv = entrada_limpia($_POST["tcp_rcv"]);
|
|
|
|
if (isset($_POST["tcp_port"]))
|
|
|
|
$tcp_port = entrada_limpia($_POST["tcp_port"]);
|
|
|
|
if (isset($_POST["ip_target"]))
|
|
|
|
$ip_target = entrada_limpia($_POST["ip_target"]);
|
|
|
|
if (isset($_POST["snmp_oid"]))
|
|
|
|
$snmp_oid = entrada_limpia($_POST["snmp_oid"]);
|
|
|
|
if (isset($_POST["snmp_community"]))
|
|
|
|
$snmp_community = entrada_limpia($_POST["snmp_community"]);
|
|
|
|
if (isset($_POST["id_module_group"]))
|
|
|
|
$id_module_group = entrada_limpia($_POST["id_module_group"]);
|
|
|
|
if (isset($_POST["module_interval"]))
|
|
|
|
$module_interval = entrada_limpia($_POST["module_interval"]);
|
2006-06-29 21:31:53 +02:00
|
|
|
}
|
|
|
|
// MODULE UPDATE
|
|
|
|
// =================
|
|
|
|
if ((isset($_POST["update_module"])) && (!isset($_POST["oid"]))){ // if modified something
|
* ChangeLog: Create this file, prior to launch final 1.2 version. For the next
versions, will use it for every branch and subproject.
* configurar_agente.php : Fixed Undefined index: combo_snmp_oid notice error.
* estado_grupo.php: Detect old "OK" monitors, but doesnt check if they are down
in time, so for example, a old monitor with OK signal but from a week old, it is
shown as GREEN (good) value, not as a DOWN (white with ? symbol). FIXED.
Now counts data modules for DOWN total account, and show grey button if ANY
type of module is down, not only monitors. Improved SQL searches.
* estado_agente.php, estado_ultimopaquete.php: Same as estado_grupo with data_modules,
included in total account, more accurate accounting. A new value shown in grey for
DOWN modules, being monitors or single data modules, no matter type. Improved SQL
searches. Individual module intervals are used to determine if a module is down,
if there is no individual module interval, global agent interval is used.
Now it's possible to have a module with higher interval than Agent interval, so
we take now the more higest interval in modules to calculate if an agent is DOWN.
* fgraph.php: updated progressbar function to show N/A when data is above 100 or below 0.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@115 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2006-07-09 22:29:44 +02:00
|
|
|
if (isset($_POST["combo_snmp_oid"])){
|
|
|
|
$combo_snmp_oid = entrada_limpia($_POST["combo_snmp_oid"]);
|
|
|
|
if ($snmp_oid == ""){
|
|
|
|
$snmp_oid = $combo_snmp_oid;
|
|
|
|
}
|
2006-06-29 21:31:53 +02:00
|
|
|
}
|
2006-03-27 05:37:27 +02:00
|
|
|
$sql_update = "UPDATE tagente_modulo SET max ='".$modulo_max."', min = '".$modulo_min."', nombre='".$nombre."', descripcion='".$descripcion."', tcp_send = '$tcp_send', tcp_rcv = '$tcp_rcv', tcp_port = '$tcp_port', ip_target = '$ip_target', snmp_oid = '$snmp_oid', snmp_community = '$snmp_community', id_module_group = '$id_module_group', module_interval = '$module_interval' WHERE id_agente_modulo = ".$id_agente_modulo;
|
2006-06-30 00:03:26 +02:00
|
|
|
$result=mysql_query($sql_update);
|
2006-03-27 05:37:27 +02:00
|
|
|
if (! $result)
|
|
|
|
echo "<h3 class='error'>".$lang_label["update_module_no"]."</h3>";
|
|
|
|
else
|
|
|
|
echo "<h3 class='suc'>".$lang_label["update_module_ok"]."</h3>";
|
|
|
|
// Init vars to null to avoid trash in forms
|
2006-06-29 21:31:53 +02:00
|
|
|
$id_tipo_modulo = "";$nombre = "";$descripcion = "";$modulo_max = "";
|
|
|
|
$modulo_min = "";// Pandora 1.2 new module data:
|
|
|
|
$tcp_send = "";$tcp_rcv = "";$tcp_port = "";$ip_target = "";
|
|
|
|
$snmp_oid = "";$snmp_community = "";$id_module_group = "";
|
2006-07-01 19:10:40 +02:00
|
|
|
$module_interval = ""; $modulo_nombre = ""; $modulo_descripcion = "";
|
|
|
|
$update_module = 0;
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
2006-06-29 21:31:53 +02:00
|
|
|
// =========================================================
|
|
|
|
// OID Refresh button to get SNMPWALK from data in form
|
|
|
|
// This code is also applied when submitting a new module (insert_module = 1)
|
|
|
|
// =========================================================
|
|
|
|
if (isset($_POST["oid"])){
|
|
|
|
snmp_set_quick_print(1);
|
|
|
|
if (! ($snmpwalk = snmprealwalk($ip_target, $snmp_community, "")))
|
|
|
|
echo "<h3 class='error'>".$lang_label["cannot_read_snmp"]."</h3>";
|
|
|
|
else
|
|
|
|
echo "<h3 class='suc'>".$lang_label["ok_read_snmp"]."</h3>";
|
|
|
|
}
|
|
|
|
// =========================================================
|
2006-03-27 05:37:27 +02:00
|
|
|
// MODULE INSERT
|
2006-06-29 21:31:53 +02:00
|
|
|
// =========================================================
|
2006-07-09 02:33:33 +02:00
|
|
|
if ((!isset($_POST["oid"])) && (isset($_POST["insert_module"]))){
|
|
|
|
if (isset($_POST["combo_snmp_oid"])) {
|
|
|
|
$combo_snmp_oid = entrada_limpia($_POST["combo_snmp_oid"]);
|
|
|
|
}
|
2006-06-29 21:31:53 +02:00
|
|
|
if ($snmp_oid == ""){
|
|
|
|
$snmp_oid = $combo_snmp_oid;
|
|
|
|
}
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-09 02:33:33 +02:00
|
|
|
$sql_insert = "INSERT INTO tagente_modulo (id_agente,id_tipo_modulo,nombre,descripcion,max,min,snmp_oid,snmp_community,id_module_group,module_interval,ip_target,tcp_port,tcp_rcv,tcp_send) VALUES (".$id_agente.",".$id_tipo_modulo.",'".$nombre."','".$descripcion."','".$modulo_max."','".$modulo_min."', '$snmp_oid', '$snmp_community', '$id_module_group', '$module_interval', '$ip_target', '$tcp_port', '$tcp_rcv', '$tcp_send')";
|
2006-03-27 05:37:27 +02:00
|
|
|
// Init vars to null to avoid trash in forms
|
2006-06-29 21:31:53 +02:00
|
|
|
$id_tipo_modulo = "";$nombre = "";$descripcion = "";$modulo_max = "";
|
|
|
|
$modulo_min = "";// Pandora 1.2 new module data:
|
|
|
|
$tcp_send = "";$tcp_rcv = "";$tcp_port = "";$ip_target = "";
|
|
|
|
$snmp_oid = "";$snmp_community = "";$id_module_group = "";
|
2006-03-27 05:37:27 +02:00
|
|
|
$module_interval = "";
|
|
|
|
|
2006-07-09 02:33:33 +02:00
|
|
|
//echo "DEBUG ".$sql_insert;
|
2006-03-27 05:37:27 +02:00
|
|
|
$result=mysql_query($sql_insert);
|
|
|
|
$id_agente_modulo = mysql_insert_id();
|
|
|
|
// Create with different estado if proc type or data 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) VALUES ($id_agente_modulo, 0,'2000-00-00 00:00:00',0,0,'".$id_agente."')"; }
|
|
|
|
else {
|
|
|
|
$sql_insert = "INSERT INTO tagente_estado (id_agente_modulo,datos,timestamp,cambio,estado,id_agente) VALUES ($id_agente_modulo, 0,'2000-00-00 00:00:00',0,100,'".$id_agente."')";
|
|
|
|
}
|
|
|
|
$result2=mysql_query($sql_insert);
|
2006-07-09 02:33:33 +02:00
|
|
|
if ((! $result) || (! $result2))
|
2006-03-27 05:37:27 +02:00
|
|
|
echo "<h3 class='error'>".$lang_label["add_module_no"]."</h3>";
|
|
|
|
else
|
|
|
|
echo "<h3 class='suc'>".$lang_label["add_module_ok"]."</h3>";
|
|
|
|
}
|
|
|
|
// MODULE DELETION
|
|
|
|
// =================
|
|
|
|
if (isset($_GET["delete_module"])){ // DELETE agent module !
|
|
|
|
$id_borrar_modulo = $_GET["delete_module"];
|
|
|
|
$id_grupo = dame_id_grupo($id_agente);
|
|
|
|
if (give_acl($id_user, $id_grupo, "AW")==0){
|
|
|
|
audit_db($id_user,$REMOTE_ADDR, "ACL Violation","Trying to delete a module without admin rights");
|
|
|
|
require ("general/noaccess.php");
|
|
|
|
echo "</table>";
|
|
|
|
require ("general/footer.php");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
// Get information of the module to be deleted
|
|
|
|
$sql1='SELECT * FROM tagente_modulo WHERE id_agente_modulo = '.$id_borrar_modulo;
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
$row=mysql_fetch_array($result);
|
|
|
|
$id_agente = $row["id_agente"];
|
|
|
|
$nombre_modulo = $row["nombre"];
|
|
|
|
$id_tipo_modulo = $row["id_tipo_modulo"];
|
|
|
|
// Primero borramos de la tabla de tagente_modulo
|
|
|
|
$sql_delete= "DELETE FROM tagente_modulo WHERE id_agente_modulo = ".$id_borrar_modulo;
|
|
|
|
$result=mysql_query($sql_delete);
|
|
|
|
if (! $result)
|
|
|
|
echo "<h3 class='error'>".$lang_label["delete_module_no"]."</h3>";
|
|
|
|
else
|
|
|
|
echo "<h3 class='suc'>".$lang_label["delete_module_ok"]."</h3>";
|
|
|
|
// Luego borramos de la tabla de estados, las entradas que haya de este modulo
|
|
|
|
$sql_delete = "DELETE FROM tagente_estado WHERE id_agente_modulo = ".$id_borrar_modulo;
|
|
|
|
//echo "DEBUG SQL_DELETE $sql_delete <br>";
|
|
|
|
$result=mysql_query($sql_delete);
|
|
|
|
// And finally, delete all data of this module
|
|
|
|
$sql_delete = "DELETE FROM tagente_datos WHERE id_agente_modulo = ".$id_borrar_modulo;
|
|
|
|
//echo "DEBUG SQL_DELETE $sql_delete <br>";
|
|
|
|
$result=mysql_query($sql_delete);
|
|
|
|
$sql_delete = "DELETE FROM tagente_datos_string WHERE id_agente_modulo = ".$id_borrar_modulo;
|
|
|
|
//echo "DEBUG SQL_DELETE $sql_delete <br>";
|
|
|
|
$result=mysql_query($sql_delete);
|
|
|
|
$sql_delete = "DELETE FROM tagente_datos_inc WHERE id_agente_modulo = ".$id_borrar_modulo;
|
|
|
|
//echo "DEBUG SQL_DELETE $sql_delete <br>";
|
|
|
|
$result=mysql_query($sql_delete);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
|
|
|
|
// ========================
|
|
|
|
// AGENT GENERAL DATA FORM
|
|
|
|
// ========================
|
|
|
|
|
|
|
|
echo "<h2>".$lang_label["agent_conf"]."</h2>";
|
2006-07-09 16:58:02 +02:00
|
|
|
if (isset($_GET["creacion"])){echo "<h3>".$lang_label["create_agent"]."<a href='help/".$help_code."/chap3.php#32' target='_help' class='help'> <span>".$lang_label["help"]."</span></a></h3>";}
|
|
|
|
else {echo "<h3>".$lang_label["update_agent"]."<a href='help/".$help_code."/chap3.php#32' target='_help' class='help'> <span>".$lang_label["help"]."</span></a></h3>";}
|
2006-07-02 23:25:53 +02:00
|
|
|
echo '<form name="conf_agent" method="post" action="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente">';
|
|
|
|
if ($creacion_agente == 1)
|
|
|
|
echo "<input type='hidden' name='create_agent' value='1'>";
|
|
|
|
else {
|
|
|
|
echo "<input type='hidden' name='update_agent' value='1'>";
|
|
|
|
echo "<input type='hidden' name='id_agente' value='".$id_agente."'>";
|
|
|
|
}
|
|
|
|
echo '<table width="650" cellpadding="3" cellspacing="3" class="fon">';
|
|
|
|
echo "<tr><td class='lb' rowspan='9' width='5'>";
|
|
|
|
echo '<td class="datos"><b>'.$lang_label["agent_name"].'</b></td><td class="datos"><input type="text" name="agente" size=30 value="'.$nombre_agente.'">';
|
2006-06-29 21:31:53 +02:00
|
|
|
if (isset($_GET["creacion"])){
|
|
|
|
echo " ";
|
|
|
|
} else {
|
2006-07-03 12:49:42 +02:00
|
|
|
echo " <a href='index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=".$id_agente."' <img src='images/setup.gif' width='19' valign='top' align='middle' border='0'></a> <a href='index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=".$id_agente."'><img src='images/lupa.gif' border='0' align='middle'></a>";
|
2006-06-29 21:31:53 +02:00
|
|
|
}
|
2006-03-27 05:37:27 +02:00
|
|
|
?>
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><b><?php echo $lang_label["ip_address"]?></b><td class="datos2"><input type="text" name="direccion" size=30 value="<?php echo $direccion_agente ?>">
|
2006-03-27 05:37:27 +02:00
|
|
|
<!-- Desplegable para el grupo -->
|
2006-05-29 18:34:02 +02:00
|
|
|
<tr><td class="datos"><b><?php echo $lang_label["group"]?></b><td class="datos"><select name="grupo" class="w130">
|
2006-03-27 05:37:27 +02:00
|
|
|
<?php
|
|
|
|
if (isset($grupo)){
|
|
|
|
echo "<option value='".$grupo."'>".dame_grupo($grupo);
|
|
|
|
}
|
|
|
|
$sql1='SELECT * FROM tgrupo ORDER BY nombre';
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
// Group ALL cannot be selected
|
|
|
|
if ($row["id_grupo"] != 1){
|
|
|
|
echo "<option value='".$row["id_grupo"]."'>".$row["nombre"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><b><?php echo $lang_label["interval"]?></b></td><td class="datos2"><input type="text" name="intervalo" size="15" value="<?php echo $intervalo?>"></td>
|
2006-05-29 18:34:02 +02:00
|
|
|
<tr><td class="datos"><b><?php echo $lang_label["os"]?></b></td><td class="datos">
|
2006-03-27 05:37:27 +02:00
|
|
|
<select name="os_name" class="w130">
|
|
|
|
<?php
|
|
|
|
if (isset($id_os)){
|
|
|
|
echo "<option value='".$id_os."'>".dame_so_name($id_os);
|
|
|
|
}
|
|
|
|
$sql1='SELECT * FROM tconfig_os ORDER BY name';
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
echo "<option value='".$row["id_os"]."'>".$row["name"];
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><b><?php echo $lang_label["server"]?></b></td><td class="datos2">
|
2006-03-27 05:37:27 +02:00
|
|
|
<select name="id_server" class="w130">
|
|
|
|
<?php
|
|
|
|
echo "<option value='".$id_server."'>".give_server_name($id_server);
|
2006-07-02 23:25:53 +02:00
|
|
|
$sql1='SELECT * FROM tserver where network_server = 1 ORDER BY name';
|
2006-03-27 05:37:27 +02:00
|
|
|
$result=mysql_query($sql1);
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
echo "<option value='".$row["id_server"]."'>".$row["name"];
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
2006-05-29 18:34:02 +02:00
|
|
|
<tr><td class="datos"><b><?php echo $lang_label["description"]?></b><td class="datos"><input type="text" name="comentarios" size="55" value="<?php echo $comentarios ?>"></td>
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><b><?php echo $lang_label["module_definition"]?></b>
|
|
|
|
<td class="datos2">
|
2006-03-27 05:37:27 +02:00
|
|
|
<?php if ($modo == "1"){
|
2006-07-04 12:10:21 +02:00
|
|
|
echo $lang_label["learning_mode"].'<input type="radio" class="chk" name="modo" value="1" checked style="margin-right: 40px;">';
|
|
|
|
echo $lang_label["normal_mode"].' <input type="radio" class="chk" name="modo" value="0">';
|
2006-03-27 05:37:27 +02:00
|
|
|
} else {
|
2006-07-04 12:10:21 +02:00
|
|
|
echo $lang_label["learning_mode"].'<input type="radio" class="chk" name="modo" value="1" style="margin-right: 40px;">';
|
|
|
|
echo $lang_label["normal_mode"].'<input type="radio" name="modo" class="chk" value="0" checked>';
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
|
|
|
?>
|
2006-05-29 18:34:02 +02:00
|
|
|
<tr><td class="datos"><b><?php echo $lang_label["status"]?></b>
|
2006-03-27 05:37:27 +02:00
|
|
|
<td class="datos">
|
|
|
|
<?php if ($disabled == "1"){
|
2006-07-04 12:10:21 +02:00
|
|
|
echo $lang_label["disabled"].'<input type="radio" class="chk" name="disabled" value="1" checked style="margin-right: 40px;">';
|
|
|
|
echo $lang_label["active"].' <input class="chk" type="radio" name="disabled" value="0">';
|
2006-03-27 05:37:27 +02:00
|
|
|
} else {
|
2006-07-04 12:10:21 +02:00
|
|
|
echo $lang_label["disabled"].'<input type="radio" class="chk" name="disabled" value="1" style="margin-right: 40px;">';
|
|
|
|
echo $lang_label["active"].'<input type="radio" name="disabled" class="chk" value="0" checked>';
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
|
|
|
?>
|
2006-06-29 21:31:53 +02:00
|
|
|
<tr><td colspan='3'><div class='raya'></div></td></tr>
|
2006-03-27 05:37:27 +02:00
|
|
|
<tr><td colspan="3" align="right">
|
|
|
|
<?php if (isset($_GET["creacion"])){echo "<input name='crtbutton' type='submit' class='sub' value='".$lang_label["create"]."'>";}
|
|
|
|
else {echo "<input name='uptbutton' type='submit' class='sub' value='".$lang_label["update"]."'>";} ?></td>
|
|
|
|
</form>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// Visualizacion de modulos y otras especies !!!, solo cuando no estamos en modo creacion
|
|
|
|
if ( $creacion_agente != 1) {
|
|
|
|
// MODULE VISUALIZACION
|
|
|
|
// ======================
|
|
|
|
// Load icon index for ttipo_modulo
|
|
|
|
$iconindex[]="";
|
|
|
|
|
|
|
|
$sql_t='SELECT * FROM ttipo_modulo';
|
|
|
|
$result_t=mysql_query($sql_t);
|
|
|
|
while ($row_t=mysql_fetch_array($result_t)){
|
|
|
|
$iconindex[$row_t["id_tipo"]] = $row_t["icon"];
|
|
|
|
}
|
2006-07-02 23:25:53 +02:00
|
|
|
$sql1='SELECT * FROM tagente_modulo WHERE id_agente = "'.$id_agente.'" order by nombre';
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
if ($row=mysql_num_rows($result)){
|
|
|
|
?>
|
2006-07-09 16:58:02 +02:00
|
|
|
<h3><?php echo $lang_label["assigned_modules"]?><a href='help/<?php echo $help_code ?>/chap3.php#321' target='_help' class='help'> <span><?php echo $lang_label["help"] ?></span></a></h3>
|
2006-07-02 23:25:53 +02:00
|
|
|
<table width="700" cellpadding="3" cellspacing="3" class="fon">
|
|
|
|
<tr>
|
|
|
|
<th><?php echo $lang_label["module_name"]?>
|
|
|
|
<th><?php echo $lang_label["type"]?>
|
|
|
|
<th><?php echo $lang_label["interval"]?>
|
|
|
|
<th><?php echo $lang_label["description"]?>
|
|
|
|
<th><?php echo $lang_label["module_group"]?>
|
|
|
|
<th><?php echo $lang_label["max_min"]?>
|
|
|
|
<th width="50"><?php echo $lang_label["action"]?>
|
|
|
|
<?php
|
|
|
|
$color=1;
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
if ($color == 1){
|
|
|
|
$tdcolor="datos";
|
|
|
|
$color =0;
|
|
|
|
} else {
|
|
|
|
$tdcolor="datos2";
|
|
|
|
$color =1;
|
|
|
|
}
|
|
|
|
$id_tipo = $row["id_tipo_modulo"];
|
|
|
|
$nombre_modulo =$row["nombre"];
|
|
|
|
$descripcion = $row["descripcion"];
|
|
|
|
$module_max = $row["max"];
|
|
|
|
$module_min = $row["min"];
|
|
|
|
$module_interval2 = $row["module_interval"];
|
|
|
|
$module_group2 = $row["id_module_group"];
|
|
|
|
|
2006-07-03 12:49:42 +02:00
|
|
|
echo "<tr><td class='".$tdcolor."_id'>".$nombre_modulo;
|
|
|
|
echo "<td class='".$tdcolor."f9'>";
|
2006-07-02 23:25:53 +02:00
|
|
|
if ($id_tipo > 0) {
|
|
|
|
echo "<img src='images/".$iconindex[$id_tipo]."' border=0>";
|
|
|
|
}
|
|
|
|
if ($module_interval2!=0){
|
|
|
|
echo "<td class='$tdcolor'>".$module_interval2;
|
|
|
|
} else {
|
|
|
|
echo "<td class='$tdcolor'> N/A";
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "<td class='$tdcolor'>".substr($descripcion,0,30);
|
|
|
|
echo "<td class='$tdcolor'>".substr(dame_nombre_grupomodulo($module_group2),0,15);
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
|
|
if ($module_max == $module_min) {
|
|
|
|
$module_max = "N/A";
|
|
|
|
$module_min = "N/A";
|
|
|
|
}
|
|
|
|
echo $module_max." / ".$module_min;
|
|
|
|
echo "<td class='$tdcolor'>";
|
|
|
|
if ($id_tipo != -1)
|
|
|
|
echo "<a href='index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=".$id_agente."&delete_module=".$row["id_agente_modulo"]."'><img src='images/cancel.gif' border=0 alt='".$lang_label["delete"]."'></b></a> ";
|
|
|
|
echo "<a href='index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=".$id_agente."&update_module=".$row["id_agente_modulo"]."#modules'><img src='images/config.gif' border=0 alt='".$lang_label["update"]."'></b></a>";
|
|
|
|
}
|
|
|
|
echo "<tr><td colspan='7'><div class='raya'></div></td></tr>";
|
|
|
|
} else
|
|
|
|
echo "<font class='red'>No modules</font>";
|
2006-03-27 05:37:27 +02:00
|
|
|
?>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<?php
|
2006-06-29 21:31:53 +02:00
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
// ====================================================================================
|
2006-07-02 23:25:53 +02:00
|
|
|
// VIEW ALERTS
|
2006-03-27 05:37:27 +02:00
|
|
|
// ====================================================================================<br>
|
|
|
|
|
|
|
|
$sql1='SELECT * FROM tagente_modulo WHERE id_agente = "'.$id_agente.'"';
|
|
|
|
$result=mysql_query($sql1);
|
2006-07-05 15:31:42 +02:00
|
|
|
if ($row=mysql_num_rows($result)){
|
|
|
|
|
2006-07-09 16:58:02 +02:00
|
|
|
echo "<h3>".$lang_label["assigned_alerts"]."<a href='help/".$help_code."/chap3.php#3222' target='_help' class='help'> <span>".$lang_label["help"]."</span></a></h3>";
|
2006-07-05 15:31:42 +02:00
|
|
|
|
|
|
|
$color=1;
|
|
|
|
while ($row=mysql_fetch_array($result)){ // All modules of this agent
|
|
|
|
$id_tipo = $row["id_tipo_modulo"];
|
|
|
|
$nombre_modulo =$row["nombre"];
|
|
|
|
$sql2='SELECT * FROM ttipo_modulo WHERE id_tipo = "'.$id_tipo.'"';
|
|
|
|
$result2=mysql_query($sql2);
|
|
|
|
$row2=mysql_fetch_array($result2);
|
|
|
|
//module type modulo is $row2["nombre"];
|
|
|
|
|
|
|
|
$sql3='SELECT * FROM talerta_agente_modulo WHERE id_agente_modulo = '.$row["id_agente_modulo"]; // From all the alerts give me which are to my agent
|
|
|
|
$result3=mysql_query($sql3);
|
|
|
|
while ($row3=mysql_fetch_array($result3)){
|
|
|
|
if ($color == 1){
|
|
|
|
$tdcolor="datos";
|
|
|
|
$color =0;
|
|
|
|
} else {
|
|
|
|
$tdcolor="datos2";
|
|
|
|
$color =1;
|
|
|
|
}
|
|
|
|
$sql4='SELECT * FROM talerta WHERE id_alerta = '.$row3["id_alerta"];
|
|
|
|
$result4=mysql_query($sql4);
|
|
|
|
$row4=mysql_fetch_array($result4);
|
|
|
|
// Alert name defined by $row4["nombre"];
|
|
|
|
$tipo_modulo = $row2["nombre"];
|
|
|
|
$nombre_alerta = $row4["nombre"];
|
|
|
|
$string = "<tr><td class='$tdcolor'>".$nombre_modulo."/".$tipo_modulo;
|
|
|
|
$string = $string."<td class=$tdcolor>".$nombre_alerta;
|
|
|
|
$string = $string."<td class='$tdcolor'>".$row3["time_threshold"];
|
|
|
|
$string = $string."<td class='$tdcolor'>".$row3["dis_min"]."/".$row3["dis_max"];
|
|
|
|
$string = $string."<td class='$tdcolor'>".salida_limpia($row3["descripcion"]);
|
|
|
|
$string = $string."<td class='$tdcolor'>";
|
|
|
|
$id_grupo = dame_id_grupo($id_agente);
|
|
|
|
if (give_acl($id_user, $id_grupo, "LW")==1){
|
|
|
|
$string = $string."<a href='index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=".$id_agente."&delete_alert=".$row3["id_aam"]."'><img src='images/cancel.gif' border=0 alt='".$lang_label["delete"]."'></a> ";
|
|
|
|
$string = $string."<a href='index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=".$id_agente."&update_alert=".$row3["id_aam"]."#alerts'><img src='images/config.gif' border=0 alt='".$lang_label["update"]."'></a>";
|
|
|
|
}
|
|
|
|
}
|
2006-07-02 23:25:53 +02:00
|
|
|
}
|
2006-07-05 15:31:42 +02:00
|
|
|
if (isset($string)) {
|
|
|
|
echo "<table cellpadding='3' cellspacing='3' width='700' class='fon'>
|
|
|
|
<tr><th>".$lang_label["name_type"]."</th>
|
|
|
|
<th>".$lang_label["alert"]."</th>
|
|
|
|
<th>".$lang_label["time_threshold"]."</th>
|
|
|
|
<th>".$lang_label["min_max"]."</th>
|
|
|
|
<th>".$lang_label["description"]."</th>
|
|
|
|
<th width='50'>".$lang_label["action"]."</th></tr>";
|
|
|
|
echo $string;
|
|
|
|
echo "<tr><td colspan='6'><div class='raya'></div></td></tr></table>";
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
2006-07-05 15:31:42 +02:00
|
|
|
else echo "<font class='red'>".$lang_label["no_alerts"]."</font>";
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
2006-07-05 15:31:42 +02:00
|
|
|
else echo "<font class='red'>".$lang_label["no_modules"]."</font>";
|
2006-03-27 05:37:27 +02:00
|
|
|
?>
|
2006-07-05 15:31:42 +02:00
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
<br>
|
|
|
|
<?php
|
|
|
|
echo '<form name="modulo" method="post" action="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente='.$id_agente.'">';
|
2006-06-29 21:31:53 +02:00
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
// ====================================================================================
|
|
|
|
// Module Creation / Update form
|
|
|
|
// ====================================================================================
|
|
|
|
|
|
|
|
if ($update_module == "1"){
|
|
|
|
echo '<input type="hidden" name="update_module" value=1>';
|
|
|
|
echo '<input type="hidden" name="id_agente_modulo" value="'.$id_agente_modulo.'" ';
|
|
|
|
}
|
2006-06-29 21:31:53 +02:00
|
|
|
else {
|
2006-03-27 05:37:27 +02:00
|
|
|
echo '<input type="hidden" name="insert_module" value=1>';
|
2006-06-29 21:31:53 +02:00
|
|
|
// Default values for new modules
|
2006-06-30 00:03:26 +02:00
|
|
|
if ($ip_target == ""){
|
|
|
|
$ip_target = $direccion_agente;
|
|
|
|
$snmp_community = "public";
|
|
|
|
$module_interval = $intervalo;
|
|
|
|
}
|
2006-06-29 21:31:53 +02:00
|
|
|
}
|
2006-03-27 05:37:27 +02:00
|
|
|
?>
|
2006-07-09 16:58:02 +02:00
|
|
|
<h3><?php echo $lang_label["module_asociation_form"] ?><a href='help/<?php echo $help_code ?>/chap3.php#321' target='_help' class='help'> <span><?php echo $lang_label["help"] ?></span></a></h3>
|
2006-03-27 05:37:27 +02:00
|
|
|
<a name="modules"> <!-- Don't Delete !! -->
|
|
|
|
<table width="650" cellpadding="3" cellspacing="3" class="fon">
|
2006-06-29 21:31:53 +02:00
|
|
|
<tr><td class='lb' rowspan='8' width='5'>
|
2006-03-27 05:37:27 +02:00
|
|
|
<!-- Module type combobox -->
|
|
|
|
<td class="datos"><?php echo $lang_label["module_type"] ?>
|
|
|
|
<td class="datos">
|
|
|
|
<?php
|
|
|
|
if ($update_module == "1")
|
|
|
|
echo "<i class='red'>".$lang_label["no_change_field"]."</i>";
|
|
|
|
else {
|
|
|
|
echo '<select name="tipo" onChange="type_change()">';
|
|
|
|
$sql1='SELECT * FROM ttipo_modulo ORDER BY nombre';
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
echo "<option>--</option>";
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
echo "<option value='".$row["id_tipo"]."'>".$row["nombre"];
|
|
|
|
}
|
|
|
|
echo "</select>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<!-- Module group selection -->
|
|
|
|
<td class="datos"><?php echo $lang_label["module_group"] ?>
|
|
|
|
<td class="datos">
|
|
|
|
<?php
|
|
|
|
echo '<select name="id_module_group">';
|
|
|
|
if ($update_module == "1"){
|
|
|
|
echo "<option value='".$id_module_group."'>".dame_nombre_grupomodulo($id_module_group);
|
|
|
|
}
|
|
|
|
$sql1='SELECT * FROM tmodule_group';
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
echo "<option value='".$row["id_mg"]."'>".$row["name"];
|
|
|
|
}
|
|
|
|
echo "</select>";
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><?php echo $lang_label["module_name"] ?>
|
|
|
|
<td class="datos2"><input type="text" name="nombre" size="20" value="<?php echo $modulo_nombre ?>">
|
|
|
|
<td class="datos2"><?php echo $lang_label["module_interval"] ?><td class="datos2">
|
2006-03-27 05:37:27 +02:00
|
|
|
<input type="text" name="module_interval" size="5" value="<?php echo $module_interval ?>">
|
|
|
|
|
|
|
|
<tr><td class="datos"><?php echo $lang_label["ip_target"] ?>
|
|
|
|
<td class="datos"><input type="text" name="ip_target" size="20" value="<?php echo $ip_target ?>">
|
|
|
|
<td class="datos"><?php echo $lang_label["tcp_port"] ?>
|
|
|
|
<td class="datos"><input type="text" name="tcp_port" size="5" value="<?php echo $tcp_port ?>">
|
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><?php echo $lang_label["snmp_oid"] ?>
|
|
|
|
<td class="datos2"><input type="text" name="snmp_oid" size="15" value="<?php echo $snmp_oid ?>">
|
2006-06-29 21:31:53 +02:00
|
|
|
<input type="submit" name="oid" value="Get Value">
|
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
<td class="datos2"><?php echo $lang_label["snmp_community"] ?>
|
|
|
|
<td class="datos2"><input type="text" name="snmp_community" size="20" value="<?php echo $snmp_community ?>">
|
2006-03-27 05:37:27 +02:00
|
|
|
|
|
|
|
|
2006-06-29 21:31:53 +02:00
|
|
|
<tr><td class="datos"><?php echo $lang_label["snmp_oid"] ?>
|
|
|
|
<td colspan=3 class="datos"><select name="combo_snmp_oid">
|
|
|
|
<?PHP
|
|
|
|
// FILL OID Combobox
|
|
|
|
if (isset($_POST["oid"])){
|
|
|
|
for (reset($snmpwalk); $i = key($snmpwalk); next($snmpwalk)) {
|
|
|
|
// OJO, al indice tengo que restarle uno, el SNMP funciona con indices a partir de 0
|
|
|
|
// y el cabron de PHP me devuelve indices a partir de 1 !!!!!!!
|
|
|
|
//echo "$i: $a[$i]<br />\n";
|
|
|
|
$snmp_output = substr($i,0,35)." - ".substr($snmpwalk[$i],0,20);
|
|
|
|
echo "<option value=$i>".salida_limpia(substr($snmp_output,0,55));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2t"><?php echo $lang_label["tcp_send"] ?>
|
|
|
|
<td class="datos2"><textarea name="tcp_send" cols="17" rows="3"><?php echo $tcp_send ?></textarea>
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
<td class="datos2t"><?php echo $lang_label["tcp_rcv"] ?>
|
|
|
|
<td class="datos2"><textarea name="tcp_rcv" cols="17" rows="3"><?php echo $tcp_rcv ?></textarea>
|
2006-03-27 05:37:27 +02:00
|
|
|
|
|
|
|
<tr><td class="datos"><?php echo $lang_label["mindata"] ?>
|
|
|
|
<td class="datos"><input type="text" name="modulo_min" size="5" value="<?php echo $modulo_min ?>">
|
|
|
|
<td class="datos"><?php echo $lang_label["maxdata"] ?>
|
|
|
|
<td class="datos"><input type="text" name="modulo_max" size="5" value="<?php echo $modulo_max ?>">
|
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2t"><?php echo $lang_label["comments"] ?>
|
|
|
|
<td class="datos2" colspan=3>
|
2006-03-27 05:37:27 +02:00
|
|
|
<textarea name="descripcion" cols=52 rows=2>
|
|
|
|
<?php echo $modulo_descripcion ?>
|
|
|
|
</textarea>
|
2006-07-03 12:49:42 +02:00
|
|
|
<tr><td colspan='5'><div class='raya'></div></td></tr>
|
2006-03-27 05:37:27 +02:00
|
|
|
<tr><td colspan="5" align="right">
|
|
|
|
<?php
|
|
|
|
if ($update_module == "1"){
|
|
|
|
echo '<input name="updbutton" type="submit" class="sub" value="'.$lang_label["update"].'">';
|
|
|
|
} else {
|
|
|
|
echo '<input name="crtbutton" type="submit" class="sub" value="'.$lang_label["add"].'">';
|
|
|
|
}
|
2006-06-30 13:20:33 +02:00
|
|
|
echo "</form>";
|
|
|
|
echo "<form method='post' action='index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=".$id_agente."'><input type='submit' class='sub' name='cancel' value='".$lang_label["cancel"]."'></form>";
|
2006-03-27 05:37:27 +02:00
|
|
|
?>
|
2006-06-30 13:20:33 +02:00
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<?php
|
|
|
|
$id_grupo = dame_id_grupo($id_agente);
|
|
|
|
if (give_acl($id_user, $id_grupo, "LW")==1){
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!-- Alert Configuration -->
|
2006-07-09 16:58:02 +02:00
|
|
|
<h3><?php echo $lang_label["alert_asociation_form"] ?><a href='help/<?php echo $help_code ?>/chap3.php#3222' target='_help' class='help'> <span><?php echo $lang_label["help"] ?></span></a></h3>
|
2006-03-27 05:37:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ==================================================================================
|
|
|
|
// Add alerts
|
|
|
|
// ==================================================================================
|
|
|
|
echo '<form name="agente" method="post" action="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente='.$id_agente.'">';
|
|
|
|
if (! isset($update_alert))
|
|
|
|
$update_alert = -1;
|
|
|
|
if ($update_alert != 1)
|
|
|
|
echo '<input type="hidden" name="insert_alert" value=1>';
|
|
|
|
else {
|
|
|
|
echo '<input type="hidden" name="update_alert" value=1>';
|
|
|
|
echo '<input type="hidden" name="id_aam" value="'.$alerta_id_aam.'"';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<input type="hidden" name="id_agente" value="<?php echo $id_agente ?>">
|
|
|
|
<table width=650 cellpadding="3" cellspacing="3" class="fon" border=0>
|
2006-06-26 18:09:20 +02:00
|
|
|
<tr><td class='lb' rowspan='9' width='5'>
|
2006-03-27 05:37:27 +02:00
|
|
|
<td class="datos"><?php echo $lang_label["alert_type"]?>
|
|
|
|
<td class="datos">
|
|
|
|
<select name="tipo_alerta">
|
|
|
|
<?php
|
|
|
|
$sql1='SELECT * FROM talerta ORDER BY nombre';
|
|
|
|
if (isset($tipo_alerta)){
|
|
|
|
echo "<option value='".$tipo_alerta."'>".dame_nombre_alerta($tipo_alerta);
|
|
|
|
}
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
echo "<option value='".$row["id_alerta"]."'>".$row["nombre"];
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
<a name="alerts"> <!-- Don't Delete !! -->
|
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><?php echo $lang_label["min_value"] ?>
|
2006-07-04 12:10:21 +02:00
|
|
|
<td class="datos2"><input type="text" name="minimo" size="5" value="<?php echo $alerta_dis_max ?>" style="margin-right: 70px;">
|
|
|
|
<?php echo $lang_label["max_value"] ?>
|
2006-03-27 05:37:27 +02:00
|
|
|
<input type="text" name="maximo" size="5" value="<?php echo $alerta_dis_min ?>">
|
|
|
|
<tr><td class="datos"><?php echo $lang_label["description"] ?>
|
|
|
|
<td class="datos"><input type="text" name="descripcion" size="39" value ="<?php echo $alerta_descripcion ?>">
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><?php echo $lang_label["field1"] ?>
|
|
|
|
<td class="datos2"><input type="text" name="campo_1" size="39" value="<?php echo $alerta_campo1 ?>">
|
2006-03-27 05:37:27 +02:00
|
|
|
<tr><td class="datos"><?php echo $lang_label["field2"] ?>
|
|
|
|
<td class="datos"><input type="text" name="campo_2" size="39" value="<?php echo $alerta_campo2 ?>">
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><?php echo $lang_label["field3"] ?>
|
|
|
|
<td class="datos2"><textarea name="campo_3" cols="36" rows="3"><?php echo $alerta_campo3 ?></textarea>
|
2006-03-27 05:37:27 +02:00
|
|
|
<tr><td class="datos"><?php echo $lang_label["time_threshold"] ?>
|
2006-07-04 12:10:21 +02:00
|
|
|
<td class="datos"><select name="time_threshold" style="margin-right: 60px;">
|
2006-03-27 05:37:27 +02:00
|
|
|
<?PHP
|
|
|
|
if ($alerta_time_threshold != ""){
|
|
|
|
echo "<option value='".$alerta_time_threshold."'>".give_human_time($alerta_time_threshold)."</option>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<option value=300>5 Min.
|
|
|
|
<option value=600>10 Min
|
|
|
|
<option value=900>15 min
|
|
|
|
<option value=1800>30 Min
|
|
|
|
<option value=3600>1 Hour
|
|
|
|
<option value=7200>2 Hour
|
|
|
|
<option value=18000>5 Hour
|
|
|
|
<option value=43200>12 Hour
|
|
|
|
<option value=86400>1 Day
|
|
|
|
<option value=604800>1 Week
|
|
|
|
<option value=-1>Other value
|
|
|
|
</select>
|
2006-07-04 12:10:21 +02:00
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
<?php echo $lang_label["other"] ?>
|
|
|
|
|
|
|
|
<input type="text" name="other" size="5">
|
|
|
|
|
2006-07-02 23:25:53 +02:00
|
|
|
<tr><td class="datos2"><?php echo $lang_label["min_alerts"] ?>
|
|
|
|
<td class="datos2">
|
2006-07-04 12:10:21 +02:00
|
|
|
<input type="text" name="min_alerts" size="5" value="<?php if (isset($alerta_min_alerts)) {echo$alerta_min_alerts;} ?>" style="margin-right: 10px;">
|
2006-06-29 18:34:55 +02:00
|
|
|
<?php echo $lang_label["max_alerts"] ?>
|
2006-03-27 05:37:27 +02:00
|
|
|
|
|
|
|
<input type="text" name="max_alerts" size="5" value="<?php if (isset($alerta_max_alerts)) {echo $alerta_max_alerts;} ?>">
|
|
|
|
|
|
|
|
|
|
|
|
<tr><td class="datos"><?php echo $lang_label["assigned_module"] ?>
|
|
|
|
<td class="datos">
|
|
|
|
<?php if ($update_alert != 1) {
|
|
|
|
echo '<select name="agente_modulo"> ';
|
|
|
|
$sql2='SELECT * FROM tagente_modulo WHERE id_agente = '.$id_agente;
|
|
|
|
$result2=mysql_query($sql2);
|
|
|
|
while ($row2=mysql_fetch_array($result2)){
|
|
|
|
if ($row2["id_tipo_modulo"] != -1) {
|
|
|
|
$sql1='SELECT * FROM ttipo_modulo WHERE id_tipo = '.$row2["id_tipo_modulo"];
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
echo "<option value='".$row2["id_agente_modulo"]."'>".$row["nombre"]."/".$row2["nombre"];
|
|
|
|
}
|
|
|
|
} else // for -1, is a special module, keep alive monitor !!
|
|
|
|
echo "<option value='".$row2["id_agente_modulo"]."'>".$row2["nombre"];
|
|
|
|
}
|
|
|
|
echo "</select>";
|
|
|
|
} else {
|
|
|
|
echo "<i class='red'>".$lang_label["no_change_field"]."</i>";
|
|
|
|
}
|
|
|
|
|
|
|
|
// End block only if $creacion_agente != 1;
|
|
|
|
|
2006-06-29 21:31:53 +02:00
|
|
|
echo '<tr><td colspan="3"><div class="raya"></div></td></tr>';
|
2006-03-27 05:37:27 +02:00
|
|
|
echo '<tr><td colspan="3" align="right">';
|
|
|
|
if ($update_alert== "1"){
|
|
|
|
echo '<input name="updbutton" type="submit" class="sub" value="'.$lang_label["update"].'">';
|
|
|
|
} else {
|
|
|
|
echo '<input name="crtbutton" type="submit" class="sub" value="'.$lang_label["add"].'">';
|
|
|
|
}
|
2006-06-30 13:20:33 +02:00
|
|
|
echo '</form>';
|
|
|
|
|
|
|
|
echo "<form method='post' action='index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=".$id_agente."'><input type='submit' class='sub' name='crt' value='".$lang_label["cancel"]."'></form>";
|
|
|
|
echo '</td></tr></table>';
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // end page
|
|
|
|
else {
|
|
|
|
audit_db($id_user,$REMOTE_ADDR, "ACL Violation","Trying to access Agent Management");
|
|
|
|
require ("general/noaccess.php");
|
2006-07-03 12:49:42 +02:00
|
|
|
}
|