diff options
author | zsdc <taras@vyos.io> | 2023-09-13 13:16:20 +0300 |
---|---|---|
committer | zsdc <taras@vyos.io> | 2023-11-20 18:46:24 +0200 |
commit | 5d712700d6b8db43e36ad5f2a9f8792203bb12d0 (patch) | |
tree | 57ca0315aaa64984a0bded43e22b3d0f53e3e2e1 /debian/vyos-1x.preinst | |
parent | 2a023b878471500bd78962ca94d9174a328ce5c9 (diff) | |
download | vyos-1x-5d712700d6b8db43e36ad5f2a9f8792203bb12d0.tar.gz vyos-1x-5d712700d6b8db43e36ad5f2a9f8792203bb12d0.zip |
TACACS: T5577: Added `mandatory` and `optional` modes for TACACS+
In CLI we can choose authentication logic:
- `mandatory` - if TACACS+ answered with `REJECT`, authentication must be
stopped and access denied immediately.
- `optional` (default) - if TACACS+ answers with `REJECT`, authentication
continues using the next module.
In `mandatory` mode authentication will be stopped only if TACACS+ clearly
answered that access should be denied (no user in TACACS+ database, wrong
password, etc.). If TACACS+ is not available or other errors happen, it will be
skipped and authentication will continue with the next module, like in
`optional` mode.
Diffstat (limited to 'debian/vyos-1x.preinst')
-rw-r--r-- | debian/vyos-1x.preinst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/debian/vyos-1x.preinst b/debian/vyos-1x.preinst index df99661b1..fbfc85566 100644 --- a/debian/vyos-1x.preinst +++ b/debian/vyos-1x.preinst @@ -2,7 +2,6 @@ dpkg-divert --package vyos-1x --add --no-rename /etc/securetty dpkg-divert --package vyos-1x --add --no-rename /etc/security/capability.conf dpkg-divert --package vyos-1x --add --no-rename /lib/systemd/system/lcdproc.service dpkg-divert --package vyos-1x --add --no-rename /etc/logrotate.d/conntrackd -dpkg-divert --package vyos-1x --add --no-rename /usr/share/pam-configs/tacplus dpkg-divert --package vyos-1x --add --no-rename /etc/rsyslog.conf dpkg-divert --package vyos-1x --add --no-rename /etc/skel/.bashrc dpkg-divert --package vyos-1x --add --no-rename /etc/skel/.profile |