KubuntuLdapAuth: Difference between revisions
AlainKnaff (talk | contribs) No edit summary |
AlainKnaff (talk | contribs) No edit summary |
||
Line 5: | Line 5: | ||
<pre> | <pre> | ||
apt-get install libnss-ldap | apt-get install libpam-ldapd libnss-ldapd nss-updatedb libnss-db nscd nslcd ldap-utils | ||
</pre> | </pre> | ||
Respond to the questions as follows: | Respond to the questions as follows: | ||
Line 79: | Line 77: | ||
Two files (at minimum) need to be changed, <code>/etc/pam.d/common-auth</code> and <code>/etc/pam.d/common-account</code>). | Two files (at minimum) need to be changed, <code>/etc/pam.d/common-auth</code> and <code>/etc/pam.d/common-account</code>). | ||
On recent Kubuntu versions (>= 10.04), this is automatically performed by the <tt>pam-auth-update</tt> utility, the rest of this section only applies to older versions which don't have this yet. | |||
The first handles the verification of the user's password, whereas the second decides whether that user (whose identity is already established at that point) is allowed to connect (there could be restriction, such as login only allowed on certain times for certain users, etc.) | The first handles the verification of the user's password, whereas the second decides whether that user (whose identity is already established at that point) is allowed to connect (there could be restriction, such as login only allowed on certain times for certain users, etc.) | ||
Line 129: | Line 129: | ||
</pre> | </pre> | ||
9. Test it by logging in as a remote user, and then as a local user. | 9. Make sure minuid setting is adapted to your server system | ||
By default, <tt>pam-auth-update</tt> leaves the following into <tt>/etc/pam.d/common-auth</tt>: | |||
<pre> | |||
auth [success=1 default=ignore] pam_ldap.so minimum_uid=1000 use_first_pass | |||
</pre> | |||
This means that the LDAP client will only recognize server users whose id is greater than or equal 1000. If your servers has (non-system) users with lower ids, adjust this setting accordingly: | |||
<pre> | |||
auth [success=1 default=ignore] pam_ldap.so minimum_uid=500 use_first_pass | |||
</pre> | |||
10. Test it by logging in as a remote user, and then as a local user. | |||
11. On an LLL system, "student" users have a non-writable home directory. In order to allow them to log in using KDE to clients, you must point KDE to a different location: | |||
Near the top of <code>/etc/kde3/kdm/Xsession</code> (for instance after the initial comment), insert the following snippet: | Near the top of <code>/etc/kde3/kdm/Xsession</code> (for instance after the initial comment), insert the following snippet: |
Revision as of 19:05, 1 April 2011
In order to set up authentication via LDAP, the following steps need to be performed:
1. Install the packages:
apt-get install libpam-ldapd libnss-ldapd nss-updatedb libnss-db nscd nslcd ldap-utils
Respond to the questions as follows:
- URI of the LDAP server to use:
ldaps://ldap/ or ldaps://192.168.178.2/
- Distinguished name of the LDAP search base:
dc=infoladen,dc=org,dc=lu
- LDAP version to use:
3
- Make local root database admin:
No
- Does the LDAP database require login?:
No
2. For debugging purposes, also install ldap-utils
3. Configure libnss-ldap
libnss-ldap is configured using the /etc/ldap.conf
file (not to be confused with /etc/ldap/ldap.conf
, which is the general LDAP configuration file)
The following settings need to be added/changed if not already done so by interactive dialog while installing libnss-ldap:
Set your server's URL:
uri ldaps://ldap.infoladen.org.lu/
Disable hostname (because we specified a URI, hostname is not needed:
# host 127.0.0.1
Set your DN:
base dc=lll,dc=lu
The setting below will have to be done always:
Disable initgroups for local users needed during startup (without this, machine will hang at boot, because libnss_ldap
will try to log its lookup failures for the groups of local users, but syslog itself is hung because it uses libnss_ldap
itself)
nss_initgroups_ignoreusers root,syslog,klog
This does of course not need to be (re)done if the file already contains an ignoreusers line with at least these 3 users.
4. If you're using SSL, but without a real certificate, disable certificate check
This needs to be done in /etc/ldap/ldap.conf
:
TLS_REQCERT never
5. Activate it in /etc/nsswitch.conf
:
NSS is used for user lookups (as needed by id
, ls -l
, etc.)
passwd: compat ldap group: compat ldap
6. Test NSS:
Do id someremoteuser , and id somelocaluser
If both succeed, your NSS is ok
7. Activate it in pam
PAM is needed for authenticating users, to allow network users to log in.
Two files (at minimum) need to be changed, /etc/pam.d/common-auth
and /etc/pam.d/common-account
).
On recent Kubuntu versions (>= 10.04), this is automatically performed by the pam-auth-update utility, the rest of this section only applies to older versions which don't have this yet.
The first handles the verification of the user's password, whereas the second decides whether that user (whose identity is already established at that point) is allowed to connect (there could be restriction, such as login only allowed on certain times for certain users, etc.)
By default these contain only one line describing local authentication. This needs to be kept (but its required
keyword replaced by a sufficient
keyword), and a new line for LDAP should be added. The change to sufficient
is needed because we want to allow users that are known locally or remotely. Indeed, with sufficient
, the chain succeeds (without continuing) if the rule succeeds, and continues otherwise, whereas with required
, the chain fails (without continuing) if the rule fails, and continues otherwise.
However, due to a bug, the last rule must have required, or else the user may log in with any old password that he can make up...
In common-auth, you'd have:
auth sufficient pam_unix.so nullok_secure auth required pam_ldap.so use_first_pass
In common-account, you'd have:
account sufficient pam_unix.so account required pam_ldap.so use_first_pass
use_first_pass
instructs pam_ldap to re-use the same password as the user already entered for local authentication, rather than prompt for another one.
Same idea for common-account
acct sufficient pam_unix.so acct required pam_ldap.so
8. Set up NFS mount for /home
Install nfs:
apt-get install nfs-common
Insert the following line (replace server IP as appropriate) into /etc/fstab
:
192.168.178.2:/home /home nfs async,intr,soft,nolock
Then mount home. You might first need to move a pre-existing home directory with local users out of the way:
mv /home /lhome mkdir /home mount /home
9. Make sure minuid setting is adapted to your server system
By default, pam-auth-update leaves the following into /etc/pam.d/common-auth:
auth [success=1 default=ignore] pam_ldap.so minimum_uid=1000 use_first_pass
This means that the LDAP client will only recognize server users whose id is greater than or equal 1000. If your servers has (non-system) users with lower ids, adjust this setting accordingly:
auth [success=1 default=ignore] pam_ldap.so minimum_uid=500 use_first_pass
10. Test it by logging in as a remote user, and then as a local user.
11. On an LLL system, "student" users have a non-writable home directory. In order to allow them to log in using KDE to clients, you must point KDE to a different location:
Near the top of /etc/kde3/kdm/Xsession
(for instance after the initial comment), insert the following snippet:
if [ ! -w $HOME ] ; then HOME=$HOME/linuxhome fi