Frequently Asked Questions
- How does work authentication on jGuard?
- How can i configure jGuard to authenticate against an LDAP directory?
- How can i configure jGuard to authenticate against a Kerberos system?
- How can i configure jGuard to authenticate against the NT/Unix/Solaris host system?
-
How does work authentication on jGuard?
jGuard authenticate users (with the help of JAAS), through a stack of LoginModules.
-
How can i configure jGuard to authenticate against an LDAP directory?
jGuard provide some convenient LoginModules, but not yet a loginModule dedicated to LDAP authentication (it is planned for the next release). So, the solution is to use a LoginModule provided by sun directly with the Java Runtime Environment(JRE). to do it, you have only to declare in the 'loginmodules' field this one: com.sun.security.auth.module.JndiLoginModule note that this loginmodule connect to LDAP through the great abstraction layer called JNDI. more details can be reached directly at the corresponding page It exists others LoginModule implementations which do the same stuff. the only requirement is only to implements the LoginModule interface.
-
How can i configure jGuard to authenticate against a Kerberos system?
you can configure jGuard to authenticate through a Kerberos system. the loginModule to use is the one rpovided by sun: com.sun.security.auth.module.Krb5LoginModule more information are provided here.
-
How can i configure jGuard to authenticate against the NT/Unix/Solaris host system?
jGuard can authenticate it with any provided LoginModules implementations. here are the one provided by sun.