Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Perl NIS authentication

by VinsWorldcom (Prior)
on Feb 20, 2013 at 19:59 UTC ( [id://1019837]=note: print w/replies, xml ) Need Help??


in reply to Perl NIS authentication

Try:

use strict; use warnings;

at the top of your code to see some warnings / errors with what you posted.

I don't have a NIS server to test against, but I'm willing to bet if your credentials are correct, the following (untested) may work:

#!/usr/bin/perl use strict; use warnings; use Net::NIS; use Authen::Simple::NIS; my $default_domain = Net::NIS::yp_get_default_domain(); my $nis = Authen::Simple::NIS->new(domain => $default_domain); if ($nis->authenticate("user", "testpass")) { print "Success\n" } print "done\n";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1019837]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-03-19 05:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found