Skip to content

Simple python script to pull hosts from phpIPAM into LibreNMS

License

Notifications You must be signed in to change notification settings

dagbdagb/ipam2lnms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Synchronizing phpIPAM and LibreNMS

./ipam2lnms.py -h
usage: ipam2lnms.py [-h] [-v] [-a] [-d] [-i] [-z] [-c] [-f] [-b] [-P]

optional arguments:
  -h, --help          show this help message and exit
  -v, --verbose       show verbose output
  -a, --addhosts      hosts only found in phpipam will be added to lnms
  -d, --deletehosts   hosts not found in phpipam will be deleted from lnms
  -i, --ignorehosts   hosts not found in phpipam will be marked as ignored in
                      lnms. (dummy for now)
  -z, --disablehosts  hosts not found in phpipam will be marked as disabled in
                      lnms. (dummy for now)
  -c, --commit        actually execute commands
  -f, --force         forces the device to be added by skipping the icmp and
                      snmp check against the host.
  -b                  Add the host with SNMP if it replies to it, otherwise
                      only ICMP.
  -P                  Add the host with only ICMP, no SNMP or OS discovery.

The reason this script (ipam2lnms) exists, is the lack of native support for phpIPAM in LibreNMS. Combined with the fact that I know just enough python and SQL to be dangerous, and could not find the motivation to learn enough php and LibreNMS to fix said integration myself.

I love both LibreNMS and phpIPAM. But clearly not enough .....

I am hoping for someone with the right combination of php knowledge and available time/energy/karmadeficit to create the commands ignorehost.php and disablehost.php. Or better yet: make this script obsolete by making proper support for phpIPAM in LibreNMS.

The script has only seen minimal testing, and only by me. I use python 3.6, adaption for anything less is simple and left as an exercise for the reader.

How it works. Or is intended to work.

The script connects to the LibreNMS and phpIPAM databases, pulls out a list of hosts from both, and creates lists of hosts unique to both. Really, really simple stuff. Less than 200 lines. Read it and verify that I am not stealing your family heirloom bashrc.

It can then add hosts unique to phpIPAM, to LibreNMS. Using SNMP credentials from LibreNMS' config.php.

It can optionally delete hosts from LibreNMS, which are unique to LibreNMS. I.e. not found in phpIPAM.

The script makes no modification to phpIPAM, and only modifies LibreNMS via the native LibreNMS scripts. The script itself only requires read-only db-accounts.

There is no config file. A few variables can be set in the script header.

The script runs in 'dummy' mode unless you add the '-c' switch. When adding the '-c' switch, the script is silent save for db connection errors. This means that hosts whose SNMP credentials are not the same as in LibreNMS config.php, or hosts which are down or unreachable will fail silently. Unless one of -f/-b/-P is given.

Add '-v' for slightly more verbose output.

It should be safe to run in cron.

Database credentials

The script expects you (or the user executing the script) to have a .my.cnf with the proper credentials to access the LibreNMS and phpIPAM databases. The script expects said file to be in $HOME, this can be changed in the script.

$ cat .my.cnf
[librenms]
user=librenmsro
password=librenmsro2019
database=librenms
host=localhost

[phpipam]
user=phpipamro
password=phpipamro2019
database=phpipam
host=phpipam

If you have a .my.cnf already, do not change what is already there. Just add to it. Tune as needed.

To create the db users:

phpipamhost$ mysql -u dbadminuser -p
MariaDB [(none)]> grant select on phpipam.* to 'phpipamro'@'10.10.10.101' identified by 'phpipamro2019';
MariaDB [(none)]> flush privileges;
MariaDB [(none)]> \q

librenmshost$ mysql -u dbadminuser -p
MariaDB [(none)]> grant select on librenms.* to 'librenmsro'@'127.0.0.1' identified by 'librenmsro2019';
MariaDB [(none)]> flush privileges;
MariaDB [(none)]> \q

The IP address shown in the 'grant' command is the host from which the script will be executed. I expect most users to run this script on the same host as the LibreNMS db. Hence using localhost for accessing that db.

If your phpIPAM db runs on the same host, tune .my.cnf and the grant command accordingly.

About

Simple python script to pull hosts from phpIPAM into LibreNMS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages