| Home | Docs | Support | Buy | Blog | Forums |
|
HowTo use LDAP/ActiveDirectory for Authentication and Authorization
by
Nathaniel McCallum
—
last modified
2008-12-23 07:55AM
Contributors:
Scott Haskell - Enabling Caching, Updated Installation
Instructions for making Zenoss use LDAP or ActiveDirectory for user and role information. IntroductionZenoss is built using Zope. Zope contains plugins for all aspects of authentication and authorization. We will install two plugins (LDAPUserFolder and LDAPMultiPlugins) which will enable this functionality and then we will configure the Zenoss Zope instance to use these plugins. Note that this HowTo does not touch upon storing Zenoss data in an LDAP server (that requires some Zenoss hacking). The purpose of this HowTo is to address authentication and authorization (via roles) only. Further note that this HowTo assumes that you are using RHEL/CentOS 5 or greater and that you have installed Zenoss via the available RPMs.
TheoryBefore we get started, it will help to get a little theory out of the way. What is authentication? What is authorization? How are the different?
In this tutorial we will first discuss how to setup authentication against LDAP and then you can optionally map certain users in your LDAP server to particular Roles in Zenoss. This allows some of your LDAP users to have different privileges than others.
BackupBefore making any changes, we will back up our current zope database (as root): service zenoss stop cp /opt/zenoss/var/Data.fs /opt/zenoss/var/Data.fs.bak service zenoss start
Installation
NOTE: If you are an Enterprise user and have the LDAPAuthenticator ZenPack installed, you can skip to the Configuration section of this guide. Download the latest version of LDAPMultiPlugins and LDAPUserFolder from: http://www.dataflake.org/software/ As the zenoss user: tar -zxvf LDAPUserFolder-<version>.tgz -C $ZENHOME/Products tar -zxvf LDAPMultiPlugins-<version>.tgz -C $ZENHOME/Products The last thing we need to install is python-ldap. However, this is a bit tricky. You will need to use one of the following mechanisms, based upon how you installed Zenoss. Native RPM(s)As root: yum install python-ldap
Zenoss ApplianceAs root: conary update python-ldap=contrib.rpath.org@rpl:1 Stack InstallerThe stack installer provides its own version of python. Because of this, you will need to install python-ldap from source. Download the latest version of python-ldap from: http://python-ldap.sourceforge.net/download.shtml We need to install python-ldap from source as it needs to be in the zenoss user's site-packages directory at $ZENHOME/lib/python2.4/site-packages. If you install python-ldap as root, it will live in your OS installation's site-packages directory, not the zenoss user. *Note - python-ldap will require openldap2-devel in order to build. As root: yum -y install openldap2-devel As zenoss user: tar -zxvf python-ldap-<version>.tar.gz cd python-ldap-<version> && python setup.py install Stack Installer on Ubuntu 8.04In summary, you need to link in the distribution's installed python-ldap components into the site packages path for Zenoss's local Python 2.4 runtime and compile them. Here are the steps (these assume you have already downloaded and placed the LDAPUserFolder and LDAPMultiPlugins packages in the path identified in the wiki instructions):Install python-ldap (As root) aptitude install python-ldap
Link python-ldap components to Zenoss's site packages path
We need the _ldap.so binary compiled against Python 2.4 and the source files. As the zenoss user: #The Zenoss local Python site package path is $ZENHOME/lib/python! cd $ZENHOME/lib/python mkdir ldap mkdir ldap/schema ln -s /usr/share/pyshared/ldif.py ln -s /usr/share/pyshared/ldapurl.py ln -s /usr/lib/python2.4/site-packages/_ldap.so cd ldap ln -s /usr/share/pyshared/ldap/async.py ln -s /usr/share/pyshared/ldap/controls.py ln -s /usr/share/pyshared/ldap/filter.py ln -s /usr/share/pyshared/ldap/__init__.py ln -s /usr/share/pyshared/ldap/modlist.py ln -s /usr/share/pyshared/ldap/cidict.py ln -s /usr/share/pyshared/ldap/dn.py ln -s /usr/share/pyshared/ldap/functions.py ln -s /usr/share/pyshared/ldap/ldapobject.py ln -s /usr/share/pyshared/ldap/sasl.py cd schema ln -s /usr/share/pyshared/ldap/schema/__init__.py ln -s /usr/share/pyshared/ldap/schema/models.py ln -s /usr/share/pyshared/ldap/schema/subentry.py ln -s /usr/share/pyshared/ldap/schema/tokenizer.pyCompile .py files
Now that we have the files linked in from the global shared Python path (where the python-ldap deb installer put them), we need to compile all of the .py files using Zenoss's local python 2.4 installation: cd $ZENHOME/lib/python python /usr/local/zenoss/python/lib/python2.4/py_compile.py ldif.py python /usr/local/zenoss/python/lib/python2.4/py_compile.py ldapurl.py cd ldap python /usr/local/zenoss/python/lib/python2.4/py_compile.py *.py cd schema python /usr/local/zenoss/python/lib/python2.4/py_compile.py *.py
FinallyRestart zope to make sure the changes have taken effect: zopectl restart ConfigurationEverything should be installed at this point, so we just need to configure it. We will do this in several steps: Login to http://zenoss_srv:8080/zport/manage as an administrator. Here you will notice two frames (called "left frame" and "right frame" from here on). First, click "acl_users" in the left frame. This will load acl_users into the right frame. In the right frame, choose "Import/Export" and follow the instructions to perform an export. This will backup your current authentication/authorization scheme. After exporting acl_users, you will be back at the acl_users object. In the upper right corner, next to "Add", select one of the Multi Plugins. If you are using ActiveDirectory, choose "ActiveDirectory Multi Plugin". Otherwise, choose "LDAP Multi Plugin". This will open up the first configuration screen we will look at. If you are using ActiveDirectory, fill in the values like this:ID: ActiveDirectory Title: ActiveDirectory Authentication LDAP Server: dc.domain.local (or just domain.local to use AD's round-robin DNS) Use SSL: yes (or no if your setup doesn't support SSL) Read-only: yes Login Name Attribute: sAMAccountName User ID Attribute: sAMAccountName RDN Attribute: sAMAccountName Users Base DN: OU=Users,DC=domain,DC=local User password encryption: SHA Manager DN: Password: User password encryption: SHA Otherwise, do this for a normal LDAP setup: ID: LDAP Now you have two choices to make. The first one is this: What role(s) should ALL LDAP/ActiveDirectory users have? This takes a bit of knowledge about Zenoss. However there are three common scenarios:
Default User Roles:
Default User Roles: ZenUser
Default User Roles: Manager The second choice you need to make is this: will you be using LDAP/ActiveDirectory to indicate what Roles a user has? If so, also set the following: Group storage: Groups stored on LDAP server Otherwise, do this: Group storage: Groups not stored on LDAP server Finally, click Add. You will be taken back to the acl_users screen. We will now enable this plugin. Click on the plugin instance (named "LDAP" or "ActiveDirectory") and check Authentication and User_Enumeration, then click "Update". If you didn't enable Groups stored in the LDAP server above, you are done! If you enabled Groups stored on LDAP server above, first, enable Roles on this screen. Next, we will setup our Group/Role mappings. Click on the "Contents" tab at the top of the right frame. Select "acl_users" in the right frame. Make sure that "Group mapping" says "Manually map LDAP groups to Zope roles" (apply changes if necessary). Then, click on the "Groups" tab at the top. It should now list all the groups from your LDAP server. Go down to the section "LDAP group to Zope role mappings". This is where you add the configuration that says "If a user is in a certain group, add them to this role." I can't give more details here, because this is custom to your setup. Once you've done this, you should be done!
Enabling CachingLDAPMultiPlugins has the ability to cache expensive LDAP look-ups and other operations. This ability, however, is not enabled by default. To enable caching:
Caching is now enabled for LDAP.
Fetching User Settings from LDAPSo now we have a functional LDAP authentication and authorization, what about retrieving default user values (such as email address, pager number, etc) from LDAP? This is possible as of Zenoss 2.2, however there are some caveats.
ArchitectureIn Zenoss, when an LDAP user logs in for the first time, a UserSettings object is created. This object stores all the users settings. As of Zenoss 2.2, during the UserSettings object creation process, user settings are copied from LDAP into the UserSettings object. Please note that this process WILL NOT modify the UserSettings object after its creation, so the values in LDAP only serve as defaults: changing the values in LDAP after the user has logged in will do nothing! Be forewarned...
Enabling LDAP Attribute MatchingGo to http://zenoss_srv:8080/zport/manage and, in the right frame, click on "acl_users", then "LDAP" (or "ActiveDirectory"). On this screen make sure "Properties" is enabled. Next, click Contents, then "acl_users", then "LDAP Schema". On this screen you are able to setup mappings between values in LDAP and the names in the UserSettings object. As of now, the current UserSettings values available for configuration are as follows: email pager defaultPageSize defaultEventPageSize defaultAdminRole defaultAdminLevel oncallStart oncallEnd escalationMinutes dashboardState dashboardRefresh dashboardTimeout dashboardOrganizer netMapStartObject |
