import paramiko,time,os def shutdown_remote_system(): # 远程服务器的IP地址和SSH登录信息 remote_host = '192.168.0.106' remote_port = 22 remote_username = 'root' remote_password = '123' # 创建SSH连接 ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect(remote_host, remote_port, remote_username, remote_password) # 执行关机命令 ssh.exec_command('sudo shutdown -h now') time.sleep(10) #判断系统是否已经关机 while True: response=os.system('ping -c 1'+remote_host) if response ==0: time.sleep(5) else: break # 关闭SSH连接 ssh.close() 判断中能否弹出提示:已关机
时间: 2024-02-14 12:04:16 浏览: 97
用paramiko:ssh.exec_command怎样运行import命令
在这段代码中,判断系统是否已经关机的部分只是通过 ping 命令来判断主机是否可以 ping 通,如果可以 ping 通则返回 0,否则返回其他值。因此,如果系统已经关机,ping 命令会无法执行,不会返回任何值,也就没有办法弹出提示。如果您想要在系统已经关机后弹出提示,可以在 while 循环中添加一个判断条件,例如判断主机是否可以 ping 通,如果无法 ping 通则说明系统已经关机,可以弹出提示。具体实现方式可以参考下面的代码:
```
import paramiko,time,os
import tkinter.messagebox
def shutdown_remote_system():
# 远程服务器的IP地址和SSH登录信息
remote_host = '192.168.0.106'
remote_port = 22
remote_username = 'root'
remote_password = '123'
# 创建SSH连接
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(remote_host, remote_port, remote_username, remote_password)
# 执行关机命令
ssh.exec_command('sudo shutdown -h now')
time.sleep(10)
#判断系统是否已经关机
while True:
response = os.system('ping -c 1 '+remote_host)
if response == 0:
time.sleep(5)
else:
tkinter.messagebox.showinfo('提示', '已关机')
break
# 关闭SSH连接
ssh.close()
```
在这段代码中,我们使用了 Python 自带的 tkinter 模块中的 messagebox 子模块来弹出提示框,如果您的系统中没有安装 tkinter 模块,可以使用以下命令来安装:
```
pip install tkinter
```
阅读全文