2020-02-04 19:27:40 +01:00
# Netbox agent [![Build Status](https://travis-ci.com/Solvik/netbox-agent.svg?branch=master)](https://travis-ci.com/Solvik/netbox-agent)
2019-08-02 18:32:33 +02:00
2019-08-05 10:01:33 +02:00
This project aims to create hardware automatically into [Netbox ](https://github.com/netbox-community/netbox ) based on standard tools (dmidecode, lldpd, parsing /sys/, etc).
2019-08-04 15:20:57 +02:00
The goal is to generate an existing infrastructure on Netbox and have the ability to update it regularly by executing the agent.
# Features
2020-04-19 12:28:49 +02:00
* Create virtual machines, servers, chassis and blade through standard tools (`dmidecode`)
2019-08-29 17:52:14 +02:00
* Create physical, bonding and vlan network interfaces with IPs (IPv4 & IPv6)
2019-08-09 12:08:11 +02:00
* Create IPMI interface if found
* Create or get existing VLAN and associate it to interfaces
2019-08-05 18:12:27 +02:00
* Generic ability to guess datacenters and rack location through drivers (`cmd` and `file` and custom ones)
2019-08-26 12:24:48 +02:00
* Update existing `Device` and `Interface`
2019-08-05 18:12:27 +02:00
* Handle blade moving (new slot, new chassis)
2019-08-26 12:24:48 +02:00
* Automatic cabling (server's interface to switch's interface) using lldp
2019-08-26 16:57:13 +02:00
* Local inventory using `Inventory Item` for CPU, RAM, RAID cards, physical disks (behind raid cards)
2019-09-05 13:57:30 +02:00
* PSUs creation and power consumption reporting (based on vendor's tools)
2019-08-04 15:20:57 +02:00
2019-08-09 12:08:11 +02:00
# Requirements
- Netbox >= 2.6
- Python >= 3.4
2019-08-13 11:04:32 +02:00
- [pynetbox ](https://github.com/digitalocean/pynetbox/ )
2019-08-09 12:08:11 +02:00
- [python3-netaddr ](https://github.com/drkjam/netaddr )
- [python3-netifaces ](https://github.com/al45tair/netifaces )
2019-09-05 13:57:30 +02:00
- [jsonargparse ](https://github.com/omni-us/jsonargparse/ )
2019-08-09 12:08:11 +02:00
2019-08-09 13:26:51 +02:00
- ethtool
- dmidecode
- ipmitool
2019-08-26 12:24:48 +02:00
- lldpd
2019-09-05 13:57:30 +02:00
- lshw
2019-08-09 13:26:51 +02:00
2020-06-17 17:54:10 +02:00
## Inventory requirement
- hpassacli
- storcli
- omreport
2019-08-04 23:24:51 +02:00
2020-06-17 17:54:10 +02:00
# Installation
```
# pip3 install netbox-agent
```
# Usage
The agent can be run from a shell and get its configuration from either the configuration file or environment variables.
Configuration values are overridden based on the following precedence: command line arguments (might include config file) > environment variables > default config file > defaults.
```
# netbox_agent -c /etc/netbox_agent.yml --register
INFO:root:Creating chassis blade (serial: QTFCQ574502EF)
INFO:root:Creating blade (serial: QTFCQ574502D2) myserver on chassis QTFCQ574502EF
INFO:root:Setting device (QTFCQ574502D2) new slot on Slot 9 (Chassis QTFCQ574502EF)..
INFO:root:Interface a8:1e:84:f2:9e:6a not found, creating..
INFO:root:Creating NIC enp1s0f1 (a8:1e:84:f2:9e:6a) on myserver
INFO:root:Interface 02:42:7a:89:cf:a4 not found, creating..
INFO:root:Creating NIC br-07ea1e4a2f0e (02:42:7a:89:cf:a4) on myserver
INFO:root:Create new IP 172.19.0.1/16 on br-07ea1e4a2f0e
INFO:root:Interface a8:1e:84:f2:9e:69 not found, creating..
INFO:root:Creating NIC enp1s0f0 (a8:1e:84:f2:9e:69) on myserver
INFO:root:Create new IP 42.42.42.42/24 on enp1s0f0
INFO:root:Create new IP fe80::aa1e:84ff:fef2:9e69/64 on enp1s0f0
INFO:root:Interface a8:1e:84:cd:9d:d6 not found, creating..
INFO:root:Creating NIC IPMI (a8:1e:84:cd:9d:d6) on myserver
INFO:root:Create new IP 10.191.122.10/24 on IPMI
```
If you need, you can update only specific informations like:
* Network
* Inventory
* Location
* PSUs
```
# ip a add 42.42.42.43/24 dev enp1s0f1
# netbox_agent -c /etc/netbox_agent.yaml --update-network
INFO:root:Create new IP 42.42.42.43/24 on enp1s0f1
# netbox_agent --update-inventory
INFO:root:Creating Disk Samsung SSD 850 S2RBNX0K101698D
```
2019-08-04 23:24:51 +02:00
2019-08-04 15:20:57 +02:00
# Configuration
2019-08-04 20:10:43 +02:00
```
2020-06-17 17:54:10 +02:00
# Netbox configuration
2019-08-04 20:10:43 +02:00
netbox:
2019-08-04 15:20:57 +02:00
url: 'http://netbox.internal.company.com'
token: supersecrettoken
2020-07-11 15:27:32 +02:00
# uncomment to disable ssl verification
# ssl_verify: false
2019-08-04 15:20:57 +02:00
2020-06-17 17:54:10 +02:00
# Network configuration
2019-08-09 12:08:11 +02:00
network:
2020-06-17 17:54:10 +02:00
# Regex to ignore interfaces
2019-08-09 12:08:11 +02:00
ignore_interfaces: "(dummy.*|docker.*)"
2020-06-17 17:54:10 +02:00
# Regex to ignore IP addresses
2019-08-09 12:08:11 +02:00
ignore_ips: (127\.0\.0\..*)
2020-06-17 17:54:10 +02:00
# enable auto-cabling by parsing LLDP answers
2019-08-26 11:05:41 +02:00
lldp: true
2019-08-09 12:08:11 +02:00
2020-07-01 18:54:58 +02:00
#
# You can use these to change the Netbox roles.
# These are the defaults.
#
#device:
# chassis_role: "Server Chassis"
# blade_role: "Blade"
# server_role: "Server"
# tags: server, blade, ,just a comma,delimited,list
#
#
# Can use this to set the tenant
#
#tenant:
# driver: "file:/tmp/tenant"
# regex: "(.*)"

2020-06-17 17:54:10 +02:00
## Enable virtual machine support
2020-04-19 12:28:49 +02:00
# virtual:
# # not mandatory, can be guessed
# enabled: True
# # see https://netbox.company.com/virtualization/clusters/
# cluster_name: my_vm_cluster
2020-06-17 17:54:10 +02:00
# Enable datacenter location feature in Netbox
2019-08-04 15:20:57 +02:00
datacenter_location:
2020-07-28 18:42:10 +02:00
driver: "cmd:cat /etc/qualification | tr [A-Z] [a-z]"
regex: "datacenter: (?P< datacenter > [A-Za-z0-9]+)"
2019-08-09 12:08:11 +02:00
# driver: 'cmd:lldpctl'
# regex: 'SysName: .*\.([A-Za-z0-9]+)'
#
# driver: "file:/tmp/datacenter"
# regex: "(.*)"
2020-06-17 17:54:10 +02:00
# Enable rack location feature in Netbox
2019-08-09 12:08:11 +02:00
rack_location:
2019-08-04 15:20:57 +02:00
# driver: 'cmd:lldpctl'
2019-08-09 12:08:11 +02:00
# match SysName: sw-dist-a1.dc42
# regex: 'SysName:[ ]+[A-Za-z]+-[A-Za-z]+-([A-Za-z0-9]+)'
#
# driver: "file:/tmp/datacenter"
# regex: "(.*)"
2019-08-26 16:54:48 +02:00
2020-06-17 17:54:10 +02:00
# Enable local inventory reporting
2019-08-26 16:54:48 +02:00
inventory: true
2019-08-04 15:20:57 +02:00
```
2019-08-02 18:32:33 +02:00
2019-08-29 17:52:14 +02:00
# Specific workflow
## Blades
Each vendor class has a `is_blade` method which is later used for `Device` creation using the Netbox [parent/child feature ](https://netbox.readthedocs.io/en/stable/core-functionality/devices/ ).
The `get_blade_slot` method return the name of the `Device Bay` .
Certain vendors don't report the blade slot in `dmidecode` , so we can use the `slot_location` regex feature of the configuration file.
## Anycast IP
The default behavior of the agent is to assign an interface to an IP.
So two servers with anycasted IPs, running update mode, would only trigger IP's interface assignement in a loop.
In order to handle this case, user need to set Netbox IP's mode to `Anycast` so that the agent will create another one if it's present on another server.
2019-08-02 18:34:35 +02:00
# Hardware
2019-08-02 18:32:33 +02:00
Tested on:
2020-04-19 12:28:49 +02:00
## Virtual Machines
* Hyper-V
* VMWare
* VirtualBox
* AWS
* GCP
2020-07-11 15:51:26 +02:00
## [Dell Inc.](https://github.com/Solvik/netbox-agent/blob/master/netbox_agent/vendors/dell.py)
2019-08-02 18:32:33 +02:00
2019-08-02 18:34:35 +02:00
### Blades
2019-08-03 16:02:07 +02:00
2019-12-03 00:31:32 +01:00
* PowerEdge MX7000
2019-08-08 14:46:06 +02:00
* PowerEdge M1000e (your `DeviceType` should have slots named `Slot 01` and so on)
2019-12-03 00:31:32 +01:00
* PowerEdge MX740c
2019-08-02 18:32:33 +02:00
* PowerEdge M640
* PowerEdge M630
* PowerEdge M620
* PowerEdge M610
2019-08-02 18:34:35 +02:00
### Pizzas
2019-08-03 16:02:07 +02:00
2019-08-02 18:32:33 +02:00
* DSS7500
2020-07-11 15:51:26 +02:00
## [HP / HPE](https://github.com/Solvik/netbox-agent/blob/master/netbox_agent/vendors/hp.py)
2019-08-02 18:34:35 +02:00
2019-08-03 16:02:07 +02:00
### Blades
2019-08-08 14:46:06 +02:00
* HP BladeSystem c7000 Enclosure G2 / G3 (your `DeviceType` should have slots named `Bay 1` and so on)
2019-08-03 16:02:07 +02:00
* HP ProLiant BL460c Gen8
* HP ProLiant BL460c Gen9
2019-08-22 10:48:39 +02:00
* HP ProLiant BL460c Gen10
2020-08-20 18:03:36 +02:00
* HP Moonshot 1500 Enclosure (your `DeviceType` should have slots batch create with `Bay c[1-45n1]` ) with HP ProLiant m750, m710x, m510 Server Cartridge
2019-08-03 16:02:07 +02:00
### Pizzas
* ProLiant DL380p Gen8
2019-08-26 15:38:44 +02:00
* ProLiant SL4540 Gen8
* ProLiant SL4540 Gen9
* ProLiant XL450 Gen10
2019-08-02 18:32:33 +02:00
2020-07-11 15:51:26 +02:00
## [Supermicro](https://github.com/Solvik/netbox-agent/blob/master/netbox_agent/vendors/supermicro.py)
2019-08-02 18:34:35 +02:00
2019-08-26 15:38:44 +02:00
### Blades
2020-07-11 15:51:26 +02:00
* SBI-* and SBA-* should be supported, but I need dmidecode output example to support automatic blade location
2019-08-26 15:38:44 +02:00
### Pizzas
* SSG-6028R
* SYS-6018R
2019-08-02 18:32:33 +02:00
2020-07-11 15:51:26 +02:00
## [QCT](https://github.com/Solvik/netbox-agent/blob/master/netbox_agent/vendors/qct.py)
2019-08-26 16:39:36 +02:00
### Blades
* QuantaMicro X10E-9N
### Pizzas
* Nothing ATM, feel free to send me a dmidecode or make a PR!
2020-06-17 17:54:10 +02:00
# Known limitations
* The project is only compatible with Linux.
Since it uses `ethtool` and parses `/sys/` directory, it's not compatible with *BSD distributions.
* Netbox `>=2.6.0,<=2.6.2` has a caching problem ; if the cache lifetime is too high, the script can get stale data after modification.
We advise to set `CACHE_TIME` to `0` .
2019-08-02 18:34:35 +02:00
2020-06-17 17:54:10 +02:00
# Developing
If you want to run the agent while adding features or just for debugging purposes
```
# git clone https://github.com/Solvik/netbox-agent.git
# cd netbox-agent
# python3 -m netbox_agent.cli --register
```
On a personal note, I use the docker image from [netbox-community/netbox-docker ](https://github.com/netbox-community/netbox-docker )
```
# git clone https://github.com/netbox-community/netbox-docker
# cd netbox-docker
# docker-compose pull
# docker-compose up
```