I searched high and low for a good guide on how to set up a Samba server that uses Kerberos for authentication and OpenLDAP to get the users. I stumbled upon the Ubuntu Community Guide, which gave me some insight on how to get Samba to play along with Kerberos, but it didn’t provide any details about LDAP integration. After some searching and a lot of testing, I finally completed this complex puzzle.
Because I’ve recently acquired the good habit of documenting the stuff I do (well, at least I try to…), I’m putting it here for future reference. I’m also sure it will be of some use for someone else
. I’ve tested this on Ubuntu 10.04 and 10.10 without significant problems. I’ve set up a Kerberos KDC using the Ubuntu Server Guide (Kerberos) and the Ubuntu Server Guide (Kerberos and LDAP) . So let’s get going, first we’ll start by installing some packages.
sudo apt-get install samba libnss-ldap krb5-user
This installs samba (duh…), krb5-user, which is needed for the Kerberos part and libnss-ldap, which is needed for the LDAP part. Doing this will trigger some configuration screens to pop up. When configuring ldap-auth-config, use the following settings:
LDAP server Uniform Resource Identifier: <your LDAP-server, something like ldap://ldap.example.com>
Distinguished name of the search base: <your search base, something like dc=example,dc=com>
LDAP version to use: 3
Make local root database admin: No
Does the LDAP database require login: No
Next, you’ll be presented with some configuration screens for Kerberos, type in the following:
Default Kerberos version 5 realm: <your Kerberos realm, something like EXAMPLE.COM>
Now, if you’ve done your homework properly and your DNS-server has got some appropriate SRV-records, the wizard will notice this and you’re done. Otherwise, you’ll have to give it some more information like the FQDN of the server hosting the Kerberos KDC daemon. Normally, you’re back at the commandline. Execute the following command to update your /etc/nsswitch.conf file:
sudo auth-client-config -t nss -p lac_ldap
Switch to the computer that acts as the Kerberos KDC and generate a keytab for the Samba server using the following commands:
kadmin -p admin/admin kadmin: addprinc -randkey cifs/fileserver.example.com kadmin: ktadd -k /path/to/keytab -e rc4-hmac:normal cifs/fileserver.example.com
Replace fileserver.example.com with the FQDN of the Samba server, this is important! Next get the resulting keytab on the Samba server, for example by using scp. Next, we’ll adjust some files. Edit /etc/ldap/ldap.conf as follows:
# # LDAP Defaults # # See ldap.conf(5) for details # This file should be world readable but not world writable. BASE dc=example,dc=com URI ldap://ldap.example.com TLS_REQCERT allow #SIZELIMIT 12 #TIMELIMIT 15 #DEREF never
And finally, adjust /etc/samba/smb.conf and make following adjustments:
[global] workgroup = LINKUP.LOCAL server string = %h server (Samba, Ubuntu) dns proxy = no log file = /var/log/samba/log.%m max log size = 1000 syslog = 0 panic action = /usr/share/samba/panic-action %d security = ADS realm = LINKUP.LOCAL password server = your.kdc.server kerberos method = dedicated keytab dedicated keytab file = /etc/krb5.keytab encrypt password = true obey pam restrictions = no unix password sync = no passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* . pam password change = yes map to guest = bas user usershare allow guests = no [public] comment = "Public share for everyone" path = /data/public browsable = yes guest ok = yes read only = no create mask = 0755 [private] comment = "Private share" path = /data/private browsable = yes guest ok = no read only = no create mask = 0755 # This is a group from OpenLDAP valid users = @testgroup
In this example, there are two folder I shared, make sure whatever you want to share, actually exists (in my example /data/public and /data/private). Believe it or not, that was all that was necessary! Do the following quick tests to check everything is working properly:
getent passwd
Should return your users, including the users from OpenLDAP. Next, get a client computer and log in. Make sure your user got a valid ticket (check klist) and try the following:
smbclient -k \\\\fileserver.linkup.local\\publicIf this results in a smb prompt, your work is done! If not, leave a comment and I’ll try to help you out
