Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Netbox Api requires the role field #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Script for automatically discovering network devices and adding them to NetBox.
## Dependencies
As root

`pip3 install pynetbox toml lxml python-nmap`
`pip3 install pynetbox toml lxml python-nmap pysnmp`

`apt install nmap`
## Setup
Expand Down
1 change: 1 addition & 0 deletions netbox_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ def device(self, name: str, device_role: str, manufacturer: str, model: str, sit
site = self.default_site
obj = {
"name": name,
"role": {"name": device_role},
"device_role": {"name": device_role},
"device_type": {"manufacturer": {'name': manufacturer}, "model": model},
"platform": {"name": platform} if platform else None,
Expand Down