使用python脚本利用SSH协议通过TFTP备份批量备份山石防火墙配置

网友投稿 447 2022-09-14


使用python脚本利用SSH协议通过TFTP备份批量备份山石防火墙配置

#!/usr/bin/python

#-*- coding: utf-8 -*-

import re

import paramiko          #引入ssh模块,该模块需要单独安装。

import time

LogTime = time.strftime('%Y-%m-%d_%H-%M-%S')

tftp = raw_input('Please Enter TFTP Sever IP:')

import Hillstone_icmp

action = raw_input('''Please Select Action :

1:Config & Backup;

2:Backup;

Put Your Choose:''')

for line in open("HS_IP_True.txt"):

hostname = line.replace('\n','')

temp = open('HS_temp.txt','w')

port = 22

username = '666666'

password = '666666'

if action == '2':

try:

client = paramiko.SSHClient()

client.set_missing_host_key_policy(paramiko.AutoAddPolicy())

client.connect(hostname, port, username, password, timeout=5)

remote_conn = client.invoke_shell()

remote_conn.send('show version \n')

time.sleep(2)

remote_conn.send('\n')

out = remote_conn.recv(temp)

time.sleep(2)

DeviceName = (re.findall('.*(?=#)',out))[0]

tftp_cli = "export configuration startup to tftp server %s %s-%s..cfg" %(tftp,DeviceName,LogTime)

remote_conn.send(tftp_cli+'\n')

time.sleep(2)

print  hostname,'Backup Success !!'

except :

print hostname,'Backup Failed !!'


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:zabbix3.2 snmp 监控交换机流量(zabbix3.2.4升级4.2)
下一篇:Iperf网络检测工具(网络IP检测)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~