您好,登錄后才能下訂單哦!
一、Python腳本
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect("10.x.x.x", 22,"用戶名","密碼",allow_agent=False,look_for_keys=False)
command = 'sh running-config \r '
stdin, stdout, stderr = ssh.exec_command(command)
#stdin, stdout, stderr = ssh.invoke_shell(command)
a=[]
result = stdout.readlines()
if not result:
result = stderr.read()
backup=open("/root/worke/beifen/beifen.txt","w")
for line in result:
print(line)
backup.write(line)
backup.close()
ssh.close()
看完上文,你對(duì)利用Python腳本登錄交換機(jī)實(shí)現(xiàn)自動(dòng)配置備份的方法大概了解了嗎?如果想了解更多,歡迎關(guān)注億速云行業(yè)資訊頻道哦
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。