netbox-ip-monitor
Visual representation of IP addresses
IP monitor to display all IP addresses in a prefix
The monitor does not display IP addresses in IPv6, container and overly large (24) prefixes.
Compatibility
NetBox Version
Plugin Version
- 3
>= 0.1.0
- 2
>= 0.0.0, < 0.1.0
- X
0.0.0
Installation
The plugin is available as a Python package in PyPI and can be installed with pip
source /opt/netbox/venv/bin/activate
python3 -m pip install netbox-ip-monitor
Enable the plugin in /opt/netbox/netbox/netbox/configuration.py:
PLUGINS = ['netbox_ip_monitor']
Run collectstatic:
python3 manage.py collectstatic --no-input
To ensure the plugin is automatically re-installed during future upgrades, create a file named local_requirements.txt (if not already existing) in the NetBox root directory (alongside requirements.txt) and append the netbox-ip-monitor package:
echo netbox-ip-monitor >> local_requirements.txt
|