NetBox Ping Plugin
A NetBox plugin for pinging and discovering IPs in your network.
Features
Ping IPs and subnets directly from NetBox
Auto-discover new IPs
Track IP status with custom fields and tags
Bulk scan operations
Dark mode compatible UI
Installation
pip install netbox-ping
Configuration
Add to your configuration.py:
PLUGINS = ['netbox_ping']
PLUGINS_CONFIG = {
'netbox_ping': {
'coming_soon': True
}
}
Usage
Install the plugin
Navigate to Plugins > NetBox Ping
Click "Create Required Fields & Tags"
Start scanning your networks!
Requirements
NetBox 4.0 or later
Python 3.8 or later
ping command available on the system
Package Installation
Install the package from your NetBox installation path:
source /opt/netbox/venv/bin/activate
cd /opt/netbox
pip install git+https:/github.com/DenDanskeMine/netbox-prefix-pinger.git
Enable the Plugin
Add the plugin to PLUGINS in /opt/netbox/netbox/netbox/configuration.py:
PLUGINS = [
netbox_ping ,
]
Run Migr
|