Skip to main content

NetBox plugin: DIN rails, subracks, mounting plates, busbars, and multi-row grids with SVG visualization of cabinet interiors, chassis/parent-child devices, and modular PLC chassis. OT/ICS focus.

Project description

netbox-cabinet-view

A NetBox plugin that models physical mounting that doesn't fit a 19″ rack — DIN rails, Eurocard subracks, mounting plates, busbars, and multi-row grids — and renders each cabinet as an SVG drawing inside NetBox itself.

Preview

Every image below is a live SVG served by the plugin's own endpoint, rendered against real seeded demo data on a running NetBox instance. Dark mode follows the parent page automatically.

Rack elevation — with cabinet interiors embedded in place

The plugin patches NetBox's core RackElevationSVG so every carrier-hosting shelf renders its own interior inside its U slot on the rack elevation, on both the front and rear faces:

Rack front Rack rear
Rack front elevation Rack rear elevation

The embedded interiors are rendered in thumbnail mode (diminished contrast, no per-placement labels) so they read as "preview — open the Layout tab to interact" rather than pretending each little rectangle is a click target. Full-fidelity rendering is one click away on the device's Layout tab.

A single WDM shelf — DeviceBay-backed child devices

WDM 2-slot shelf

Two filter modules installed into DeviceBay slots on a parent shelf. The plugin resolves placement.device_bay.installed_device at render time, so the picture tracks standard NetBox parent/child device relationships without duplicating any data.

A standalone DIN rail

Standalone DIN rail with two relays

The simplest case — a bare DIN rail in a Location with two relays clipped on. No enclosing cabinet, no rack, no u_height. Proves the plugin doesn't require an enclosing device hierarchy.

Want to see the rest? The full gallery (20 scenarios covering DIN rails, subracks, mounting plates, busbars, grid mounts, vertical orientations, MCC buckets, VFD cabinets, modular IEDs, ODF frames, …) lives in docs/scenarios.md.

Compatibility

NetBox version Supported Tested Notes
4.5.x Actively developed against 4.5.7 — this is the version all screenshots and smoke tests run against
4.4.x ⚠️ Untested but all APIs used (NetBoxModel, ViewTab, register_model_view, get_model_urls, PluginTemplateExtension.models, HTMXSelect pattern) are present in 4.4.0; no code changes expected
4.3.x and older Not supported — some helpers we rely on may not exist or have different signatures
4.6.x (when released) To be verified when released

Python 3.10+ required.

Install

pip install netbox-cabinet-view

Add to your NetBox configuration.py:

PLUGINS = ['netbox_cabinet_view']

Then run migrations and restart NetBox:

python manage.py migrate netbox_cabinet_view
python manage.py collectstatic --no-input

A Cabinet View entry appears in the sidebar, and every dcim.Device detail page whose DeviceType has hosts_mounts=True grows a Layout tab. Unprofiled u_height=0 devices show a soft discovery hint card in the right column pointing users at profile creation.

Using it

  1. Create a DeviceMountProfile for any DeviceType that hosts mounts (set hosts_mounts=True and the internal dimensions in mm). Or click the discovery hint card on a cabinet-shaped Device detail page and follow the guided flow.
  2. Create a DeviceMountProfile for any DeviceType that mounts on other mounts (set mountable_on, mountable_subtype, and footprint_primary in mount units). Placement size is optional — it auto-fills from the profile's footprint_primary.
  3. Optional: create a ModuleMountProfile for any dcim.ModuleType that you want rendered at its real width inside a modular chassis.
  4. Create a Device of the host type, place it in a Location or a Rack as normal.
  5. Add one or more Mount records to the host device — DIN rail at offset (x, y) with a length, or a mounting plate with width×height, etc.
  6. Add Placement records to place devices / device bays / module bays on the mounts at specific positions. The form adapts to the selected mount's type: 1D mounts get just position/size, grid mounts add row/row_span, 2D mounts switch to position_x/y + size_x/y. Target dropdowns are compatibility-filtered to valid unoccupied devices and bays.
  7. Visit the host device's detail page → Layout tab.

Faster add-placement shortcut: click any empty slot on the rendered layout. 1D and grid mounts turn every unoccupied slot range into a click target; 2D mounting plates accept click-anywhere coordinates. The placement form opens pre-filled with the mount and position.

Bundled line-art

The plugin ships 62 generic front-panel SVGs — de-branded, multi-vendor-inspired — as ready-to-use placeholder images. Upload them to ModuleMountProfile.front_image (modules) or DeviceType.front_image (host devices) so your layouts render with real panel art instead of plain colored rectangles:

IED CPU module RTU DI module SFP fibre face IED chassis

Auto-assign to all demo profiles: python manage.py cabinetview_assign_lineart

Browse the full library: docs/line-art.md — 14 categories covering IED modules (4 manufacturer families), RTU modules (4 variants), PLC/fieldbus I/O, SFP/QSFP transceivers, DIN-rail devices, busbar components, cable management, and host chassis.

Demo data

python manage.py cabinetview_seed

Idempotent. Creates one Site, one Rack, ~30 DeviceTypes with profiles, and 20 demo scenarios. The seed also auto-assigns bundled line-art to all matching profiles, so the demo scenarios render with panel images out of the box. See docs/scenarios.md for the full list.

Advanced topics

The sections below live in docs/ to keep this README scannable:

  • docs/architecture.md — the four plugin models (DeviceMountProfile, ModuleMountProfile, Mount, Placement), the Mermaid ER schema, the three-way XOR explainer, and the validation rules enforced in Placement.clean().
  • docs/scenarios.md — the full 20-scenario demo gallery with tables describing each scenario, plus OT/ICS coverage and ISP-specific notes.
  • docs/certification-ratings.md — why environmental / certification metadata (IP, NEMA, Ex, temperature, SIL, fire, seismic, …) lives in NetBox custom fields instead of plugin models, with a recommended baseline of fields to create on dcim.rack and dcim.devicetype.
  • docs/offline.md — how the plugin is fully offline-safe at runtime (no CDNs, no external fonts, no runtime HTTP calls) for OT/ICS / air-gapped / classified deployments.
  • docs/line-art.md — the bundled library of generic, de-branded front-panel SVGs that ship as ready-to-use placeholder images for modules and host devices.
  • docs/roadmap.md — what's not in v0.4.0 and why (Krone LSA, strut channel, nested SVG recursion, Okabe-Ito palette, drag-to-place UI, …) and what is explicitly NOT on the roadmap (environmental custom fields, standard 19″ patch cabling).

Security & supply chain

Every release ships with machine-readable supply-chain documents under security/:

Reporting a vulnerability: please open a private Security Advisory on GitHub rather than a public issue.

License

Apache-2.0. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

netbox_cabinet_view-0.6.1.tar.gz (110.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

netbox_cabinet_view-0.6.1-py3-none-any.whl (156.8 kB view details)

Uploaded Python 3

File details

Details for the file netbox_cabinet_view-0.6.1.tar.gz.

File metadata

  • Download URL: netbox_cabinet_view-0.6.1.tar.gz
  • Upload date:
  • Size: 110.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.6

File hashes

Hashes for netbox_cabinet_view-0.6.1.tar.gz
Algorithm Hash digest
SHA256 a346a0e7fb14100a187d778b826a56e34706a7a39ddc67c70bf82359ab4cb5f2
MD5 98775ef0fae198c9dd92e3bad9e8f1ff
BLAKE2b-256 578ec28bcd13017c95827fbae3a0251a8a2b45c28bc51d302e363b74e34007de

See more details on using hashes here.

File details

Details for the file netbox_cabinet_view-0.6.1-py3-none-any.whl.

File metadata

File hashes

Hashes for netbox_cabinet_view-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0180e92ae5ba6fb5f16ffa9a625794880a12d10fd23d01e0e379d6a0d4af9450
MD5 28699cf6e4591144d3ca2da70a3b79e5
BLAKE2b-256 a56eec95130a0cebee2d276d57680649767ac6e939e19b2a127429d3b4a18ab5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page