Linux から Windows PC に telnet しようとしていますが、「ログインに失敗しました」というエラーが表示されます。
これが私のPythonスクリプトです。pexpect
モジュールを使用しています。私も試しましtelnetlib
たが、同じエラーが発生しました:
import os
import pexpect,time
telconn = pexpect.spawn('telnet 192.168.0.105')
telconn.logfile = open("/tmp/telnetlog", "a")
time.sleep(30)
print "connected"
telconn.expect(':')
telconn.sendline("user" + "\r")
#time.sleep(10)
print "connected user"
telconn.expect(':')
password = "user@123"
#print password
telconn.sendline(password + "\r")
time.sleep(60)
#print "connected password"
エラー :
Connected to 192.168.0.105.
Escape character is '^]'.
Welcome to Microsoft Telnet Service
login: user
password: user@123
The operation completed successfully.
Login Failed