After joining an Ubuntu system into a UCS domain using "Univention Domain Join" and configuring Firefox for Kerberos authentication, the Kerberos authentication does not work and the standard Keycloak login form is shown. The default "Univention Domain Join" program writes the krb5 config which contains old encryption types for Kerberos tickets ( https://github.com/univention/univention-domain-join/blob/5ca95dc87f9576d5adf40b15addeabb51e2240cf/univention_domain_join/join_steps/kerberos_configurator.py#L44 ). After adjusting the krb5.conf like this default_tkt_enctypes = aes128-cts-hmac-sha1-96 aes256-cts-hmac-sha1-96 permitted_enctypes = aes128-cts-hmac-sha1-96 aes256-cts-hmac-sha1-96 and removing the line allow_weak_crypto=true the Kerberos login with Firefox and Keycloak worked.