import getpass

import myparamiko

hostname = "10.255.0.18"  #input("Hostname or IP : ")
username = "******"  #input("Username : "******"******"  #getpass.getpass("Password : "******"ifconfig"

ssh_client = myparamiko.MyParamiko(hostname, 22, username, password)
ssh_client.connect()
ssh_client.get_shell()
ssh_client.send_command("terminal length 0")
output = ssh_client.send_show_command("show vlan br")
print(output)
ssh_client.close()

# with open('R1_show_run.txt', 'w') as f:
# f.write(output)
示例#2
0
def backupmycisco(hostname, username, password):
    ssh_client = myparamiko.MyParamiko(hostname, 22, username, password)
    ssh_client.connect()
    ssh_client.get_shell()
    ssh_client.backupcfg()
    ssh_client.close()