ClearFoundation Tracker - ClearCenter
View Issue Details
0005991ClearCenterapp-dynamic-vpn - Dynamic VPNpublic2015-11-09 10:342015-11-18 12:05
bchambers 
bchambers 
normalminorhave not tried
closedfixed 
7.1.0 
7.1.0 Updates7.1.0 Updates 
0005991: Perl changes split out HTTPS support
In addition to splitting out HTTPS support from libwww-perl into LWP::Protocol::https, CentOS has some stricter enforcement of certificates that either don't match or are not signed by a trusted CA.

For our services to work the following are required:

1. Add dependency pkg: perl-LWP-Protocol-https
2. Modify vpnwatchd

my $useragent = new LWP::UserAgent();

Becomes:

my $useragent = new LWP::UserAgent();
$useragent->ssl_opts( verify_hostname => 0 );
No tags attached.
Issue History
2015-11-09 10:34bchambersNew Issue
2015-11-09 10:34bchambersStatusnew => assigned
2015-11-09 10:34bchambersAssigned To => bchambers
2015-11-09 10:54bchambersNote Added: 0002071
2015-11-18 12:05user2Statusassigned => resolved
2015-11-18 12:05user2Fixed in Version => 7.1.0 Updates
2015-11-18 12:05user2Resolutionopen => fixed
2015-11-18 12:05user2Statusresolved => closed

Notes
(0002071)
bchambers   
2015-11-09 10:54   
These two RPM's need to be copied to clearos-cento-verified:

Installing:
 perl-LWP-Protocol-https

Installing for dependencies:
perl-Mozilla-CA