2015-03-26 13:12:48 +01:00
|
|
|
<?php
|
2015-07-02 15:24:39 +02:00
|
|
|
|
2021-11-04 16:28:15 +01:00
|
|
|
// Pandora FMS - http://pandorafms.com
|
2015-07-02 15:24:39 +02:00
|
|
|
// ==================================================
|
2023-06-08 11:53:13 +02:00
|
|
|
// Copyright (c) 2005-2023 Pandora FMS
|
2023-06-08 13:10:16 +02:00
|
|
|
// Please see http://pandorafms.com/community/ for full contribution list
|
2015-07-02 15:24:39 +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; 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;
|
2019-01-30 16:18:44 +01:00
|
|
|
check_login();
|
2019-11-21 18:21:46 +01:00
|
|
|
ui_require_css_file('first_task');
|
2015-03-26 13:12:48 +01:00
|
|
|
?>
|
2019-02-15 18:42:44 +01:00
|
|
|
<?php ui_print_info_message(['no_close' => true, 'message' => __('There are no discovery tasks defined yet.') ]); ?>
|
2015-03-26 13:12:48 +01:00
|
|
|
|
|
|
|
<div class="new_task">
|
2019-01-30 16:18:44 +01:00
|
|
|
<div class="image_task">
|
2019-11-21 18:21:46 +01:00
|
|
|
<?php echo html_print_image('images/first_task/icono_grande_reconserver.png', true, ['title' => __('Discovery server')]); ?>
|
2019-01-30 16:18:44 +01:00
|
|
|
</div>
|
|
|
|
<div class="text_task">
|
2019-03-26 19:29:48 +01:00
|
|
|
<h3> <?php echo __('Create Discovery Task'); ?></h3><p id="description_task">
|
2019-01-30 16:18:44 +01:00
|
|
|
<?php
|
|
|
|
echo __(
|
2019-02-15 18:42:44 +01:00
|
|
|
'Discovery Task are used to find new elements in the network.
|
2015-06-16 16:09:50 +02:00
|
|
|
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>
|
2019-01-30 16:18:44 +01:00
|
|
|
type. You can define your own customized recon script.'
|
|
|
|
);
|
|
|
|
?>
|
|
|
|
</p>
|
2019-02-15 18:42:44 +01:00
|
|
|
<form action="index.php?sec=gservers&sec2=godmode/servers/discovery" method="post">
|
|
|
|
<input type="submit" class="button_task" value="<?php echo __('Discover'); ?>" />
|
2019-04-10 17:30:35 +02:00
|
|
|
<input type="hidden" name="discovery_hint" value="1"/>
|
2019-01-30 16:18:44 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
2015-03-26 13:12:48 +01:00
|
|
|
</div>
|