Basic tacacs+ CTiT.

This commit is contained in:
Aaron Tan
2017-03-28 13:18:09 -04:00
parent 84c6d41bd4
commit f2c99eeaf5
3 changed files with 81 additions and 2 deletions

View File

@@ -313,6 +313,14 @@ RADIUS_SERVER = ''
RADIUS_PORT = 1812
RADIUS_SECRET = ''
# TACACS+ settings (default host to empty string to skip using TACACS+ auth).
# Note: These settings may be overridden by database settings.
TACACSPLUS_HOST = ''
TACACSPLUS_PORT = 49
TACACSPLUS_SECRET = ''
TACACSPLUS_SESSION_TIMEOUT = 5
TACACSPLUS_AUTH_PROTOCOL = 'ascii'
# Seconds before auth tokens expire.
# Note: This setting may be overridden by database settings.
AUTH_TOKEN_EXPIRATION = 1800