19

我正在使用 Python 的 paramiko 数据包来保持与服务器的 ssh 连接:

s = paramiko.SSHClient()
s.set_missing_host_key_policy(paramiko.AutoAddPolicy())
s.connect("xxx.xxx.xxx.xxx",22,username=xxx,password='',timeout=4)

我想使用这个 ssh-connection 将文件传输到 ssh 服务器,我该怎么做?

就像使用 scp a-file xxx@xxx.xxx.xxx.xxx:filepath 命令一样?

4

2 回答 2

24

试试这个:

s = paramiko.SSHClient()
s.set_missing_host_key_policy(paramiko.AutoAddPolicy())
s.connect("xxx.xxx.xxx.xxx",22,username=xxx,password='',timeout=4)

sftp = s.open_sftp()
sftp.put('/home/me/file.ext', '/remote/home/file.ext')
于 2012-07-17T09:03:51.387 回答
1

这是来自https://www.programcreek.com/python/example/4561/paramiko.SSHClient的另一个示例

def copy_file(hostname, port, username, password, src, dst):
    client = paramiko.SSHClient()
    client.load_system_host_keys()
    print (" Connecting to %s \n with username=%s... \n" %(hostname,username))
    t = paramiko.Transport(hostname, port)
    t.connect(username=username,password=password)
    sftp = paramiko.SFTPClient.from_transport(t)
    print ("Copying file: %s to path: %s" %(src, dst))
    sftp.put(src, dst)
    sftp.close()
    t.close() 
于 2019-07-12T06:44:24.450 回答