gpt4 book ai didi

Python ssh - 脚本终止后保持连接打开

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:50:27 43 4
gpt4 key购买 nike

我正在尝试编写一个脚本,为我将 ssh 连接到一个盒子中。我正在使用 Python 并利用 paramiko 库。我可以在盒子上成功 ssh,但是一旦脚本终止,ssh 连接也会终止。我想在脚本运行完成后保持连接打开。

python :

self.ssh = paramiko.SSHClient()
self.ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
self.ssh.connect(host, username=self.username, password=self.password)
stdout = execute(self.ssh, 'pwd') # test command for now to verify i'm on box
print stdout
sys.exit()

控制台:

$ ssh.py

[u'/home/myuser\n']

myuser@xxxx ~

$

我无法在网上找到类似的示例,因此不胜感激。

最佳答案

试试这个:

import subprocess
subprocess.call(["ssh", "myuser@myserver"])

关于Python ssh - 脚本终止后保持连接打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32016159/

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