0 Pluspunkte 0 Minuspunkte
Wie kann ich mit Python Befehle auf einem Cisco Switch über Telnet ausführen und die Ausgabe in Variablen speichern?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Mit dem Modul telnetlib.

import telnetlib

host = '192.168.0.10'
port = 23
timeout = 10

tn = telnetlib.Telnet(host, port, timeout)

command = b'enable\n'
tn.write(command)

received_data = tn.read_until(b'prompt> ')
print(received_data.decode('utf-8'))

tn.close()
von