Special thanks to David Bombal - Udemy.
Notes:
Virtual Box v 5
VM Workstation ver 12
Sublime
------------------------------
import getpass
import sys
import telnetlib
HOST = "192.168.122.254"
user = raw_input("Enter your RCC telnet username: ")
password = getpass.getpass()
tn = telnetlib.Telnet(HOST)
tn.read_until("Username: ")
tn.write(user + "\n")
if password:
tn.read_until("Password: ")
tn.write(password + "\n")
tn.write("enable\n")
tn.write("cisco\n")
tn.write("conf t\n")
tn.write("int loop 0\n")
tn.write("ip address 1.1.1.1 255.255.255.255\n")
tn.write("int loop 1\n")
tn.write("ip address 2.2.2.2 255.255.255.255\n")
tn.write("router ospf 1\n")
tn.write("network 0.0.0.0 255.255.255.255 area 0\n")
tn.write("end\n")
tn.write("exit\n")
print tn.read_all()
--------------------------
ctl + k is cut.
ctl + u is paste.
telnet lib python 3
https://github.com/davidbombal/pythonvideos/blob/master/pythonR1script1.py
No comments:
Post a Comment