Hi,
I am trying to set up a linux server running apache2 and mod_auth_kerb to authenticate users against our Windows 2003 AD server.
I have got the server to authenticate with AD using kerberos, however this is only possible with the authentication dialog box appearing. I can't seem to have the users authenticate seamlessly i.e. without the dialog box.
I would prefer to use krb rather than LDAP as we have users in different OUs for each business group.
Here is the contents of the .htaccess file
Code:
AuthName "Intranet"
AuthType Kerberos
Krb5Keytab /usr/lib/krb5/auth_kerb.keytab
KrbAuthRealm UK.MYDOMAIN.COM
KrbMethodNegotiate off
KrbSaveCredentials off
KrbVerifyKDC off
Require valid-user
Any ideas how I can get users to authenticate against the server without the dialog box?
Cheers....