import telnetlib HOST="1.0.0.2" tn=telnetlib.Telnet(HOST) tn.read_until("Login:") tn.write("login\n") tn.read_until("Password:") tn.write("pass\n") tn.write("reboot\n") tn.close
Вроде все просто. Но оборудование не уходит в перезагрузку. А когда добавляться строка
import telnetlib HOST="1.0.0.2" tn=telnetlib.Telnet(HOST) tn.read_until("Login:") tn.write("login\n") tn.read_until("Password:") tn.write("pass\n") tn.write("reboot\n") tn.close print tn.read_all()
то все сразу работает.помогите разобраться.Почему так?