|
Good day to all. I'm having trouble using Net::FTPSSL. I'm running on AIX 5.3 and I need to be able to connect to a Serv-U server and pull down files. However, my connection just hangs once connected. No user info is passed to the server. In using filezilla on Windows, this is the point where I would accept the server certificate. Is there a way to accept server certificates using Net::FTPSSL? Has anyone ever had this issue?
Here's the code:
my $ftps = Net::FTPSSL->new( $server,
Port => 990,
Encryption => 'I',
Debug => 1)
or warn("Cannot reach $server");
However it croaks with the following message:
Can't read on socket: at ./<my script>.pl line 23
Thanks in advance for any help,
Brian |