doueta6642 2013-10-09 07:05 采纳率: 0%
浏览 84
已采纳

SFTP未连接到远程服务器

I am trying to connect to a remote SFTP server using PHP. My code works fine when I connect to a local SFTP account but it times out for remote host. I have made sure through FTP client that host information is correct and its connecting fine.

I am using phpseclib library and my three line code is below.

require_once("phpseclib/Net/SFTP.php");

$sftp = new Net_SFTP('remote_host_IP');
var_dump($sftp->login('<username>', '<password>'));

It returns false (meaning not connected).

What I have done

  • I have whitelisted script in mod_security just in case its blocking that.
  • I have tried same script on my local computer and it connects successfully to remote SFTP.

Any valuable hint please?

  • 写回答

2条回答 默认 最新

  • dovhpmnm31216 2013-10-18 05:32
    关注

    This might help others. You need to make sure TCP_OUT port is open on your remote server to make it work.

    Thanks for the help!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部