2015-03-26 13:12:48 +01:00
|
|
|
<?php
|
2015-07-02 15:24:39 +02:00
|
|
|
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
|
|
|
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
|
|
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
|
|
|
|
// 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; 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.
|
|
|
|
|
2015-03-26 13:12:48 +01:00
|
|
|
global $config;
|
|
|
|
check_login ();
|
|
|
|
ui_require_css_file ('firts_task');
|
2015-07-06 18:18:20 +02:00
|
|
|
|
|
|
|
ui_print_info_message(
|
|
|
|
array(
|
|
|
|
'no_close'=>true,
|
|
|
|
'message'=> __('There are no visual console defined yet.')));
|
2015-03-26 13:12:48 +01:00
|
|
|
?>
|
|
|
|
|
2015-06-25 08:21:53 +02:00
|
|
|
<div class="new_task">
|
|
|
|
<div class="image_task">
|
2015-06-26 14:52:01 +02:00
|
|
|
<?php echo html_print_image('images/firts_task/icono_grande_visualconsole.png', true, array("title" => __('Visual Console')));?>
|
2015-06-08 13:13:09 +02:00
|
|
|
</div>
|
2015-06-25 08:21:53 +02:00
|
|
|
<div class="text_task">
|
2015-06-26 14:52:01 +02:00
|
|
|
<h3> <?php echo __('Create Visual Console'); ?></h3>
|
2015-06-25 08:21:53 +02:00
|
|
|
<p id="description_task"> <?php echo __('The Recon Task definition of Pandora FMS is used to find new elements in the network.
|
|
|
|
If it detects any item, it will add that item to the monitoring, and if that item it is already being monitored, then it will
|
|
|
|
ignore it or will update its information.There are three types of detection: Based on <strong id="fuerte"> ICMP </strong>(pings),
|
|
|
|
<strong id="fuerte">SNMP</strong> (detecting the topology of networks and their interfaces), and other <strong id="fuerte"> customized </strong>
|
|
|
|
type. You can define your own customized recon script.'); ?></p>
|
2015-07-08 16:09:00 +02:00
|
|
|
<form action="index.php?sec=reporting&sec2=godmode/reporting/visual_console_builder" method="post">
|
|
|
|
<?php html_print_input_hidden ('edit_layout', 1); ?>
|
2015-06-26 14:52:01 +02:00
|
|
|
<input type="submit" class="button_task" value="<?php echo __('Create Visual Console'); ?>" />
|
2015-06-25 08:21:53 +02:00
|
|
|
</form>
|
2015-06-08 13:13:09 +02:00
|
|
|
</div>
|
2015-03-26 13:12:48 +01:00
|
|
|
</div>
|