Python Telnet连接

时间:2010-12-25 00:16:50

标签: python telnet

当我遇到问题时,我正在玩python 3.1。我想连接到telnet服务器。这是我的代码:

import sys
import telnetlib

tn = telnetlib.Telnet("10.0.0.138")


tn.read_until(b"Username :", 2)
tn.write(b"\n")

tn.read_until(b"Password :", 2)
tn.write(b"\n")

tn.read_until(b"=>", 2)
tn.write(b"exit\n")

tn.close

直到“用户名:”才能阅读。编写emty行时也没有错误消息。但是当我读到“密码:”时,我得到一个空字符串。当我读完所有内容时,我也会得到一个空字符串。

如果可以,请帮助我。

编辑: 这是我通过putty连接到服务器时的输出。

 Willkommen am THOMSON TG787v
   Plattform:VDNT-D  Firmware:8.2.5.0  Seriennummer:CP0919MT238
 Bitte identifizieren Sie sich mit Ihrem Benutzernamen und Kennwort
--------------------------------------------------------------------------------




Username :
Password :
------------------------------------------------------------------------

                             ______  Thomson TG787v
                         ___/_____/\
                        /         /\\  8.2.5.0
                  _____/__       /  \\
                _/       /\_____/___ \  Copyright (c) 1999-2009, THOMSON
               //       /  \       /\ \
       _______//_______/    \     / _\/______
      /      / \       \    /    / /        /\
   __/      /   \       \  /    / /        / _\__
  / /      /     \_______\/    / /        / /   /\
 /_/______/___________________/ /________/ /___/  \
 \ \      \    ___________    \ \        \ \   \  /
  \_\      \  /          /\    \ \        \ \___\/
     \      \/          /  \    \ \        \  /
      \_____/          /    \    \ \________\/
           /__________/      \    \  /
           \   _____  \      /_____\/
            \ /    /\  \    /___\/
             /____/  \  \  /
             \    \  /___\/
              \____\/

------------------------------------------------------------------------
CP0919MT238=>

我在“用户名:”之后按“返回”,然后在“密码:”之后按

5 个答案:

答案 0 :(得分:9)

大笑,我和你的路由器差不多。

试试这个,我的旧代码:

tn = telnetlib.Telnet(HOST)

tn.read_until('Username : ')

tn.write(user+ "\r")

tn.read_until("Password : ")

tn.write(password+ "\n")

tn.write("\r")

这适用于Python 2,但尝试在分号后添加额外的空格。此外,如果这不起作用,请使用wireshark并查看putty连接正在执行的操作并更正您的代码以匹配。

答案 1 :(得分:3)

public void HashMachine(int ObjType) {
    switch(ObjType){
          case 1:
              ClassA MyObj;
              //Some functions here for this MyObj
              break;
          case 2:
              ClassB MyObj;
              //some other functions for this MyObj
              break;
    }
}

答案 2 :(得分:1)

此链接中的文档:http://docs.python.org/library/telnetlib.html

最后在“Telnet示例”部分下面有一个示例代码。

您可以通过以下方式访问该示例:http://docs.python.org/library/telnetlib.html#telnet-example

答案 3 :(得分:0)

下面的简单python telnet程序肯定可以在python3上运行。

import telnetlib
import sys
HOST = input("enter your host IP:")
tn=telnetlib.Telnet(HOST)
tn.write(b'admin\n')
tn.write(b'admin123\n')
tn.write(b"enable\n")
tn.write(b"cisco\n")
tn.write(b"conf t \n")
tn.write(b"hostname SIDDHARTH \n")
tn.write(b'interface loopback0\n')
tn.write(b'ip address 1.1.1.1 255.255.255.255\n')
tn.write(b'interface loopback1\n')
tn.write(b'ip address 2.2.2.2 255.255.255.255\n')
tn.write(b"end \n")
tn.write(b"exit \n")
x = tn.read_all()
print (x)

答案 4 :(得分:0)

只需使用xtelnet:

import xtelnet
t=xtelnet.session()
ip='192.168.0.32'#just an example
t.connect(ip, username='root',password='toor',p=23,timeout=5)
output1=t.execute('echo ala_is_king')
print(output1)
t.close()