2006-03-27 05:37:27 +02:00
|
|
|
<?php
|
|
|
|
|
2008-01-10 17:40:00 +01:00
|
|
|
// Pandora FMS - the Free Monitoring System
|
|
|
|
// ========================================
|
2008-04-03 17:43:34 +02:00
|
|
|
// Copyright (c) 2008 Artica Soluciones Tecnológicas, http://www.artica.es
|
2008-01-10 17:40:00 +01:00
|
|
|
// Please see http://pandora.sourceforge.net for full contribution list
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2008-04-03 17:43:34 +02:00
|
|
|
// 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 for version 2.
|
|
|
|
// 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-07-11 10:49:21 +02:00
|
|
|
// Load global vars
|
2006-03-27 05:37:27 +02:00
|
|
|
require("include/config.php");
|
2006-07-11 10:49:21 +02:00
|
|
|
|
2007-03-12 18:58:52 +01:00
|
|
|
$modules_server = 0;
|
2007-07-16 20:47:39 +02:00
|
|
|
$total_modules_network = 0;
|
2007-03-12 18:58:52 +01:00
|
|
|
$total_modules_data = 0;
|
|
|
|
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
if (comprueba_login() != 0) {
|
|
|
|
audit_db($config["id_user"],$REMOTE_ADDR, "ACL Violation","Trying to access Agent view");
|
|
|
|
require ($config["homeurl"]."/general/noaccess.php");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((give_acl($id_user, 0, "AR")==0) AND (give_acl($id_user,0,"AW") == 0) AND (dame_admin($id_user) == 0) ){
|
|
|
|
audit_db($config["id_user"],$REMOTE_ADDR, "ACL Violation","Trying to access Agent view");
|
|
|
|
require ($config["homeurl"]."/general/noaccess.php");
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "<h2>".$lang_label["view_servers"]." > ";
|
|
|
|
echo $lang_label["server_detail"]."</h2>";
|
|
|
|
|
|
|
|
$sql='SELECT * FROM tserver';
|
|
|
|
$result=mysql_query($sql);
|
|
|
|
if (mysql_num_rows($result)){
|
|
|
|
echo "<table cellpadding='4' cellspacing='4' witdh='720' class='databox'>";
|
|
|
|
echo "<tr><th class='datos'>".$lang_label["name"]."</th>";
|
|
|
|
echo "<th class='datos'>".$lang_label['status']."</th>";
|
|
|
|
echo "<th class='datos'>".$lang_label['load']."</th>";
|
|
|
|
echo "<th class='datos'>".$lang_label['modules']."</th>";
|
|
|
|
echo "<th class='datos'>".$lang_label['lag']."</th>";
|
|
|
|
echo "<th class='datos'>".$lang_label['description']."</th>";
|
|
|
|
echo "<th class='datos' width=80>".$lang_label['type']."</th>";
|
|
|
|
echo "<th class='datos'>".$lang_label['version']."</th>";
|
|
|
|
echo "<th class='datos'>".$lang_label['lastupdate']."</th>";
|
|
|
|
$color=1;
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
if ($color == 1){
|
|
|
|
$tdcolor = "datos";
|
|
|
|
$color = 0;
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
else {
|
|
|
|
$tdcolor = "datos2";
|
|
|
|
$color = 1;
|
|
|
|
}
|
|
|
|
$id_server = $row["id_server"];
|
|
|
|
$name = $row["name"];
|
|
|
|
$address = $row["ip_address"];
|
|
|
|
$status = $row["status"];
|
|
|
|
$laststart = $row["laststart"];
|
|
|
|
$keepalive = $row["keepalive"];
|
|
|
|
$network_server = $row["network_server"];
|
|
|
|
$data_server = $row["data_server"];
|
|
|
|
$snmp_server = $row["snmp_server"];
|
|
|
|
$recon_server = $row["recon_server"];
|
|
|
|
|
|
|
|
$wmi_server = $row["wmi_server"];
|
|
|
|
$plugin_server = $row["plugin_server"];
|
|
|
|
$prediction_server = $row["prediction_server"];
|
|
|
|
$export_server = $row["export_server"];
|
|
|
|
|
|
|
|
$master = $row["master"];
|
|
|
|
$checksum = $row["checksum"];
|
|
|
|
$description = $row["description"];
|
|
|
|
$version = $row["version"];
|
|
|
|
|
|
|
|
|
2008-06-23 16:36:22 +02:00
|
|
|
$serverinfo = server_status ($id_server);
|
|
|
|
|
|
|
|
// Name of server
|
|
|
|
echo "<tr><td class='$tdcolor'>";
|
|
|
|
echo $name;
|
|
|
|
|
|
|
|
// Status
|
|
|
|
echo "<td class='$tdcolor' align='middle'>";
|
|
|
|
if ($status ==0){
|
|
|
|
echo "<img src='images/pixel_red.png' width=20 height=20>";
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
} else {
|
2008-06-23 16:36:22 +02:00
|
|
|
echo "<img src='images/pixel_green.png' width=20 height=20>";
|
2007-03-19 20:39:40 +01:00
|
|
|
}
|
2008-06-23 16:36:22 +02:00
|
|
|
|
|
|
|
// Load
|
|
|
|
echo "<td class='$tdcolor' align='middle'>";
|
|
|
|
if ($serverinfo["modules_total"] > 0)
|
|
|
|
$percentil = $serverinfo["modules"] / ( $serverinfo["modules_total"]/ 100);
|
|
|
|
else
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
$percentil = 0;
|
2008-06-23 16:36:22 +02:00
|
|
|
if ($percentil > 100)
|
|
|
|
$percentil = 100;
|
|
|
|
// Progress bar render
|
|
|
|
|
|
|
|
echo '<img src="reporting/fgraph.php?tipo=progress&percent='.$percentil.'&height=18&width=80">';
|
|
|
|
|
|
|
|
// Modules
|
|
|
|
echo "<td class='$tdcolor' align='middle'>";
|
|
|
|
echo $serverinfo["modules"] . " ".lang_string("of")." ". $serverinfo["modules_total"];
|
|
|
|
|
|
|
|
// Lag
|
|
|
|
echo "<td class='$tdcolor' align='middle'>";
|
|
|
|
echo human_time_description_raw ($serverinfo["lag"]) . " / ". $serverinfo["module_lag"];
|
|
|
|
|
|
|
|
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
echo "<td class='".$tdcolor."f9'>".substr($description,0,25)."</td>";
|
|
|
|
echo "<td class='$tdcolor' align='middle'>";
|
|
|
|
if ($network_server == 1){
|
|
|
|
echo '<img src="images/network.png" title="network">';
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
if ($data_server == 1){
|
|
|
|
echo ' <img src="images/data.png" title="data server">';
|
|
|
|
}
|
|
|
|
if ($snmp_server == 1){
|
|
|
|
echo " <img src='images/snmp.png' title='snmp console'>";
|
|
|
|
}
|
|
|
|
if ($recon_server == 1){
|
|
|
|
echo " <img src='images/recon.png' title='recon'>";
|
|
|
|
}
|
|
|
|
if ($export_server == 1){
|
|
|
|
echo " <img src='images/database_refresh.png' title='export'>";
|
|
|
|
}
|
|
|
|
if ($wmi_server == 1){
|
|
|
|
echo " <img src='images/wmi.png' title='WMI'>";
|
|
|
|
}
|
|
|
|
if ($prediction_server == 1){
|
|
|
|
echo " <img src='images/chart_bar.png' title='prediction'>";
|
|
|
|
}
|
|
|
|
if ($plugin_server == 1){
|
|
|
|
echo " <img src='images/plugin.png' title='plugin'>";
|
|
|
|
}
|
|
|
|
if ($master == 1){
|
|
|
|
echo " <img src='images/master.png' title='master'>";
|
|
|
|
}
|
|
|
|
if ($checksum == 1){
|
|
|
|
echo " <img src='images/binary.png' title='checksum'>";
|
|
|
|
}
|
|
|
|
echo "</td><td class='".$tdcolor."f9' align='middle'>";
|
|
|
|
echo $version;
|
|
|
|
|
|
|
|
echo "</td><td class='".$tdcolor."f9' align='middle'>";
|
|
|
|
// if ($status ==0)
|
2008-06-13 Sancho Lerena <slerena@gmail.com>
* index.php: Added pure (Fullscreen). HTML code cleanup and user session.
* pandoradb.sql: talert_snmp: Added priority field.
* pandoradb_data.sql: Changes default values in talerta. tconfig_os, tgrupo
and some links.
* header.php: Fixed some user session management.
* logon_ok.php: New design for welcome screen, odometer is over.
* menu.php, godmode/menu.php: Some ACL improvements.
* agent_disk_conf_editor.php: Minor fix in view link.
* configurar_agente.php, agent_manager.php: Added parent combo and better
ACL checks. New remote configuration control for get timestamp info of
config file.
* modify_alert.php: Changes to use new internal Mail alert.
* config.php: Some items moved to config_process. (font, attachment and
default style).
* functions.php: Added form_agent_combo(), form_event_type_combo(),
form_priority() and return_priority() functions.
* functions_db.php: Added smal_event_table() to render a variable table
with latest events (filtered).
* pandora.css. Added pure and priority colors.
* estado_alertas.php: Fixed ACL problems.
* stado_generalagente.php: Graph of modules now represents modules that
has generated events. Old graph is not used anymore. Also display parent.
* estado_grupo.php: Border of boxes is now thicker.
* tactical.php: New screen, almost all code changed. Odometer is not used
anymore, added some new items, like module LAG meter, module sanity, and
other general metrics.
* ver_agente.php: Now renders also event for each agent view. Alert manual
validation generate a new event.
* events.php: New event system. 90% new code. A LOT of new features,
including full screen, coloured (by priority) and filters by six fields.
* snmp_alert.php: Added support for alert priority.
* operation/users/user.php: No longer a user with UM privileges could
see any other user.
* render_view.php: Added fullscreen support for visual maps.
* fgraph.php: Added support for session checking in graphs (at least!).
New graphics for events (some changed it's function like events by group),
and feature added to progress GD implementation.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@860 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-13 18:59:54 +02:00
|
|
|
|
|
|
|
echo human_date_relative($keepalive)."</td>";
|
2006-12-07 19:53:43 +01:00
|
|
|
}
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
echo '</tr></table>';
|
|
|
|
echo "<table cellpadding=2 cellspacing=0>";
|
|
|
|
echo "
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span class='net'>".$lang_label["network_server"]."</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class='data'>".$lang_label["data_server"]."</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class='plugin'>".lang_string ("plugin_server")."</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class='wmi'>".lang_string ("wmi_server")."</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class='prediction'>".lang_string ("prediction_server")."</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span class='export'>".lang_string ("export_server"). "</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class='snmp'>".lang_string ("snmp_console"). "</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class='recon'>".lang_string ("recon_server"). "</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class='binary'>".lang_string ("md5_checksum"). "</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class='master'>".lang_string ("master"). "</span>
|
|
|
|
</td>
|
|
|
|
</tr>";
|
|
|
|
echo "</table>";
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
|
2007-04-18 18:48:38 +02:00
|
|
|
?>
|