使用php curl用私钥连接到sftp

时间:2016-05-04 16:52:02

标签: php curl sftp

我需要编写一个可以连接到sftp服务器的php脚本,获取服务器中的目录和文件列表,然后下载特定文件。我获得了认证部分的ppk文件(我假设这是私钥认证文件)。

我在一些地方读到卷曲可以做到这一点..但我不完全确定如何做到这一点。我尝试从here复制粘贴代码,但我的理解是代码使用公钥文件而不是私钥。

所以这就是我尝试连接到sftp服务器

的内容
$ch = curl_init();
curl_setopt($ch, CURLOPT_VERBOSE, TRUE); 
curl_setopt($ch, CURLOPT_URL, 'sftp://233.42.20.115/');
curl_setopt($ch, CURLOPT_PROTOCOLS, CURLPROTO_SFTP);
curl_setopt($ch, CURLOPT_SSH_PRIVATE_KEYFILE,'megpxl_private.ppk');
curl_setopt($ch, CURLOPT_SSH_AUTH_TYPES,CURLSSH_AUTH_AGENT);
$output = curl_exec ($ch);
print_r($output);

输出没有打印..所以我该怎样做才能真正正确连接到这个sftp?

====更新==== 现在我正在尝试使用phpseclib。这是我的代码:

require_once 'phpseclib/Net/SSH2.php';
require_once 'phpseclib/Net/SFTP.php';
require_once 'phpseclib/Crypt/RSA.php';
require_once 'phpseclib/Crypt/RC2.php';
require_once 'phpseclib/Crypt/RC4.php';
require_once 'phpseclib/Math/BigInteger.php';

set_include_path('phpseclib/Net/');

$privatekey = file_get_contents('sftp_private.txt');

$rsa = new Crypt_RSA();
$rsa->loadKey(file_get_contents("private.ppk"));
$sftp = new Net_SFTP('233.12.20.225', 22);
if (!$sftp->login("myUserName", $rsa)) {
    exit('Login Failed');
}
print_r($sftp);

但我得到的只是这条信息:

No compatible server to client encryption algorithms found in /var/www/html/phpseclib/Net/SSH2.php on line 1375

=============更新:这有效!=================

require_once 'phpseclib/Net/SSH2.php';
require_once 'phpseclib/Net/SFTP.php';
require_once 'phpseclib/Crypt/RSA.php';
require_once 'phpseclib/Math/BigInteger.php';

set_include_path(get_include_path() . PATH_SEPARATOR . 'phpseclib');

$privatekey = file_get_contents('sftp_private.txt');

$rsa = new Crypt_RSA();
$rsa->loadKey(file_get_contents(mykey.ppk"));
$sftp = new Net_SFTP('223.22.20.122', 22);
if (!$sftp->login("usrPMEGPXLtxn", $rsa)) {
    exit('Login Failed');
}

print_r($sftp->nlist()); // == $sftp->nlist('.')
print_r($sftp->rawlist()); // == $sftp->rawlist('.')

2 个答案:

答案 0 :(得分:1)

如果您使用http://phpseclib.sourceforge.net/,那么您不需要在服务器上安装任何其他库...

include('Net/SFTP.php');

$sftp = new Net_SFTP('www.domain.tld');
if (!$sftp->login('username', 'password')) {
    exit('Login Failed');
}

print_r($sftp->nlist()); // == $sftp->nlist('.')
print_r($sftp->rawlist()); // == $sftp->rawlist('.')

(来自http://phpseclib.sourceforge.net/new/sftp/examples.html

答案 1 :(得分:-1)

PHP已经有一个原生的ssh扩展名...看看你的主机是否在常规的phpinfo()中激活了这个扩展;

您正在寻找: http://php.net/manual/en/wrappers.ssh2.php

更具体: http://php.net/manual/en/function.ssh2-exec.php

从那里你可以做这样的事情:

// Generate connection
$conn = ssh2_connect('your.site.com', 22);
ssh2_auth_password($conn, 'username', 'password');

// Set the connection setup for files
$sftp = ssh2_sftp($connection);

// List the Directory (if this is a UNIX system)
$ls = ssh2_exec($conn, 'path/to/dir ls');
echo $ls; // or create an array with a foreach function.

// To read the file
$file = fopen("ssh2.sftp://$sftp/path/to/file", 'r');
// you can grab the file using the $file bytes.

// Or just download the file.
ssh2_scp_recv($conn, '/path/remote/filename', '/path/local/filename');

希望这有帮助。