NAME

Authen::Simple::NIS - Simple NIS authentication

SYNOPSIS

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>

DESCRIPTION

NIS authentication.

METHODS

domain => 'domain'

map => 'passwd.byname'

log => Log::Log4perl->get_logger('Authen::Simple::NIS')

SEE ALSO

Authen::Simple.

Net::NIS.

Net::NIS::Table.

ypclnt(3).

AUTHOR

Christian Hansen "ch@ngmedia.com"

COPYRIGHT

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