0

I'm installing a bunch of web apps for the office, and one of the wants would be Kerberos-managed SSO.

Now, I have found some information on the matter, and I wondered, what browsers integrate Kerberos SSO?

Of course I could just use the underlying web app to authenticate in case of lack of Kerberos capability, which is exactly the plan, but I'd like to know which browsers would work for that, so I can plan ahead and decide if it's even worth it to do that, which I believe it would considering that one of the web apps I'm implementing will be an ERP.

Olivier Tremblay
  • 347
  • 3
  • 16

2 Answers2

2

Firefox natively supports GSSAPI authentication. See here for more information.

Fahad Sadah
  • 1,496
  • 11
  • 21
  • chrome can be configured to do GSSAPI authentication as well: http://dev.chromium.org/developers/design-documents/http-authentication – n8whnp Jul 29 '11 at 21:35
1

If you are looking for a solution that will work across the systems you are using, mod_auth_krb5 and firefox will work for internal access, however I recommend using a slightly different solution: WebAuth from Stanford. It can use Kerberos + GSSAPI to login, but can will also allow browsers that don't support GSSAPI negotiation and let them login and have a SSO experiance as well:

http://webauth.stanford.edu/

n8whnp
  • 1,316
  • 7
  • 9