cdist-contrib/type/__netbox/man.rst

184 lines
5.3 KiB
ReStructuredText
Raw Normal View History

2020-08-12 07:15:18 +00:00
cdist-type__netbox(7)
=====================
NAME
----
cdist-type__netbox - Install and configure NetBox
DESCRIPTION
-----------
This (singleton) type installs and configures a NetBox instance, a web
application to help manage and document computer networks.
It installs it with the user ``netbox`` at ``/opt/netbox`` with `python-venv`.
Netbox will be run via `gnuicorn` as WSGI service. It setup systemd unit files
for the services `netbox` and `netbox-rq`.
2020-08-12 07:15:18 +00:00
REQUIRED PARAMETERS
-------------------
version
NetBox version to be installed. You can find the correct and newest version
on GitHub at the NetBox project page under
"`Releases <https://github.com/netbox-community/netbox/releases>`_".
2020-08-12 07:15:18 +00:00
database
PostgreSQL database name.
2020-08-22 13:53:24 +00:00
database-user
PostgreSQL database user.
2020-08-12 07:15:18 +00:00
database-password
PostgreSQL database password.
secret-key
Random secret key of at least 50 alphanumeric characters. This key must be
unique to this installation and must not be shared outside the local
system.
host
Hostname (domain or IP address) on which the application is served.
OPTIONAL PARAMETERS
-------------------
2020-08-22 13:53:24 +00:00
database-host
2020-08-22 14:00:15 +00:00
PostgreSQL database hostname. Defaults to ``localhost``.
2020-08-22 13:53:24 +00:00
database-port
2020-08-22 14:00:15 +00:00
PostgreSQL database port. Defaults to empty (uses the default port).
2020-08-22 13:53:24 +00:00
2020-08-12 07:15:18 +00:00
ldap-server
2020-08-22 14:00:15 +00:00
LDAP server URI. Enables LDAP-backed authentication if specified.
2020-08-12 07:15:18 +00:00
ldap-bind-dn
2020-08-22 14:00:15 +00:00
DN for the NetBox service account. Required for LDAP authentication.
2020-08-12 07:15:18 +00:00
ldap-bind-password
2020-08-22 14:00:15 +00:00
Password for the NetBox service account. Required for LDAP authentication.
2020-08-12 07:15:18 +00:00
ldap-user-base
2020-08-22 14:00:15 +00:00
Base used for searching user entries. Required for LDAP authentication.
2020-08-12 07:15:18 +00:00
ldap-group-base
2020-08-22 14:00:15 +00:00
Base used for searching group entries.
2020-08-12 07:15:18 +00:00
ldap-require-group
2020-08-22 14:00:15 +00:00
Group required to login.
2020-08-12 07:15:18 +00:00
ldap-superuser-group
2020-08-22 14:00:15 +00:00
Make members of this groups superusers.
2020-08-12 07:15:18 +00:00
redis-host
2020-08-22 14:00:15 +00:00
Redis database hostname. Defaults to ``localhost``.
redis-port
2020-08-22 14:00:15 +00:00
Redis database port. Defaults to ``6379``.
redis-password
2020-08-22 14:00:15 +00:00
Redis password. Defaults to empty password.
redis-dbid-offset
2020-08-22 14:00:15 +00:00
Offset to set the redis database id's. The `tasks` database id is
`offset + 0` and `caching` is `offset + 1`. The offset defaults
to ``0``.
smtp-host
2020-08-22 14:00:15 +00:00
Host of the SMTP email server. Defaults to ``localhost``.
smtp-port
2020-08-22 14:00:15 +00:00
Port of the SMTP email server. Defaults to ``25``.
smtp-user
2020-08-22 14:00:15 +00:00
Username to access the SMTP email server. Defaults to empty.
smtp-password
2020-08-22 14:00:15 +00:00
Password to access the SMTP email server. Defaults to empty.
smtp-from-email
2020-08-22 14:00:15 +00:00
Email from which NetBox will be sent of. Defaults to empty.
basepath
2020-08-22 14:00:15 +00:00
Base URL path if accessing netbox within a directory instead of directly the
webroot ``/``. For example, if installed at https://example.com/netbox/, set
the value ``netbox/``.
http-proxy
https-proxy
2020-08-22 14:00:15 +00:00
Proxy which will be used with any HTTP request like webhooks.
2020-08-12 07:15:18 +00:00
BOOLEAN PARAMETERS
------------------
redis-ssl
2020-08-22 14:00:15 +00:00
Enables a secure TLS/SSL connection to the redis database. By default, ssl
is disabled.
smtp-use-tls
2020-08-22 14:00:15 +00:00
Uses TLS to connect to the SMTP email server. `See documentation
<https://docs.djangoproject.com/en/3.1/ref/settings/#email-use-tls`_
for more information.
smtp-use-ssl
2020-08-22 14:00:15 +00:00
Uses implicit TLS with the SMTP email server. `See documentation
<https://docs.djangoproject.com/en/3.1/ref/settings/#email-use-ssl`_
for more information.
login-required
2020-08-22 14:00:15 +00:00
Sets if a login is required to access all sites. By default, anounymous users
can see most data (excluding secrets) but not make any changes.
2020-08-12 07:15:18 +00:00
MESSAGES
--------
installed $VERSION
Netbox was fresh installed or updated. The new version number is appended.
configuration
Some configuration files got updated and therefore the service was
restarted. This message will not be echoed if configuration got updated due
a standard installation.
2020-08-12 07:15:18 +00:00
EXAMPLES
--------
.. code-block:: sh
__netbox --version 2.8.7 --database netbox \
--database-password "secretsecretsecret" \
--secret-key "secretsecretsecret" \
--host "${__target_host:?}" \
--ldap-server "ldaps://ldap.domain.tld" \
--ldap-bind-dn "uid=netbox,ou=services,dc=domain,dc=tld" \
--ldap-bind-password "secretsecretsecret" \
--ldap-user-base "ou=users,dc=domain,dc=tld" \
--ldap-group-base "ou=groups,dc=domain,dc=tld" \
--ldap-require-group "cn=netbox-login,ou=groups,dc=domain,dc=tld" \
--ldap-superuser-group "cn=netbox-admin,ou=groups,dc=domain,dc=tld"
2020-08-12 07:15:18 +00:00
NOTES
-----
The configuration of NetBox contains more optional settings than that what can
be set with this type. If you think an important setting is missing or there
is a more good way to inject python code for dynamic configuration variables,
you are welcome to contribute!
- `Possible optional settings
<https://netbox.readthedocs.io/en/stable/configuration/optional-settings/>`
2020-08-12 07:15:18 +00:00
SEE ALSO
--------
- `NetBox documentation <https://netbox.readthedocs.io/en/stable/>`_
AUTHORS
-------
Timothée Floure <t.floure@e-durable.ch>
COPYING
-------
Copyright \(C) 2020 Timothée Floure. You can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.