42 lines
2.0 KiB
PHP
Executable File
42 lines
2.0 KiB
PHP
Executable File
<?php
|
|
|
|
// Pandora FMS - https://pandorafms.com
|
|
// ==================================================
|
|
// Copyright (c) 2005-2023 Pandora FMS
|
|
// Please see https://pandorafms.com/community/ 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.
|
|
global $config;
|
|
check_login();
|
|
ui_require_css_file('first_task');
|
|
?>
|
|
<?php ui_print_info_message(['no_close' => true, 'message' => __('There are no discovery tasks defined yet.') ]); ?>
|
|
|
|
<div class="new_task">
|
|
<div class="image_task">
|
|
<?php echo html_print_image('images/first_task/icono_grande_reconserver.png', true, ['title' => __('Discovery server')]); ?>
|
|
</div>
|
|
<div class="text_task">
|
|
<h3> <?php echo __('Create Discovery Task'); ?></h3><p id="description_task">
|
|
<?php
|
|
echo __(
|
|
'Discovery Task are 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>
|
|
<form action="index.php?sec=gservers&sec2=godmode/servers/discovery" method="post">
|
|
<input type="submit" class="button_task" value="<?php echo __('Discover'); ?>" />
|
|
<input type="hidden" name="discovery_hint" value="1"/>
|
|
</form>
|
|
</div>
|
|
</div>
|