Language/python
python netmiko
세모데
2019. 9. 12. 21:40
from netmiko import ConnectHandler
device = ConnectHandler(device_type='', ip='10.10.10.10', username='test', password='test')
output = device.send_command("~~")
print(output)
device.disconnect()