here below the script, please advise
import getpassimport telnetlib
HOST = "10.1.252.84"tn = telnetlib.Telnet(HOST)user = raw_input("Enter your remote account: ")password = getpass.getpass()tn = telnetlib.Telnet(HOST)
tn.read ("login: ")tn.write(u...