$pPing = 0) do={
:log info "------------- Power Reset initiated! -----------------"
#config_user_password_port_etc.
HOST='***'
PORT='23'
user= '****'
password= '***'
command_1='ping 127.0.0.1 c 3'
command_3=' set reboot'
tn=telnetlib.Telnet(HOST,PORT)
tn = telnetlib.Telnet(HOST)
#input user
tn.read_until(b"Login: ")
tn.write(user.encode('UTF-8') + b"\n")
#input password
tn.read_until(b"Password: ")
tn.write(password.encode('UTF-8') + b"\n")
tn.read_until(b'>')
tn.write(command_1.encode('UTF-8')+b"\r\n")
time.sleep(5)
tn.read_until(b'>')
tn.write(command_3.encode('UTF-8')+b"\r\n")
print(tn.read_all())
tn.close()
}
А если так? :) В System - Sheduler его
Я так понимаю разница в том что ты пингуешь внешний ап
Обсуждают сегодня