1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #1375: Renamed NETBOX_USERNAME and NETBOX_PASSWORD configuration parameters to NAPALM_USERNAME and NAPALM_PASSWORD

This commit is contained in:
Jeremy Stretch
2017-07-26 11:24:19 -04:00
parent f4a873745f
commit d2c6d79589
7 changed files with 50 additions and 17 deletions

View File

@ -135,11 +135,21 @@ An API consumer can request an arbitrary number of objects by appending the "lim
---
## NETBOX_USERNAME
## NAPALM_USERNAME
## NETBOX_PASSWORD
## NAPALM_PASSWORD
If provided, NetBox will use these credentials to authenticate against devices when collecting data.
NetBox will use these credentials when authenticating to remote devices via the NAPALM library. Both parameters are optional.
Note: If SSH public key authentication has been set up for the system account under which NetBox runs, these parameters are not needed.
---
## NETBOX_USERNAME (Deprecated)
## NETBOX_PASSWORD (Deprecated)
These settings have been deprecated and will be removed in NetBox v2.2. Please use `NAPALM_USERNAME` and `NAPALM_PASSWORD` instead.
---