2

アプリで xen VM の VNC 接続を実装しています。XenServer はローカル接続のみを受け入れるため、接続するにはポートを転送する必要があります。私はこのようにします:

ssh -L 5903:localhost:5903 root@192.168.1.4

その後、対応するポートを使用して VNC を localhost に接続できます。しかし、私は頻繁に別のホストに再接続する必要があり、Windows ビルドも持っているため、bash を使用することはお勧めできません。ssh-client をインストールできるとは限りません。http://api.libssh.org/stable/libssh_tutor_forwarding.html
を読み 、テストしようとしました。

 ssh_channel forwarding_channel;        
    forwarding_channel = ssh_channel_new(session);    
    int rc = channel_open_forward(forwarding_channel,
                              "192.168.1.4", 5903,
                              "localhost", 5903);
    if (rc != SSH_OK)
    {
        ssh_channel_free(forwarding_channel);
        return rc;
    }    
    for(;;)
    {
        usleep(100000);
    }       

ステータスに応じて、トンネル自体が作成されます。しかし、netstat を介してリッスンしているポートが見当たりません。私が間違っていることは何ですか?それはまったく可能ですか?

アップデート:

これは、libssh を使用して適切に動作するように見える結果のコードです。

int32_t forward_port (ssh_session session, char *remote_host, int32_t remote_port, int32_t local_port)
{   
    int32_t server_sock = 0;    
    int32_t client_sock = -1;
    struct sockaddr_in client_name;
    socklen_t client_name_len = sizeof client_name;
    char buf[4096] = {0};
    server_sock = server_startup(local_port);
    client_sock = accept(server_sock,
                         (struct sockaddr *)&client_name,
                         &client_name_len);
    if (client_sock == -1)
    {
        perror("Error on accept");
        return SSH_ERROR;
    }
    int32_t client_port = ntohs(client_name.sin_port);  
    int32_t size_recv, nwritten, nread = 0;
    uint8_t data[4096];
    fcntl(client_sock, F_SETFL, O_NONBLOCK);
    /*  */
    ssh_channel forwarding_channel;
    forwarding_channel = ssh_channel_new(session);
    int rc = channel_open_forward(forwarding_channel,
                                  remote_host, remote_port,
                                  "127.0.0.1", client_port);
    if (rc != SSH_OK)
    {
        ssh_channel_free(forwarding_channel);
        close(client_sock);
        close(server_sock);
        return rc;
    }
    while(!ssh_channel_is_eof (forwarding_channel)) 
    {
        if((size_recv = recv(client_sock, data, sizeof data, MSG_DONTWAIT) ) < 0)
        {
            if((nread = ssh_channel_read_nonblocking(forwarding_channel, data, sizeof data, 0))>0)
            {
                if(write(client_sock,data,nread)<0)
                {                   
                    perror("Error writing to socket");
                    close(client_sock);
                    close(server_sock);
                    ssh_channel_free(forwarding_channel);
                    return SSH_ERROR;
                }               
            }

        }       
        else if (!size_recv)
        {
            puts("Local client disconnected, exiting");
            goto exit;  
        }
        nwritten = channel_write(forwarding_channel, data, size_recv);
            if (size_recv != nwritten)
            {
                ssh_channel_free(forwarding_channel);
                return SSH_ERROR;
            }
    }
exit:
    close(client_sock);
    close(server_sock);
    ssh_channel_free(forwarding_channel);
    return SSH_OK;
}
4

1 に答える 1

1

ssh_channel_open_forward ドキュメント

## Warning ##
This function does not bind the local port and does not automatically forward the content of a socket to the channel. You still have to use channel_read and channel_write for this. 
于 2013-09-15T11:37:32.823 に答える