in reply to Re^2: Error ftping file with Net::FTP
in thread Error ftping file with Net::FTP

Have you tried disabling passive mode?

Replies are listed 'Best First'.
Re^4: Error ftping file with Net::FTP
by Anonymous Monk on Aug 16, 2017 at 17:25 UTC
    Yes, that seems to fix the issue:
    my $ftp = Net::FTP->new($host, Debug => 0, Passive => 0) or die "Could not connect to '$host': $@";

    Thank you!