使用ptyhon连接到cisco路由器上
#First create the device object using a dictionary CSR = { 'device_type': 'cisco_ios', 'ip': '192.168.1.220', 'username': 'roger', 'password': 'cisco' } # Next establish the SSH connection net_connect = ConnectHandler(**CSR) # Then send the command and print the output output = net_connect.send_command('show ip int brief') print (output) # Finally close the connection net_connect.disconnect()