Auto Discovery without SNMP

Hello,

We have started using librenms recently, we can see that this tool is very powerful.
We want to use this tool as a network analyser.
We would like to plug it into a network and fill in the client’s network, let it run and see the results.

We are now at the stage of adding stations automatically via autodiscovery. My question is this:
Is it possible to discover new stations without modifying the SNMP and still have the feedback that comes back when we do an SNMP scan?
I was able to do a scan with the --ping option and it did bring up some stations but without any information. There is any other way to do it ?

The output of ./validate.php :

root@raspberrypi:/opt/librenms# cat validate.php
#!/usr/bin/env php

<?php /* * LibreNMS * * Copyright (c) 2014 Neil Lathwood * * 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, either version 3 of the License, or (at your * option) any later version. Please see LICENSE.txt at the top level of * the source code distribution for details. */ use LibreNMS\Config; use LibreNMS\ValidationResult; use LibreNMS\Validator; chdir(__DIR__); // cwd to the directory containing this script ini_set('display_errors', 1); $options = getopt('g:m:s::h::'); if (isset($options['h'])) { echo "\n Validate setup tool Usage: ./validate.php [-g ] [-s] [-h] -h This help section. -s Print the status of each group -g Any validation groups you want to run, comma separated: Non-default groups: - mail: this will test your email settings (uses default_mail option even if default_only is not set) - distributedpoller: this will test for the install running as a distributed poller - rrdcheck: this will check to see if your rrd files are corrupt Default groups: - configuration: checks various config settings are correct - database: checks the database for errors - dependencies: checks that all required libraries are installed and up-to-date - disk: checks for disk space and other disk related issues - php: check that various PHP modules and functions exist - poller: check that the poller and discovery are running properly - programs: check that external programs exist and are executable - python: check that various Python modules and functions exist - system: checks system related items - updates: checks the status of git and updates - user: check that the LibreNMS user is set properly Example: ./validate.php -g mail. "; exit; } if (function_exists('posix_getuid') && posix_getuid() === 0) { echo 'Do not run validate.php as root' . PHP_EOL; exit(1); } // Check autoload if (! file_exists('vendor/autoload.php')) { print_fail('Composer has not been run, dependencies are missing', './scripts/composer_wrapper.php install --no-dev'); exit; } require_once 'vendor/autoload.php'; require_once 'includes/common.php'; require_once 'includes/functions.php'; // Buffer output ob_start(); $precheck_complete = false; register_shutdown_function(function () { global $precheck_complete; if (! $precheck_complete) { // use this in case composer autoloader isn't available spl_autoload_register(function ($class) { @include str_replace('\\', '/', $class) . '.php'; }); print_header(version_info()); } }); $pre_checks_failed = false; // config.php checks if (file_exists('config.php')) { $syntax_check = `php -ln config.php`; if (strpos($syntax_check, 'No syntax errors detected') === false) { print_fail('Syntax error in config.php'); echo $syntax_check; $pre_checks_failed = true; } $first_line = rtrim(`head -n1 config.php`); if (! strpos($first_line, '<?php') === 0) { print_fail("config.php doesn't start with a <?php - please fix this ($first_line)"); $pre_checks_failed = true; } if (strpos(`tail config.php`, '?>') !== false) {
    print_fail('Remove the ?> at the end of config.php');
    $pre_checks_failed = true;
}

}

// Composer check
$validator = new Validator();
$validator->validate([‘dependencies’]);
if ($validator->getGroupStatus(‘dependencies’) == ValidationResult::FAILURE) {
$pre_checks_failed = true;
}

if ($pre_checks_failed) {
exit;
}

$init_modules = [];
require ‘includes/init.php’;

// make sure install_dir is set correctly, or the next includes will fail
if (! file_exists(Config::get(‘install_dir’) . ‘/.env’)) {
$suggested = realpath(DIR);
print_fail(’‘install_dir’ config setting is not set correctly.’, “It should probably be set to: $suggested”);
exit;
}

if (\LibreNMS\DB\Eloquent::isConnected()) {
$validator->ok(‘Database connection successful’, null, ‘database’);
} else {
$validator->fail(‘Error connecting to your database.’, null, ‘database’);
}

$precheck_complete = true; // disable shutdown function
print_header($validator->getVersions());

if (isset($options[‘g’])) {
$modules = explode(’,’, $options[‘g’]);
} elseif (isset($options[‘m’])) {
$modules = explode(’,’, $options[‘m’]); // backwards compat
} else {
$modules = []; // all modules
}

// run checks
$validator->validate($modules, isset($options[‘s’]) || ! empty($modules));

function print_header($versions)
{
$output = ob_get_clean();
@ob_end_clean();

echo <<< EOF

====================================

Component Version
LibreNMS ${versions[‘local_ver’]}
DB Schema ${versions[‘db_schema’]}
PHP ${versions[‘php_ver’]}
Python ${versions[‘python_ver’]}
MySQL ${versions[‘mysql_ver’]}
RRDTool ${versions[‘rrdtool_ver’]}
SNMP ${versions[‘netsnmp_ver’]}

====================================

$output
EOF;
}

// output matches that of ValidationResult
function print_fail($msg, $fix = null)
{
c_echo("[%RFAIL%n] $msg");
if ($fix && strlen($msg) > 72) {
echo PHP_EOL . ’ ';
}

if (! empty($fix)) {
    c_echo(" [%BFIX%n] %B$fix%n");
}
echo PHP_EOL;

}
If it’s an issue with the WebUI then please consider including a screenshot and the browser version you are using.

If you are having troubles with discovery/polling include the pastebin output of:

./discovery.php -h HOSTNAME -d | ./pbin.sh
./poller.php -h HOSTNAME -r -f -d | ./pbin.sh

If you need to post any text longer than a few lines, please use a pastebin service such as https://p.libren.ms using non-expiring pastes.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.