netbox v3.2.5 releases: IP address management and data center infrastructure management tool
NetBox is an open-source web application designed to help manage and document computer networks. Initially conceived by the network engineering team at DigitalOcean, NetBox was developed specifically to address the needs of network and infrastructure engineers. It encompasses the following aspects of network management:
- IP address management (IPAM) – IP networks and addresses, VRFs, and VLANs
- Equipment racks – Organized by group and site
- Devices – Types of devices and where they are installed
- Connections – Network, console, and power connections among devices
- Virtualization – Virtual machines and clusters
- Data circuits – Long-haul communications circuits and providers
- Secrets – Encrypted storage of sensitive credentials
While NetBox strives to cover many areas of network management, the scope of its feature set is necessarily limited. This ensures that development focuses on core functionality and that scope creep is reasonably contained. To that end, it might help to provide some examples of functionality that NetBox does not provide:
- Network monitoring
- DNS server
- RADIUS server
- Configuration management
- Facilities management
That said, NetBox can be used to great effect in populating external tools with the data they need to perform these functions.
NetBox was designed with the following tenets foremost in mind.
Replicate the Real World
Careful consideration has been given to the data model to ensure that it can accurately reflect a real-world network. For instance, IP addresses are assigned not to devices, but to specific interfaces attached to a device, and an interface may have multiple IP addresses assigned to it.
Serve as a “Source of Truth”
NetBox intends to represent the desired state of a network versus its operational state. As such, automated import of live network state is strongly discouraged. All data created in NetBox should first be vetted by a human to ensure its integrity. NetBox can then be used to populate monitoring and provisioning systems with a high degree of confidence.
Keep it Simple
When given a choice between a relatively simple 80% solution and a much more complex complete solution, the former will typically be favored. This ensures a lean codebase with a low learning curve.
Application Stack
NetBox is built on the Django Python framework and utilizes a PostgreSQL database. It runs as a WSGI service behind your choice of HTTP server.
Function | Component |
---|---|
HTTP service | nginx or Apache |
WSGI service | gunicorn or uWSGI |
Application | Django/Python |
Database | PostgreSQL 9.4+ |
Task queuing | Redis/django-rq |
Live device access | NAPALM |
Changelog v3.2.5
Enhancements
- #8704 – Shift-click to select multiple objects in a list
- #8882 – Support filtering IP addresses by multiple parent prefixes
- #8893 – Include count of IP ranges under tenant view
- #9417 – Initialize manufacturer selection when inserting a new module
- #9501 – Add support for custom Jinja2 filters
- #9517 – Linkify related power port on power outlet view
- #9525 – Provide one-click edit link for objects in tables
- #9533 – Move Markdown reference to local documentation
- #9534 – Add VLAN group selector to interface bulk edit forms
- #9556 – Leave dropdown open upon selection for multi-select fields
Bug Fixes
- #8944 – Fix rendering of Markdown links with colons
- #9108 – Fix rendering of bracketed Markdown links
- #9374 – Improve performance when retrieving devices/VMs with config context data
- #9466 – Avoid sending webhooks after script/report failure
- #9480 – Fix sorting services & service templates by port numbers
- #9484 – Include services listening on “all IPs” under IP address view
- #9486 – Fix redirect URL when adding device components from the module view
- #9495 – Correct link to contacts in contact groups table column
- #9503 – Hyperlinks in rack elevation SVGs must always use absolute URLs
- #9512 – Fix duplicate site results when searching by ASN
- #9524 – Correct order of VLAN fields under VM interface creation form
- #9537 – Ensure consistent use of placeholder tag throughout UI
- #9549 – Fix device counts for rack list under rack role view