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

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!