BIG-IP Configuration Visualizer
@helpdesk
Editing line 62 "use SOAP::Lite;"
to read:
"use IO::Socket::SSL;
IO::Socket::SSL::set_defaults(SSL_verify_mode => 0);
use SOAP::Lite;
$ENV{PERL_LWP_SSL_VERIFY_HOSTNAME}=0;"
will allow you to connect with a self-signed certificate, not that it is the best of ideas.
Unfortunately, As of v11.4.0 the the get_httpclass_profile() function is deprecated immediately. Attempting to perform this function will return a not-implemented exception.
As a workaround you can change line 368 "my $vs_httpclass = get_vs_httpclass($vs_name) || 'NO_HTTPCLASS';"
to read:
"my $vs_httpclass = 'NO_HTTPCLASS';"
which let the script run until it errors out while trying to draw the images. By creating the subdirectories under ./img (example ./img/Common) the script ran successfully.