How to change default port in Net::SFTP?
Posted on 2005-07-01 00:32:37-07 by dana
Hi! I'm going to try this again. Sorry if this is a duplicate. I'm trying to specific a different port when using Net::SFTP. It looks like you can by passing in ssh_args parameters. But when I add in port => '5000', it didn't work! What am I doing wrong? Help please!
I figured it out. In case anyone is wondering, the correct syntax is:
my $sftp = new Net::SFTP( $host, user=>$user, password=>$pass, debug=>true, ssh_args => [ port => '2300' ] );
(This article is based on a thread on the CPAN::Forum.)
Published on 2005-07-01
If you have any comments or questions, feel free to post them on the source of this page in GitHub. Source on GitHub.
Comment on this post