A collection of community-sourced DeviceType definitions for import to NetBox
Go to file
Ciro Iriarte a1f807eba3
Dell server improvements & new devices with related modules (#1345)
* Improved PowerEdge R630 with PCI slots & elevation images

* Added support for Dell C63DV daughter card

* Fix yaml formatting

* Move optional ports for R630 to Daughter Card

* Added Dell branded Intel X520

* Added Dell 61X09 NIC card

* Added Dell CD16M NIC card.
Normalized naming with the OCP variant.

* Added Dell VK88G

* Added Dell R1KTR NDC

* Added Dell NICs for Intel X710, both OCP & PCI FH

* Added elevation images for PowerEdge R750

* Added 3 PowerEdge PSU

* Normalizing filenames

* Moved power ports to modules (PSU)

* Fixing power port name

* Move ports to modules for R730xd

* Added elevation images for EX2300-24t

* Fix yaml formatting

* Update 4V8KD.yaml

really fix yaml formatting.

* Update 61X09.yaml

really fix yaml formatting.

* Update 942V6.yaml

really fix yaml formatting.

* Update C63DV.yaml

really fix yaml formatting.

* Update CD16M.yaml

really fix yaml formatting.

* Update DDJKY.yaml

really fix yaml formatting.

* Update M63JN.yaml

really fix yaml formatting.

* Update PJMDN.yaml

really fix yaml formatting.

* Update R1KTR.yaml

really fix yaml formatting.

* Update R1XFC.yaml

really fix yaml formatting.

* Update R1XFC.yaml

really fix yaml formatting.

* Update VK88G.yaml

really fix yaml formatting.

* Third attempt to fix yaml formatting

* Initial Freedom E28Q-L support

* Moving interfaces & PSU to modules

* Fix formatting, trayling black line

* Formatting fix

* Literal newline test

* Fix once more

* Fix yaml formatting

* Added some QFX elevation images

* Fixed Height and documentation link

* Fix formatting

* More formatting fixes..

* Normalizing filenames

* Fix formatting

* Updating image file names. Fixing file formatting

* Adding emoji characters

* Fixing formatting

* migrated images to pngs and updated elevation image names - they need to be the same as the slug.

* Update Freedom-E28Q-L.yaml

Added weight and airflow data points

* Update Freedom-E28Q-L.yaml

Removing USB and VGA from console ports

---------

Co-authored-by: Daniel W. Anner <daniel.anner@danstechsupport.com>
2023-05-23 10:10:35 -04:00
.github Dependencies updates for May 2023 (#1326) 2023-05-05 12:49:12 -04:00
device-types Dell server improvements & new devices with related modules (#1345) 2023-05-23 10:10:35 -04:00
elevation-images Dell server improvements & new devices with related modules (#1345) 2023-05-23 10:10:35 -04:00
module-images/Dell Dell server improvements & new devices with related modules (#1345) 2023-05-23 10:10:35 -04:00
module-types Dell server improvements & new devices with related modules (#1345) 2023-05-23 10:10:35 -04:00
schema Tests: Remove uppercase from slug (#1227) 2023-03-25 11:45:15 -04:00
scripts Filename fixes (#1378) 2023-05-22 18:15:06 -04:00
tests directory separator appropriate for exec env (#1250) 2023-04-01 15:44:41 -04:00
.gitignore Slug Migration (#1375) 2023-05-22 16:38:34 -04:00
.pre-commit-config.yaml Dependencies updates for May 2023 (#1326) 2023-05-05 12:49:12 -04:00
.pre-commit-hooks-config.yaml Dependencies updates for May 2023 (#1326) 2023-05-05 12:49:12 -04:00
.pre-commit-yamlfmt-config.yaml Dependencies updates for May 2023 (#1326) 2023-05-05 12:49:12 -04:00
.yamllint.yaml Fix pre-commit and update CI (#875) 2022-08-10 22:29:59 -04:00
CONTRIBUTING.md Update CONTRIBUTING.md 2022-09-15 21:08:41 -05:00
LICENSE.txt YAML Formatting & Validation (#347) 2021-02-27 07:25:47 -05:00
README.md Update README.md 2023-04-13 11:06:17 -04:00
requirements.txt Pre-Commit bump (#1328) 2023-05-05 13:02:11 -04:00

NetBox Device Type Library

About this Library

This library is intended to be used for populating device types in NetBox. It contains a set of device type definitions expressed in YAML and arranged by manufacturer. Each file represents a discrete physical device type (e.g. make and model). These definitions can be loaded into NetBox instead of creating new device type definitions manually.

If you would like to contribute to this library, please read through our contributing guide before submitting content.

Note: As of March 2023 Netbox-Device-Type-Library-Import has been brought into the NetBox Community Organization. We will work to get this fully supported soon. If you would like to automate the import of these devicetype template files, there is a NetBox Community community based python script that will check for duplicates, allow you to selectively import vendors, etc. available here netbox-community/Device-Type-Library-Import. Note: This is not related to NetBox in any official way and you will not get support for it here.

Device Type Definitions

Each definition must include at minimum the following fields:

  • manufacturer: The name of the manufacturer which produces this device type.
    • Type: String
  • model: The model number of the device type. This must be unique per manufacturer.
    • Type: String
  • slug: A URL-friendly representation of the model number. Like the model number, this must be unique per manufacturer. All slugs should have the manufacturers name appended to it with a dash, please see the example below.
    • Type: String
    • Pattern: "^[-a-zA-Z0-9_]+$". Must match the following characters: -, _, Uppercase or Lowercase a to z, Numbers 0 to 9.

🧪 Valid Example:

manufacturer: Dell
model: PowerEdge R6515
slug: dell-poweredge-r6515

The following fields may optionally be declared:

  • part_number: An alternative representation of the model number (e.g. a SKU). (Default: None)
    • Type: String

🧪 Example: part_number: D109-C3

  • u_height: The height of the device type in rack units. Increments of 0.5U are supported. (Default: 1)
    • Type: number (minimum of 0, multiple of 0.5)

🧪 Example: u_height: 12.5

  • is_full_depth: A boolean which indicates whether the device type consumes both the front and rear rack faces. (Default: true)
    • Type: Boolean

🧪 Example: is_full_depth: false

  • airflow: A decleration of the airflow pattern for the device. (Default: None)
    • Type: String
    • Options:
      • front-to-rear
      • rear-to-front
      • left-to-right
      • right-to-left
      • side-to-rear
      • passive

🧪 Example: airflow: side-to-rear

  • front_image: Indicates that this device has a front elevation image within the elevation-imgaes folder. (Default: None)
    • NOTE: The elevation images folder requires the same folder name as this device. The file name must also adhere to <VALUE_IN_SLUG>.front.<acceptable_format>
    • Type: Boolean

🧪 Example: front_image: True

  • rear_image: Indicates that this device has a rear elevation image within the elevation-imgaes folder. (Default: None)
    • NOTE: The elevation images folder requires the same folder name as this device. The file name must also adhere to <VALUE_IN_SLUG>.rear.<acceptable_format>
    • Type: Boolean

🧪 Example: rear_image: True

  • subdevice_role: Indicates that this is a parent or child device. (Default: None)
    • Type: String
    • Options:
      • parent
      • child

🧪 Example: subdevice_role: parent

  • comments: A string field which allows for comments to be added to the device. (Default: None)
    • Type: String

🧪 Example: comments: This is a comment that will appear on all NetBox devices of this type

  • weight: A number representing the numeric weight value. Must be a multiple of 0.01 (2 decimal places). (Default: None)
    • Type: Number
    • Value: must be a multiple of 0.01
  • weight_unit: A string defining the unit of measurement. It must be one of the supported values. (Default: None)
    • Type: String
    • Value: Enumerated Options
      • kg
      • g
      • lb
      • oz

🧪 Example:

weight: 12.21
weight_unit: lb

For further detail on these attributes and those listed below, please reference the schema definitions and the Component Definitions below.

Component Definitions

Valid component types are listed below. Each type of component must declare a list of the individual component templates to be added.

The available fields for each type of component are listed below.

Console Ports

  • name: Name
  • label: Label
  • type: Port type slug (Array)

Console Server Ports

  • name: Name
  • label: Label
  • type: Port type slug (Array)

Power Ports

  • name: Name
  • label: Label
  • type: Port type slug (Array)
  • maximum_draw: The port's maximum power draw, in watts (optional)
  • allocated_draw: The port's allocated power draw, in watts (optional)

Power Outlets

  • name: Name
  • label: Label
  • type: Port type slug (Array)
  • power_port: The name of the power port on the device which powers this outlet (optional)
  • feed_leg: The phase (leg) of power to which this outlet is mapped; A, B, or C (optional)

Interfaces

  • name: Name
  • label: Label
  • type: Interface type slug (Array)
  • mgmt_only: A boolean which indicates whether this interface is used for management purposes only (default: false)

Front Ports

  • name: Name
  • label: Label
  • type: Port type slug (Array)
  • rear_port: The name of the rear port on this device to which the front port maps
  • rear_port_position: The corresponding position on the mapped rear port (default: 1)

Rear Ports

  • name: Name
  • label: Label
  • type: Port type slug (Array)
  • positions: The number of front ports that can map to this rear port (default: 1)

Module Bays

  • name: Name
  • label: Label
  • position: The module bay's position within the parent device

Device Bays

  • name: Name
  • label: Label

Inventory Items

  • name: Name
  • label: Label
  • manufacturer: The name of the manufacturer which produces this item
  • part_id: The part ID assigned by the manufacturer

Data Validation / Commit Quality Checks

There are two ways this repo focuses on keeping quality device-type definitions:

  • Pre-Commit Checks - Optional, but highly recommended, for helping to identify simple issues before committing. (trailing-whitespace, end-of-file-fixer, check-yaml, yamlfmt, yamllint)
    • Installation
      • Virtual Environment Route
        • It is recommended to create a virtual env for your repo (python3 -m venv venv)
        • Install the required pip packages (pip install -r requirements.txt)
        • Continue to the "Install pre-commit Hooks"
      • pre-commit Only Route
      • Install pre-commit Hooks
        • To install the pre-commit script: pre-commit install
    • Usage & Useful pre-commit Commands
      • After staging your files with git, to run the pre-commit script on changed files: pre-commit run
      • To run the pre-commit script on all files: pre-commit run --all
      • To uninstall the pre-commit script: pre-commit uninstall
    • Learn more about pre-commit
  • GitHub Actions - Automatically run before a PR can be merged. Repeats yamllint & validates against NetBox Device-Type Schema.