in reply to FTP through Firewall

Check this line:

my $ftp = Net::FTP->new(‘remote-ftpsite.com’, Firewall => ftp.glb.xy +z.net', FirewallType => 7, Debug => 1 );
Inside, the new method, the remote-ftpsite.com has both a backtick and a single quote used. Are you using a backtick or a single-quote?
secondly, the Firewall key, has an unequally quoted value.
Could this be the issues?

Replies are listed 'Best First'.
Re^2: FTP through Firewall
by mjdm_07 (Initiate) on Dec 28, 2012 at 15:46 UTC
    Thanks for looking into it. I checked the code again and those are my typos while posting. The actual code has single qoute in correct places. Below is the line:
    my $ftp = Net::FTP->new('xxxxx.xxxxxxxxx.com', Firewall => 'ftp.glb.xx +xxxxx.net', FirewallType => 7, Debug => 1 );
    I was wondering if the dialog expected by our firewall is supported by one of the 7 Firewall types?