Enabled Integrated Windows Authentication

  • Thread starter Thread starter George Spiro
  • Start date Start date
G

George Spiro

Hi,



I am really confused by the following and would like to know why.



My environment is the following:



2 DC - Windows 2000 and Windows 2003 AD

1 Member Server - IIS 6.0

1 Member Server - Apache/Tomcat



I am using silent Authentication with IE / domain rights to secure internal
web pages.



Well with IIS everything works fine but with Apache I get login errors on
certain workstation. The login error is due that the domain is sent to
Apache in lower case instead of upper case.



My question is why certain Windows machines send its domain in lower case
and others in upper case.



domain\<username> or DOMAIN\<username>



Could I have a explanation for the problem because I need to document it.



G.
 
Here's an example of an .htaccess file for a website:

AuthType Kerberos
AuthName "MYDOMAIN"
KrbMethodNegotiate on
KrbAuthoritative on
KrbVerifyKDC off
KrbAuthRealm MYDOMAIN.COM
Krb5Keytab /var/kerberos/krb5kdc/http.keytab
<Limit GET POST>
require valid-user
</Limit>

Hakan GOKCOL
 
Back
Top