From d7cf40e99c4517c0b0792af3635a8c1b220d566e Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Thu, 22 Feb 2018 21:19:44 +0000 Subject: [PATCH] authconfig: add page (#2007) --- pages/linux/authconfig.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pages/linux/authconfig.md diff --git a/pages/linux/authconfig.md b/pages/linux/authconfig.md new file mode 100644 index 0000000000..90ff080600 --- /dev/null +++ b/pages/linux/authconfig.md @@ -0,0 +1,35 @@ +# authconfig + +> A CLI interface for configuring system authentication resources. + +- Display the current configuration (or dry run): + +`authconfig --test` + +- Configure the server to use a different password hashing algorithm: + +`authconfig --update --passalgo={{algorithm}}` + +- Enable LDAP authentication: + +`authconfig --update --enableldapauth` + +- Disable LDAP authentication: + +`authconfig --update --disableldapauth` + +- Enable Network Information Service (NIS): + +`authconfig --update --enablenis` + +- Enable Kerberos: + +`authconfig --update --enablekrb5` + +- Enable Winbind (Active Directory) authentication: + +`authconfig --update --enablewinbindauth` + +- Enable local authorization: + +`authconfig --update --enablelocauthorize`