实验6 推送备份文件到FTP服务器

模拟器里的IP 已经变动

import paramiko
import time
username = 'python'
password = '123asd'
iplist =['192.168.1.9', '192.168.1.10', '192.168.1.11']
for ip in iplist:
    ssh_client = paramiko.SSHClient()
    ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    ssh_client.connect(hostname=ip, username=username, password=password, look_for_keys=False)
    print('=-=-=-=-=-=-=-=-=-=-=-=-=-=')
    print('已经成功登陆交换机 ' + ip)
    command = ssh_client.invoke_shell()
    command.send('ftp 192.168.1.8\n')
    time.sleep(0.5)
    command.send('root\n')
    time.sleep(0.5)
    command.send('Lxf940709.\n')
    time.sleep(0.5)
    command.send('bin\n')
    command.send('put vrpcfg.zip '+ip +'_vrpcfg.zip'+'\n')
    time.sleep(0.5)
    command.send('quit\n')
    time.sleep(0.5)
    output = command.recv(65535).decode('GB2312')
    print(output)
ssh_client.close()
C:\Users\82127\.conda\envs\pythonProject\python.exe E:/log/python/pythonProject/Demo06.py
=-=-=-=-=-=-=-=-=-=-=-=-=-=
已经成功登陆交换机 192.168.1.9

Info: The max number of VTY users is 5, and the number
      of current VTY users on line is 1.
      The current login time is 2022-06-01 23:34:42.
<Huawei>ftp 192.168.1.8
Trying 192.168.1.8 ...
Press CTRL+K to abort
Connected to 192.168.1.8.
220 (vsFTPd 3.0.3)
User(192.168.1.8:(none)):root
331 Please specify the password.
Enter password:
230 Login successful.

[ftp]bin
200 Switching to Binary mode.

[ftp]put vrpcfg.zip 192.168.1.9_vrpcfg.zip
200 PORT command successful. Consider using PASV.
150 Ok to send data.
226 Transfer complete.
FTP: 602 byte(s) sent in 0.170 second(s) 3.54Kbyte(s)/sec.

[ftp]quit

221 Goodbye.

<Huawei>
=-=-=-=-=-=-=-=-=-=-=-=-=-=
已经成功登陆交换机 192.168.1.10

Info: The max number of VTY users is 5, and the number
      of current VTY users on line is 1.
      The current login time is 2022-06-01 23:34:45.
<Huawei>ftp 192.168.1.8
Trying 192.168.1.8 ...
Press CTRL+K to abort
Connected to 192.168.1.8.
220 (vsFTPd 3.0.3)
User(192.168.1.8:(none)):root
331 Please specify the password.
Enter password:
230 Login successful.

[ftp]bin
200 Switching to Binary mode.

[ftp]put vrpcfg.zip 192.168.1.10_vrpcfg.zip
200 PORT command successful. Consider using PASV.
150 Ok to send data.
226 Transfer complete.
FTP: 603 byte(s) sent in 0.160 second(s) 3.76Kbyte(s)/sec.

[ftp]quit

221 Goodbye.

<Huawei>
=-=-=-=-=-=-=-=-=-=-=-=-=-=
已经成功登陆交换机 192.168.1.11

Info: The max number of VTY users is 5, and the number
      of current VTY users on line is 1.
      The current login time is 2022-06-01 23:34:48.
<Huawei>ftp 192.168.1.8
Trying 192.168.1.8 ...
Press CTRL+K to abort
Connected to 192.168.1.8.
220 (vsFTPd 3.0.3)
User(192.168.1.8:(none)):root
331 Please specify the password.
Enter password:
230 Login successful.

[ftp]bin
200 Switching to Binary mode.

[ftp]put vrpcfg.zip 192.168.1.11_vrpcfg.zip
200 PORT command successful. Consider using PASV.
150 Ok to send data.
226 Transfer complete.
FTP: 603 byte(s) sent in 0.190 second(s) 3.17Kbyte(s)/sec.

[ftp]quit

221 Goodbye.

<Huawei>

进程已结束,退出代码0

[root@testhost ~]# ll
total 20
-rw-r--r--  1 root root  603 Jun  2 07:34 192.168.1.10_vrpcfg.zip
-rw-r--r--  1 root root  603 Jun  2 07:34 192.168.1.11_vrpcfg.zip
-rw-r--r--  1 root root  602 Jun  2 07:34 192.168.1.9_vrpcfg.zip

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

期待未来的男孩

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值