Skip to main content
CommunityCloudEnterprise

DCIM

This page documents special methods available for DCIM models in pyNetBox.

Standard API Operations

Standard CRUD operations (.all(), .filter(), .get(), .create(), .update(), .delete()) follow NetBox's REST API patterns. Refer to the NetBox API documentation for details on available endpoints and filters.

Devices

NAPALM Integration

The napalm property provides access to NAPALM device data.

::: pynetbox.models.dcim.Devices.napalm handler: python show_source: true

Example:

device = nb.dcim.devices.get(name='router1')

# Get device facts
facts = device.napalm.list(method='get_facts')
print(facts)

# Get interfaces
interfaces = device.napalm.list(method='get_interfaces')

# Get ARP table
arp = device.napalm.list(method='get_arp_table')

Config Rendering

The render_config property renders device configuration based on config contexts and templates.

::: pynetbox.models.dcim.Devices.render_config handler: python show_source: true

Example:

device = nb.dcim.devices.get(name='switch1')
config = device.render_config.create()
print(config)

Racks

Rack Units

The units property provides access to rack unit information.

::: pynetbox.models.dcim.Racks.units handler: python show_source: true

Example:

rack = nb.dcim.racks.get(name='RACK-01')
units = rack.units.list()

for unit in units:
if unit.device:
print(f"U{unit.name}: {unit.device.name}")
else:
print(f"U{unit.name}: Empty")

Rack Elevation

The elevation property supports both JSON and SVG output for rack elevation diagrams.

::: pynetbox.models.dcim.Racks.elevation handler: python show_source: true

Examples:

rack = nb.dcim.racks.get(name='RACK-01')

# Get elevation as JSON (returns list of RU objects)
elevation_data = rack.elevation.list()

# Get elevation as SVG diagram
svg_diagram = rack.elevation.list(render='svg')

# Save SVG to file
with open('rack-elevation.svg', 'w') as f:
f.write(svg_diagram)

Cable Tracing

Several DCIM models support cable path tracing through the trace() method.

Models with cable tracing:

  • Interfaces
  • ConsolePorts
  • ConsoleServerPorts
  • PowerPorts
  • PowerOutlets
  • PowerFeeds
  • FrontPorts
  • RearPorts

Example:

# Trace a network interface
interface = nb.dcim.interfaces.get(name='eth0', device='switch1')
trace_result = interface.trace()

# The trace returns a list of [terminations, cable, terminations]
for item in trace_result:
if isinstance(item, list):
# Terminations
for term in item:
print(f" Termination: {term}")
else:
# Cable or None
if item:
print(f" Cable: {item.id} - {item.label}")
else:
print(" No cable")

# Trace console port
console = nb.dcim.console_ports.get(name='Console', device='router1')
console_trace = console.trace()

# Trace power connections
power_port = nb.dcim.power_ports.get(name='PSU1', device='server1')
power_trace = power_port.trace()