I want to connect to a remote host, login, run a command and save the output in a variable. Following is the code I'm using.
import telnetlib
HOST = "172.19.35.69"
user = 'user'
password = 'pass'
tn = telnetlib.Telnet(HOST)
tn.read_until("User: ")
tn.write(user + "\n")
tn.read_until("Password:")
tn.write(password + "\n")
cmd = "the command goes here"
tn.write(cmd + "\n")
output = tn.read_all()
tn.write('logout\n')
print output
When I run it step by step using the interpreter, after I write my username using tn.write(user + "\n") , when I execute the next read_until command for the password, I get the following error: 'Raw mode will not be supported, Closing connection'
Any help is much appreciated. Thanks in advance.