in reply to Re: LWP::Useragent and globbing?
in thread LWP::Useragent and globbing?

I'm using these two...and I can talk to some IPv6 systems perfectly fine (like vCenters).
use IO::Socket::SSL qw( SSL_VERIFY_NONE ); use IO::Socket::INET;
And later in the code...
my $ua = LWP::UserAgent->new(); $ua->ssl_opts( SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE, SS +L_hostname => '', verify_hostname => 0 );