mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
8 lines
231 B
PHP
8 lines
231 B
PHP
<?php
|
|
if ($service['service_port']) {
|
|
$port = $service['service_port'];
|
|
} else {
|
|
$port = '23';
|
|
}
|
|
$check_cmd = $config['nagios_plugins'] . "/check_telnet -H ".$service['hostname']." -p ".$port." ".$service['service_param'];
|