Implement basic LAN client.
This commit is contained in:
parent
ce6bd53319
commit
bbcf45bbeb
7 changed files with 126 additions and 2 deletions
24
roles/lan-client/templates/sssd.conf.j2
Normal file
24
roles/lan-client/templates/sssd.conf.j2
Normal file
|
@ -0,0 +1,24 @@
|
|||
[sssd]
|
||||
domains = LDAP
|
||||
services = nss, pam
|
||||
config_file_version = 2
|
||||
|
||||
[nss]
|
||||
filter_groups = root
|
||||
filter_users = root
|
||||
|
||||
[pam]
|
||||
|
||||
[domain/LDAP]
|
||||
id_provider = ldap
|
||||
ldap_uri = ldap://{{ ldap_server }}/
|
||||
ldap_search_base = {{ basedn }}
|
||||
|
||||
auth_provider = krb5
|
||||
krb5_server = {{ krb_server }}
|
||||
krb5_realm = {{ ldap_domain | upper }}
|
||||
cache_credentials = true
|
||||
|
||||
min_id = 10000
|
||||
max_id = 20000
|
||||
enumerate = False
|
Loading…
Add table
Add a link
Reference in a new issue