gpt4 book ai didi

c - libssh - 无法连接到本地主机

转载 作者:太空宇宙 更新时间:2023-11-04 03:36:51 26 4
gpt4 key购买 nike

我不知道为什么我的 libssh 程序无法连接到本地主机,但它对远程主机运行良好。

ssh_session my_ssh_session = ssh_new();
ssh_options_set(my_ssh_session, SSH_OPTIONS_USER, "my_user_name");
ssh_options_set(my_ssh_session, SSH_OPTIONS_HOST, "localhost");

int rc = ssh_connect(my_ssh_session);
if(rc != SSH_OK) {
printf("Error connecting to the localhost\n");
exit(-1);
}
// Authorized by the password.
rc = ssh_userauth_password(my_ssh_session, "my_user_name", "my_password");

该程序可以成功创建 session ,但当我尝试进行身份验证时,它总是在最后一行失败。我从 ssh_userauth_password 得到的错误消息是 (Access denied. Authentication that can continue: publickey,keyboard-interactive)

最佳答案

你看到配置 /etc/ssh/sshd_config

改变密码验证号密码验证是

引用:Permission denied (publickey,keyboard-interactive)

关于c - libssh - 无法连接到本地主机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31954905/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com