使用python指令碼利用SSH協議通過TFTP備份華為交換器配置

來源:互聯網
上載者:User

標籤:python ssh 交換器

前提工作

python中預設沒有安裝SSH模組,SSH功能依靠paramiko 模組實現,需要自己獨立安裝,具體安裝步驟自行百度。

主要指令碼,和之前一樣,通過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:‘)           

temp = open(‘config.txt‘,‘w‘)

hostname = ‘192.168.202.254‘

port = 22

username = ‘admin‘

password = ‘passw0rd‘

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(‘display version\n‘)

time.sleep(1)

remote_conn.send(‘\n‘)

out = remote_conn.recv(temp)

DeviceName = (re.findall(str(".*<(.*)>.*"),out))[0]

save = "save %s-%s.cfg " %(DeviceName,LogTime)

remote_conn.send(save+‘\n‘)

time.sleep(1)

remote_conn.send(‘y‘+‘\n‘)

time.sleep(2)

tftp_cli = "tftp %s put %s-%s.cfg" %(tftp,DeviceName,LogTime)

remote_conn.send(tftp_cli+‘\n‘)

time.sleep(2)

print  hostname,‘Backup Success !!‘


本文出自 “阿建” 部落格,請務必保留此出處http://hardwork.blog.51cto.com/2529098/1944534

使用python指令碼利用SSH協議通過TFTP備份華為交換器配置

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.