0

即使我可以在我的服务器上使用各种方法进行身份验证,使用 libssh 库,也没有检测到身份验证方法。这是一个代码示例:

 #include <libssh/libssh.h>
 #include <stdio.h>

 int main(int,char**)
 {
   ssh_session session = ssh_new();
   unsigned short port = 22;
   int verbosity = SSH_LOG_PROTOCOL;

   ssh_options_set(session, SSH_OPTIONS_HOST, "localhost");
   ssh_options_set(session, SSH_OPTIONS_PORT, &port);
   ssh_options_set(session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity);
   ssh_connect(session);

   int supported_authentication_methods = ssh_userauth_list(session, NULL);

   printf("Supported methods: %d\n", supported_authentication_methods);
   return (0);
 }

这是它产生的输出:

[2015/04/16 19:30:34.367528, 1] ssh_connect:  libssh 0.6.4 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_noop
[2015/04/16 19:30:34.368626, 2] ssh_socket_connect:  Nonblocking connection socket: 5
[2015/04/16 19:30:34.368643, 2] ssh_connect:  Socket connecting, now waiting for the callbacks to work
[2015/04/16 19:30:34.368675, 1] socket_callback_connected:  Socket connection callback: 1 (0)
[2015/04/16 19:30:34.400420, 1] ssh_client_connection_callback:  SSH server banner: SSH-2.0-OpenSSH_6.2
[2015/04/16 19:30:34.400445, 1] ssh_analyze_banner:  Analyzing banner: SSH-2.0-OpenSSH_6.2
[2015/04/16 19:30:34.400456, 1] ssh_analyze_banner:  We are talking to an OpenSSH client version: 6.2 (60200)
[2015/04/16 19:30:34.426885, 2] ssh_packet_dh_reply:  Received SSH_KEXDH_REPLY
[2015/04/16 19:30:34.427292, 2] ssh_client_dh_reply:  SSH_MSG_NEWKEYS sent
[2015/04/16 19:30:34.427311, 2] ssh_packet_newkeys:  Received SSH_MSG_NEWKEYS
[2015/04/16 19:30:34.427908, 2] ssh_packet_newkeys:  Signature verified and valid
Supported methods: 0

如输出所示,没有检测到任何身份验证方法……这很奇怪,因为我绝对可以使用密码和密钥登录到 localhost……这是怎么回事?

4

1 回答 1

2

根据文档

这需要在方法可用之前调用函数ssh_userauth_none() 。

所以ssh_userauth_none()先打电话。服务器以可用选项列表进行响应,这就是ssh_userauth_list()知道返回什么的方式。

(void)ssh_userauth_none(session, NULL);
int supported_authentication_methods = ssh_userauth_list(session, NULL);
于 2015-04-16T17:38:03.563 回答