This library is intended to assist with importing device and module types into NetBox from the NetBox Community DeviceType-Library
Go to file
2021-07-28 10:55:43 -04:00
.github/workflows add manual trigger 2021-05-25 17:47:19 +02:00
.env.example add: script timer + devicetype library repo url to .env 2021-02-27 01:02:03 +01:00
.gitignore update: README and added dotenv other small stuff 2021-02-26 23:26:32 +01:00
Dockerfile docker 2021-05-16 14:46:38 +02:00
LICENSE update: README and added dotenv other small stuff 2021-02-26 23:26:32 +01:00
nb-dt-import.py add vendors as an env var 2021-05-16 14:46:09 +02:00
README.md add docker documentation 2021-05-25 11:50:42 +02:00
requirements.txt build(deps): bump urllib3 from 1.25.8 to 1.26.5 2021-06-02 01:04:37 +00:00
settings.py add vendors as an env var 2021-05-16 14:46:09 +02:00

Netbox Device Type Import

This library is intended to be your friend and help you import all the device-types defined within the the NetBox Device Type Library Repository.

Tested working with 2.9.4, 2.10.4

🪄 Description

This script will clone a copy of the netbox-community/devicetype-library repository to your machine to allow it to import the device types you would like without copy and pasting them into the Netbox UI.

🚀 Getting Started

  1. This script is written in Python, so lets setup a virtual environment.
git clone https://github.com/minitriga/Netbox-Device-Type-Library-Import 
cd Netbox-Device-Type-Library-Import
python3 -m venv venv
source venv/bin/activate
  1. Now that we have the basics setup, we'll need to install the requirements.
pip install -r requirements.txt
  1. There are two variables that are required when using this script to import device types into your Netbox installation. (1) Your Netbox instance URL and (2) a token with write rights.

Copy the existing .env.example to your own .env file, and fill in the variables.

cp .env.example .env
vim .env

Finally, we are able to execute the script and import some device templates!

🔌 Usage

To use the script, simply execute the script as follows. Make sure you're still in the activated virtual environment we created before.

./nb-dt-import.py

This will clone the latest master branch from the netbox-community/devicetype-library from Github and install it into the repo subdirectory. If this directory already exists, it will perform a git pull to update the reposity instead.

Next, it will loop over every manufacturer and every device of every manufacturer and begin checking if your Netbox install already has them, and if not, creates them. It will skip preexisting manufacturers, devices, interfaces, etc. so as to not end up with duplicate entries in your Netbox instance.

🧰 Arguments

This script currently accepts a list of vendors as an arugment, so that you can selectively import devices.

To import only device by APC, for example:

./nb-dt-import.py --vendors apc

--vendors can also accept a space separated list of vendors if you want to import multiple.

./nb-dt-import.py --vendors apc juniper

Docker build

It's possible to use this project as a docker container.

To build :

docker build -t netbox-devicetype-import-library .

The container supports the following env var as configuration :

To run :

docker run -e "NETBOX_URL=http://netbox:8080/" -e "NETBOX_TOKEN=98765434567890" netbox-devicetype-import-library

🧑‍💻 Contributing

We're happy about any pull requests!

📜 License

MIT