1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00

authconfig: add page (#2007)

This commit is contained in:
Owen Voke 2018-02-22 21:19:44 +00:00 committed by Starbeamrainbowlabs
parent 81ac166eed
commit d7cf40e99c

35
pages/linux/authconfig.md Normal file
View file

@ -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`