Installation¶
Requirements¶
- NetBox 4.5.x
- Python 3.12, 3.13, or 3.14
- A reachable PostgreSQL database and Redis (the standard NetBox stack)
- NAPALM-compatible network devices
Install from PyPI¶
To enable the optional netbox-routing
integration (required for the BGP collector to populate BGPRouter,
BGPScope, and BGPPeer), install the routing extra:
Install from source¶
Or pin via your local_requirements.txt / plugin_requirements.txt:
Enable the plugin¶
Edit /opt/netbox/netbox/netbox/configuration.py (or, for netbox-docker,
/configuration/plugins.py) and add netbox_facts to PLUGINS:
A minimal PLUGINS_CONFIG block:
PLUGINS_CONFIG = {
"netbox_facts": {
"top_level_menu": True,
"napalm_username": "",
"napalm_password": "",
"global_napalm_args": {},
"valid_interfaces_re": r".*",
},
}
See Configuration for every available setting.
Run migrations¶
Restart NetBox (and the RQ workers) so the plugin's JobRunner is
registered.
Verify the install¶
After restart, the navigation menu should show an Operational Facts
top-level entry (or, if top_level_menu is False, entries under the
Plugins menu). The REST API root at /api/plugins/facts/ should list
the four resources:
macaddresses/macvendors/collectionplans/factsreports/