Author |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Thu 22 Dec '11 16:38 Post subject: SSL Configuration is Success but its not working in IE |
|
|
The certificates is ok and also working fine in Firefox 8.0.1,but not working in IE.
if I include this line
“LoadModule sspi_auth_module modules/mod_auth_sspi.so”
In httpd.conf file , it will ask credential but after entering credentials its showing message like
Authorization is required.
So can you please suggest .... |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Thu 22 Dec '11 16:53 Post subject: |
|
|
Please search the forum with sspi to get more insight.
Steffen |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Thu 22 Dec '11 17:27 Post subject: |
|
|
Why do you want to enable mod sspi? This has nothing do to with SSL
Mod SSPI is for auth against Windows accounts. |
|
Back to top |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Fri 23 Dec '11 7:22 Post subject: Apache SSL Configuration |
|
|
I need to authenticate the yours using sspi so i am using this module.Can you please suggest me.. |
|
Back to top |
|
wm003
Joined: 24 Mar 2006 Posts: 88
|
Posted: Fri 23 Dec '11 7:37 Post subject: |
|
|
Could you post your sspi config?
SSPIPackage
SSPIAuth
SSPIAuthoritative
SSPIPerRequestAuth
SSPIOfferBasic
SSPIBasicPreferred
SSPIUsernameCase lower
require valid-user
??
Which Version of sspi are you using? 1.0.4 ? there is a 1.0.5 around which has some bugs fixed concerning IE. But that was mainly for POST and keepalive stuff |
|
Back to top |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Fri 23 Dec '11 8:39 Post subject: mod_auth_sspi-1.0.4-2.2.2 |
|
|
mod_auth_sspi-1.0.4-2.2.2 this is my version
mod_auth_sspi-1.0.4-2.2.2.zip got this zip file, extracted copied mod_auth_sspi into apache/modules
<IfModule mod_auth_sspi.c>
AuthName "sitename.sometext.com"
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIOfferBasic On
SSPIBasicPreferred On
#SSPIUsernameCase lower
SSPIDomain sometext.com
require valid-user
</IfModule>
I have query , i need to extravt all the mod_auth_sspi-1.0.4-2.2.2.zip into my apache/modules folder? |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
Posted: Fri 23 Dec '11 9:10 Post subject: |
|
|
my suggestion is to make sure you use at minimum Require usernames, instead of "valid-user" .. if you use "valid-user" .. on some versions of Windows, just clicking OK on a blank username/password prompt will allow you in. |
|
Back to top |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Fri 23 Dec '11 9:39 Post subject: |
|
|
Please let me know how to configure for limited users because i am not aware of server configurations.But i dont know who are the users.So i need to configure for all users who have the sometext.com domain enterprise id and password. |
|
Back to top |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Fri 23 Dec '11 12:09 Post subject: My problem was solved |
|
|
After commenting fallowing 3 lines its working in IE also....
At time time of Error the code is as fallows
BrowserMatch ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
After problem solved
#BrowserMatch ".*MSIE.*" \
#nokeepalive ssl-unclean-shutdown \
#downgrade-1.0 force-response-1.0 |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Fri 23 Dec '11 23:06 Post subject: |
|
|
I am a little stumbled. The Topic is about mod_auth_sspi, and as James says above, this has nothing do to with SSL.
I am not familiar with mod_auth_sspi. Now you are referring to the SSL-BrowserMatch as problem solved ? Or did you have a general issue with SSL and IE ? |
|
Back to top |
|
nagella
Joined: 28 Nov 2011 Posts: 27 Location: Pune
|
Posted: Tue 27 Dec '11 12:35 Post subject: |
|
|
actually i started with mod_auth_sspi only i.e its working fine in Firefox but its not worked in IE ,so james given some suggestions but exact problem is with the fallowing lines
BrowserMatch ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
due to this its not working in IE so commented , after that its working fine.. |
|
Back to top |
|