您好,登錄后才能下訂單哦!
一、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()
看完上文,你對利用Python腳本登錄交換機實現自動配置備份的方法大概了解了嗎?如果想了解更多,歡迎關注億速云行業資訊頻道哦
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。