
Authen::Simple::NIS - Simple NIS authentication

use Authen::Simple::NIS;
my $nis = Authen::Simple::NIS->new;
if ( $nis->authenticate( $username, $password ) ) {
# successfull authentication
}
# or as a mod_perl Authen handler
PerlModule Authen::Simple::Apache
PerlModule Authen::Simple::NIS
PerlSetVar AuthenSimpleNIS_domain "domain"
<Location /protected>
PerlAuthenHandler Authen::Simple::NIS
AuthType Basic
AuthName "Protected Area"
Require valid-user
</Location>

NIS authentication.

This method takes a hash of parameters. The following options are valid:
NIS domain. Required unless it can be obtained from yp_get_default_domain().
domain => 'domain'
NIS map. Defaults to passwd.byname.
map => 'passwd.byname'
Any object that supports debug, info, error and warn.
log => Log::Log4perl->get_logger('Authen::Simple::NIS')
Returns true on success and false on failure.

ypclnt(3).

Christian Hansen ch@ngmedia.com

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.