私はPythonのtelnetlibを使っていくつかのマシンにtelnetし、いくつかのコマンドを実行しています。これらのコマンドの出力を取得したいのですが。リアルタイムでtelnetlibで出力を読み取る
ので、現在のシナリオは何ですか - 今すぐ
tn = telnetlib.Telnet(HOST)
tn.read_until("login: ")
tn.write(user + "\n")
if password:
tn.read_until("Password: ")
tn.write(password + "\n")
tn.write("command1")
tn.write("command2")
tn.write("command3")
tn.write("command4")
tn.write("exit\n")
sess_op = tn.read_all()
print sess_op
#here I get the whole output
、私はsess_opにすべて統合出力を得ることができます。
tn = telnetlib.Telnet(HOST)
tn.read_until("login: ")
tn.write(user + "\n")
if password:
tn.read_until("Password: ")
tn.write(password + "\n")
tn.write("command1")
#here I want to get the output for command1
tn.write("command2")
#here I want to get the output for command2
tn.write("command3")
tn.write("command4")
tn.write("exit\n")
sess_op = tn.read_all()
print sess_op
私の場合は動作しません! – theharshest