JEHERUL wrote:
Dear All
I am trying to telnet to a Cisco router . Following is my code .
#code router.py
import getpass
import sys
import telnetlib
HOST = "router address" # router address is ommitted for
security reason
user = raw_input("Username : ")
password = getpass.getpa
Dear All
I am trying to telnet to a Cisco router . Following is my code .
#code router.py
import getpass
import sys
import telnetlib
HOST = "router address" # router address is ommitted for
security reason
user = raw_input("Username : ")
password = getpass.getpass()
tn = telnetli