Python:远程服务器关闭后自动重新连接ssh隧道

时间:2017-11-28 12:04:50

标签: python-3.x paramiko ssh-tunnel reconnect

我已经实现了一个在Python中建立ssh-tunnel的函数,所以我可以在NAT后面的数据库中插入数据(没有可用的端口转发)。

import paramiko
from sshtunnel import SSHTunnelForwarder
def fnc_ssh_tunnel():
    try:
        sshServer = SSHTunnelForwarder(
                (SSH_IP, SSH_PORT),
                ssh_username            = SSH_USER,
                ssh_password            = SSH_PASS,
                set_keepalive           = float(SSH_KEEP_ALIVE),
                remote_bind_address     = (DB_IP, DB_PORT),
            )
        sshServer.start()
        localPort = sshServer.local_bind_port
        logPrint("SSH Tunnel Started to " + str(sshServer.tunnel_bindings), DEBUG_ID)
        sshServer.check_tunnels()
        return localPort

    except Exception as e:

        logPrint("Error SSH Tunnel", DEBUG_ID)
        logPrint(e,DEBUG_ID)
        quit()

现在,这非常有效。通过此实现,我稍后将在localhost:localportlocalport返回fnc_ssh_tunnel())上建立与数据库的连接。

如果由于某种原因,DB所在的远程PC重新启动,则会出现问题。如果是这样,PC上的SSH服务器将断开所有连接,因此我的ssh-tunnel也会崩溃。

要从这种情况中恢复,我需要重新启动Python程序:这样,隧道将重新建立。

如果远程服务器出现故障,是否有一种简洁的方法可以重新建立ssh-tunnel?&/ gt;

谢谢!

1 个答案:

答案 0 :(得分:1)

我面临同样的问题,这是我的解决方案:

启动服务器后,继续检查服务器是否处于活动状态,如果不是,请再次启动服务器。

def get_server():
    # define ssh server and return it

server = get_server()
server.start()
while True :
    if(server.is_active):
        print("alive... " + (time.ctime()))
    else:
        print("reconnecting... " + time.ctime())
        server.stop()
        server = get_server()
        server.start()
    time.sleep(60)