Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kerberos user authentication in Apache

can anybody recommend some really good resources for how to get Apache authenticating users with Kerberos.

Background reading on Kerberos would also be useful

Thanks

Peter

like image 665
Vagnerr Avatar asked Sep 04 '08 10:09

Vagnerr


People also ask

How Kerberos is used for authentication?

Kerberos is a computer network security protocol that authenticates service requests between two or more trusted hosts across an untrusted network, like the internet. It uses secret-key cryptography and a trusted third party for authenticating client-server applications and verifying users' identities.

What is Kerberos authentication and ticket?

KDC "tickets" provide mutual authentication, allowing nodes to prove their identity to one another in a secure manner. Kerberos authentication uses conventional shared secret cryptography to prevent packets traveling across the network from being read or changed.


2 Answers

mod_auth_kerb is a good start: http://modauthkerb.sourceforge.net/. If you need Active Directory support, look here: http://support.microsoft.com/?id=555092.

like image 99
Joseph Daigle Avatar answered Sep 20 '22 12:09

Joseph Daigle


I found mod_auth_spnego also quite okay, as it can use SSPI on windows instead of requiring MIT Kerberos. mod_spnego

like image 34
schlenk Avatar answered Sep 21 '22 12:09

schlenk