python 实现telnet管理连接华为设备

华为设备开启telnet

user-interface vty 0 4
 authentication-mode aaa
 user privilege level 15
 protocol inbound all

telnet server enable

aaa
local-user test password cipher test
local-user test service-type telnet

python

# -*- coding: gb2312 -*-
import telnetlib
import time

HOST = "192.168.0.1"
user = "test"
password = "test"


def command(con, flag, str_=""):
    data = con.read_until(flag.encode())
    print(data.decode('gb2312', errors='ignore'), end="")  
    # errors -- 设置不同错误的处理方案。   end="" 输出不做换行处理
    con.write(str_.encode() + b"\n")


tn = telnetlib.Telnet(HOST, port=23)
command(tn, "Username:", user)
if password:
    command(tn, "Password:", password)

command(tn, ">", "sys")
command(tn, "]", )

time.sleep(2)

tn.close()

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值