簡體   English   中英

使用 paramiko 進行遠程端口轉發

[英]Remote port forwarding with paramiko

如何使用 Paramiko 實現遠程端口轉發? 我見過做本地端口轉發的例子,但這讓我感到困惑。 我想實施

ssh -N -R 2210:localhost:5000 username@remotehost

與paramiko。 (將遠程主機端口 2210 轉發到本地主機端口 5000,不要打開 shell,因為這是不允許的)。 我試過了

ssh=paramiko.SSHClient()
ssh.connect(remotehost, username=remoteusername, key_filename="/....")
transport = ssh.get_transport()
transport.open_channel(......)

但是 dest_addr、src_addr 和 action(direct-tcpip、forwarded-tcpip)的所有組合似乎都無法處理 ChannelException(管理禁止)。 我的命令行 ssh 有效,所以我有權這樣做,但我不知道如何執行 Paramiko 實現。

有任何想法嗎?

哈努

顯示如何通過 paramiko 進行遠程端口轉發的示例腳本 此腳本連接到請求的 SSH 服務器,並通過隧道連接從遠程端口設置遠程端口轉發(openssh -R 選項)到本地機器可到達的目的地。

示例: ssh -R 4000:internal.example.com:80 public.example.com

import socket
import select
import sys
import threading

import paramiko


def handler(chan, host, port):
    sock = socket.socket()
    try:
        sock.connect((host, port))
    except Exception as e:
        print("Forwarding request to %s:%d failed: %r" % (host, port, e))
        return

    print(
        "Connected!  Tunnel open %r -> %r -> %r"
        % (chan.origin_addr, chan.getpeername(), (host, port))
    )
    while True:
        r, w, x = select.select([sock, chan], [], [])
        if sock in r:
            data = sock.recv(1024)
            if len(data) == 0:
                break
            chan.send(data)
        if chan in r:
            data = chan.recv(1024)
            if len(data) == 0:
                break
            sock.send(data)
    chan.close()
    sock.close()


def reverse_forward_tunnel(server_port, remote_host, remote_port, transport):
    transport.request_port_forward("", server_port)
    while True:
        chan = transport.accept(1000)
        if chan is None:
            continue
        thr = threading.Thread(
            target=handler, args=(chan, remote_host, remote_port)
        )
        thr.setDaemon(True)
        thr.start()


def main():
    """
    ssh -R 4000:internal.example.com:80 public.example.com
    """
    ssh_host = 'public.example.com'
    ssh_port = 22
    ssh_user = 'root'
    ssh_pass = 'password'
    remote_bind_port = 4000  # port on server to forward
    forward_host = 'internal.example.com'  # dest host to forward to
    forward_port = 80  # dest port to forward to

    client = paramiko.SSHClient()
    client.load_system_host_keys()
    client.set_missing_host_key_policy(paramiko.WarningPolicy())

    try:
        client.connect(
            ssh_host,
            ssh_port,
            username=ssh_user,
            password=ssh_pass,
        )
    except Exception as e:
        print("*** Failed to connect to %s:%d: %r" % (ssh_host, ssh_port, e))
        sys.exit(1)

    print(
        "Now forwarding remote port %d to %s:%d ..."
        % (remote_bind_port, forward_host, forward_port)
    )

    try:
        reverse_forward_tunnel(
            remote_bind_port, forward_host, forward_port, client.get_transport()
        )
    except KeyboardInterrupt:
        print("C-c: Port forwarding stopped.")
        sys.exit(0)


if __name__ == "__main__":
    main()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM