Perl Certificate Info
Problem this snippet solves: This perl application will display the information about the certificates on the BIG-IP system. Code : #!/usr/bin/perl
#-----------------------------------------------...
Published Mar 09, 2015
Version 1.0CodeCentral_194
Cirrus
Joined May 05, 2019
CodeCentral_194
Cirrus
Joined May 05, 2019
JG
Jul 20, 2016Cumulonimbus
Put the following near the top of the script:
use IO::Socket::SSL;
IO::Socket::SSL::set_defaults(SSL_verify_mode => "SSL_VERIFY_NONE");
$ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;
.