Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w use strict; use Getopt::Long; use Net::LDAP; my ($host,$user,$port,$pass,$debug); my $result = GetOptions('h=s'=>\$host, 'p=s'=>\$port, 'u=s'=>\$user, 'w=s'=>\$pass, 'd+'=>\$debug, 'q'=>\&usage ); # Set some options if necessary and carp # if no user/pass was supplied unless($user && $pass){ &usage; } unless($host){ $host = 'yourserver.yourdomain.com'; } unless($port){ $port = '389'; } unless($debug){ $debug = 0; } print "\n\nTesting TLS...\n\n"; testtls(); sub testtls { if($debug ne 0){ print "h: [$host]\n p: [$port]\n u: [$user]\n w: [$pass]\n d: [$debug]\n "; } # Make an LDAP Object my $ldap=new Net::LDAP($host, port=>$port, version=>3, debug=>$debug, ) || die "ldap failed"; if ($debug ne 0){ print "New Net::LDAP object created successfully\ +n"; } # Start TLS my $mesg=$ldap->start_tls(verify=>'none', sslversion=>'sslv2/3', ) || die "start tls failed: $!\n"; my $code= $mesg->code; print "TLS Status: ",$mesg->error,"\n"; unless($mesg->code == 0){ print "CODE: ",$mesg->code,"\n"; die; } # Bind with dn and password $mesg = $ldap->bind(dn=>$user, password=>$pass, ) || die "bind failed: $!\n"; $code = $mesg->code; print "Bind Status: ",$mesg->error,"\n\n"; } sub usage{ print "\n\n"; print "test_tls.pl -h [host] -p [port] -u [DN] -w [passwd] -d [debu +g]\n"; print "\n\n"; print "[host] is the fully qualified domain name or ip address of t +he ldap server\n"; print " ldapserver\.domain\.tld || 192.168.1.100\n"; print "\n"; print "[port] is the port over which communication takes places (us +ually 389)\n"; print "\n"; print "[DN] is the distinguished name of a valid user in LDAP:\n"; print " \"cn=Alan Smithee,dc=orgunit,dc=com\"\n"; print "\n"; print "[password] is the LDAP password associated with the valid us +er's dn\n"; print " \'133tpasswd!\'\n"; print "\n"; print "[debug] is set for debugging information (default is 0 - suc +cess/fail info only)\n"; print "\n\n"; exit; }

In reply to LDAP Server TLS tester by beernuts

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (7)
As of 2024-04-19 07:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found