summaryrefslogtreecommitdiff
path: root/src/pam-configs/radius-mandatory
diff options
context:
space:
mode:
authorzsdc <taras@vyos.io>2023-09-26 11:27:07 +0300
committerzsdc <taras@vyos.io>2023-11-20 19:07:11 +0200
commitd7457268fcaa5626e512eb00a9aab36f4a617f28 (patch)
treeb44029f81f1a47a86b475a00d0b22587addfd2db /src/pam-configs/radius-mandatory
parent471e26233e2e1c7b4ad20aff673a18ac5d745296 (diff)
downloadvyos-1x-d7457268fcaa5626e512eb00a9aab36f4a617f28.tar.gz
vyos-1x-d7457268fcaa5626e512eb00a9aab36f4a617f28.zip
PAM: T5577: Optimized RADIUS PAM config
- Added system `radius` group - Added `mandatory` and `optional` modes for RADIUS - Improved PAM config for RADIUS New modes: - `mandatory` - if RADIUS answered with `Access-Reject`, authentication must be stopped and access denied immediately. - `optional` (default) - if RADIUS answers with `Access-Reject`, authentication continues using the next module. In `mandatory` mode authentication will be stopped only if RADIUS clearly answered that access should be denied (no user in RADIUS database, wrong password, etc.). If RADIUS 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 'src/pam-configs/radius-mandatory')
-rw-r--r--src/pam-configs/radius-mandatory19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/pam-configs/radius-mandatory b/src/pam-configs/radius-mandatory
new file mode 100644
index 000000000..3368fe7ff
--- /dev/null
+++ b/src/pam-configs/radius-mandatory
@@ -0,0 +1,19 @@
+Name: RADIUS authentication (mandatory mode)
+Default: no
+Priority: 576
+
+Auth-Type: Primary
+Auth-Initial:
+ [default=ignore success=end auth_err=die perm_denied=die user_unknown=die] pam_radius_auth.so
+Auth:
+ [default=ignore success=end auth_err=die perm_denied=die user_unknown=die] pam_radius_auth.so use_first_pass
+
+Account-Type: Primary
+Account:
+ [default=ignore success=1] pam_succeed_if.so user notingroup radius quiet
+ [default=ignore success=end] pam_radius_auth.so
+
+Session-Type: Additional
+Session:
+ [default=ignore success=1] pam_succeed_if.so user notingroup radius quiet
+ [default=bad success=ok] pam_radius_auth.so