12

我正在用 Python 编写一个脚本,它需要remote_server使用 SSH 连接到 a 并将 afile从移动remote_serverhost_server. 我需要在没有密码的情况下执行此操作,因为它需要适用于任何远程服务器和任何主机服务器用户。

我的代码:

#get IP and username for remote access
IP = input("Enter host_server IP: ").split()
username = input("Enter username: ").split()
#password = ???????

#create a file on host_server for file
file_a = open(date+"file.txt", "a") #ignore the date variable
file = str(date+"file.txt")

#move file to host_server
import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(IP[0], username = user[0], password = password[0])
print "Connected to server."
transfer = ssh.open_sftp()
transfer.get("file.txt", file)
transfer.close()
print "Transfer completed."

问题:有没有办法在脚本中设置公钥而无需访问命令行终端,这样每次脚本运行时都会使用 SSH 设置无密码访问?

4

1 回答 1

23

ssh.connect()接受一个关键字参数pkey,您可以使用它来指定您的私人文件。

#get IP and username for remote access
IP = input("Enter host_server IP: ").split()
username = input("Enter username: ").split()


#create a file on host_server for file
file_a = open(date+"file.txt", "a") #ignore the date variable
file = str(date+"file.txt")
import paramiko
import os
privatekeyfile = os.path.expanduser('~/.ssh/id_rsa')
mykey = paramiko.RSAKey.from_private_key_file(privatekeyfile)
ssh.connect(IP[0], username = user[0], pkey = mykey)
于 2013-08-21T15:53:20.297 回答