免责声明:Google助我一臂之力...

我想知道是否有人可以看一下这个问题并为我指出正确的方向,并感谢您有能力解决...我再一次没有新主意...

与length变量关联的文件大小函数是this;

ifstream::pos_type filesize(const char* filename)
{
    ifstream in(filename, ios::binary | ios::ate);
    return in.tellg();
}


我正在从这段代码中捕获“ scp状态代码1d无效”。

rc = ssh_scp_push_file(scp, "samp_batch", length, 0766);
if (rc != SSH_OK)
{
    fprintf(stderr, "Can't open remote file: %s\n", ssh_get_error(my_ssh_session));
    ssh_free(my_ssh_session);
    exit(-1);
}


该功能;

int ssh()
{
    ssh_session my_ssh_session;
    ssh_scp scp;
    int port = 22;
    int rc;
    int method;
    const long int length = filesize("samp_batch");
    char password[128] = { 0 };
    my_ssh_session = ssh_new();
    if (my_ssh_session == NULL)
        exit(-1);
    ssh_options_set(my_ssh_session, SSH_OPTIONS_HOST, "10.52.136.185");
    ssh_options_set(my_ssh_session, SSH_OPTIONS_PORT, &port);
    ssh_options_set(my_ssh_session, SSH_OPTIONS_USER, "security");

    //connect to server
    rc = ssh_connect(my_ssh_session);
    if (rc != SSH_OK)
    {
        fprintf(stderr, "Error connecting to host: %s\n", ssh_get_error(my_ssh_session));
        ssh_free(my_ssh_session);
        exit(-1);
    }

    //verify the servers identity
    if (verify_knownHost(my_ssh_session) < 0)
    {
        fprintf(stdout, "unkown host\n");
        ssh_disconnect(my_ssh_session);
        ssh_free(my_ssh_session);
        exit(-1);
    }


    // Try to authenticate
    rc = ssh_userauth_none(my_ssh_session, NULL);
    if (rc == SSH_AUTH_ERROR) {
        error(my_ssh_session);
        return rc;
    }

    method = ssh_auth_list(my_ssh_session);
    while (rc != SSH_AUTH_SUCCESS) {
        // Try to authenticate with public key first
        if (method & SSH_AUTH_METHOD_PUBLICKEY) {
            rc = ssh_userauth_autopubkey(my_ssh_session, NULL);
            if (rc == SSH_AUTH_ERROR) {
                error(my_ssh_session);
                return rc;
            }
            else if (rc == SSH_AUTH_SUCCESS) {
                break;
            }
        }

        // Try to authenticate with keyboard interactive";
        if (method & SSH_AUTH_METHOD_INTERACTIVE) {
            rc = authenticate_kbdint(my_ssh_session, NULL);
            if (rc == SSH_AUTH_ERROR) {
                error(my_ssh_session);
                return rc;
            }
            else if (rc == SSH_AUTH_SUCCESS) {
                break;
            }
        }

        if (ssh_getpass("Password: ", password, sizeof(password), 0, 0) < 0) {
            return SSH_AUTH_ERROR;
        }

        // Try to authenticate with password
        if (method & SSH_AUTH_METHOD_PASSWORD) {
            rc = ssh_userauth_password(my_ssh_session, NULL, password);
            if (rc == SSH_AUTH_ERROR) {
                error(my_ssh_session);
                return rc;
            }
            else if (rc == SSH_AUTH_SUCCESS) {
                break;
            }
        }
    }

    //SCP samp_batch file here
    scp = ssh_scp_new(my_ssh_session, SSH_SCP_WRITE, "/");
    if (scp == NULL)
    {
        fprintf(stderr, "Error allocating scp session: %s\n", ssh_get_error(my_ssh_session));
        return SSH_ERROR;
    }
    rc = ssh_scp_init(scp);
    if (rc != SSH_OK)
    {
        fprintf(stderr, "Error initializing scp session: %s\n", ssh_get_error(my_ssh_session));
        ssh_scp_free(scp);
        return rc;
    }

    rc = ssh_scp_push_file(scp, "samp_batch", length, 0766);
    if (rc != SSH_OK)
    {
        fprintf(stderr, "Can't open remote file: %s\n", ssh_get_error(my_ssh_session));
        ssh_free(my_ssh_session);
        exit(-1);
    }

    const char *contents = "samp_batch";
    rc = ssh_scp_write(scp, contents, length);
    if (rc != SSH_OK)
    {
        fprintf(stderr, "Cant write to remote file: %s\n", ssh_get_error(my_ssh_session));
        ssh_free(my_ssh_session);
        exit(-1);
    }

    ssh_scp_close(scp);
    ssh_scp_free(scp);
    return SSH_OK;

    //execute remote command here


    ssh_free(my_ssh_session);
    return 0;
}


再说一次,任何见识都会很棒。我什至找不到任何能解释1d状态码的意思的东西:/

最佳答案

scp = ssh_scp_new(my_ssh_session, SSH_SCP_WRITE, "/");
if (scp == NULL)
{
    fprintf(stderr, "Error allocating scp session: %s\n", ssh_get_error(my_ssh_session));
    return SSH_ERROR;
}


本来应该;

scp = ssh_scp_new(my_ssh_session, SSH_SCP_WRITE, "/home/user/");
if (scp == NULL)
{
    fprintf(stderr, "Error allocating scp session: %s\n", ssh_get_error(my_ssh_session));
    return SSH_ERROR;
}

关于c++ - 无法打开远程文件:SCP状态码1d无效libssh 0.7.3,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43525493/

10-13 05:30