14. Single sign-on: Integrate a service provider into UCS#

UCS provides Single Sign-On functionality with a SAML 2.0 compatible identity provider based on simplesamlphp. The identity provider is by default installed on the Primary Directory Node and all Backup Directory Node servers. A DNS Record for all systems providing single sign-on services is registered for failover, usually ucs-sso.domainname. Clients are required to be able to resolve the single sign-on DNS name.

14.1. Register new service provider through udm#

New service providers can be registered by using the Univention Directory Manager module saml/serviceprovider. To create a service provider entry in a joinscript, see the following example:

$ eval "$(ucr shell)"
$ udm saml/serviceprovider create "$@" \
  --ignore_exists \
  --position "cn=saml-serviceprovider,cn=univention,$ldap_base" \
  --set isActivated=TRUE \
  --set Identifier="MyServiceProviderIdentifier" \
  --set NameIDFormat="urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified" \
  --set simplesamlAttributes="false" \
  --set AssertionConsumerService="https://$hostname.$domainname/sso-login-page" \
  --set simplesamlNameIDAttribute="uid" \
  --set privacypolicyURL="https://example.com/policy.html" \
  --set serviceProviderOrganizationName="My Service Name" \
  --set serviceproviderdescription="A long description shown to the user on the Single Sign-On page." || die

14.2. Get information required by the service provider#

The service provider usually requires at least a public certificate or XML metadata about the identity provider. The certificate can for example be downloaded with the following call:

$ eval "$(ucr shell)"
$ wget --ca-certificate /etc/univention/ssl/ucsCA/CAcert.pem \
  -O /etc/idp.cert \
  https://"${ucs_server_sso_fqdn:-ucs-sso.$domainname}"/simplesamlphp/saml2/idp/certificate

The XML metadata is available for example from

$ eval "$(ucr shell)"
$ wget --ca-certificate /etc/univention/ssl/ucsCA/CAcert.pem \
  -O /etc/idp.metadata \
  https://"${ucs_server_sso_fqdn:-ucs-sso.$domainname}"/simplesamlphp/saml2/idp/metadata.php

The single sign-on login page to be configured in the service provider is https://ucs-sso.domainname/simplesamlphp/saml2/idp/SSOService.php.