Python3+telnetlib实现telnet客户端

Posted 诸子流

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3+telnetlib实现telnet客户端相关的知识,希望对你有一定的参考价值。

一、程序要点说明

python实现telnet客户端的六个关键问题及其答案是:

使用什么库实现telnet客户端----telnetlib

怎么连接主机----两种方法,一种是在实例化时传入ip地址连接主机(tn = telnetlib.Telnet(host_ip,port=23)),第二种是,先不传参数进行实例化再用open方法连接主机(我这里使用的方法)

怎么输入用户名密码----我们使用read_untilb函数监听,出现标志后使用write方法向服务端传输用户名密码

怎么执行命令----仍然是使用write方法向服务端传送命令,不管向服务端传送什么数据都用write;不过要注意需要编码成bytes类型

怎么获取命令执行结果----使用read_very_eager()方法,该方法获取的内容是上次获取之后本次获取之前的所有输入输出;由于获取到的是bytes类型要decode解码一下

怎么退出telnet---退出telnet使用write方法向服务器提交exit命令即可

 

二、程序源代码

技术分享图片
import logging
import telnetlib
import time


class TelnetClient():
    def __init__(self,):
        self.tn = telnetlib.Telnet()

    # 此函数实现telnet登录主机
    def login_host(self,host_ip,username,password):
        try:
            # self.tn = telnetlib.Telnet(host_ip,port=23)
            self.tn.open(host_ip,port=23)
        except:
            logging.warning(%s网络连接失败%host_ip)
            return False
        # 等待login出现后输入用户名,最多等待10秒
        self.tn.read_until(blogin: ,timeout=10)
        self.tn.write(username.encode(ascii) + b
)
        # 等待Password出现后输入用户名,最多等待10秒
        self.tn.read_until(bPassword: ,timeout=10)
        self.tn.write(password.encode(ascii) + b
)
        # 延时两秒再收取返回结果,给服务端足够响应时间
        time.sleep(2)
        # 获取登录结果
        # read_very_eager()获取到的是的是上次获取之后本次获取之前的所有输出
        command_result = self.tn.read_very_eager().decode(ascii)
        if Login incorrect not in command_result:
            logging.warning(%s登录成功%host_ip)
            return True
        else:
            logging.warning(%s登录失败,用户名或密码错误%host_ip)
            return False

    # 此函数实现执行传过来的命令,并输出其执行结果
    def execute_some_command(self,command):
        # 执行命令
        self.tn.write(command.encode(ascii)+b
)
        time.sleep(2)
        # 获取命令结果
        command_result = self.tn.read_very_eager().decode(ascii)
        logging.warning(命令执行结果:
%s % command_result)

    # 退出telnet
    def logout_host(self):
        self.tn.write(b"exit
")

if __name__ == __main__:
    host_ip = 192.168.220.129
    username = root
    password = abcd1234
    command = whoami
    telnet_client = TelnetClient()
    # 如果登录结果返加True,则执行命令,然后退出
    if telnet_client.login_host(host_ip,username,password):
        telnet_client.execute_some_command(command)
        telnet_client.logout_host()
View Code

 

参考:

https://docs.python.org/3/library/telnetlib.html

以上是关于Python3+telnetlib实现telnet客户端的主要内容,如果未能解决你的问题,请参考以下文章

Telnet客户端没有收到。 Python telnetlib作为服务器

Python 3 telnetlib 路由器重启

如何在 python telnetlib 中禁用 telnet echo?

Python telnetlib 客户端似乎没有打开到服务器的 telnet 连接

python中telnetlib模块的使用

Python Telnet 连接