分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 代码编程

自己搭建自动化巡检系统(三) 通过telnet实现远程创建loopback

发布时间:2023-09-06 01:06责任编辑:沈小雨关键词:暂无标签

我们在上一章完成了用代码操作telnet,实现了远程控制,分析前面的代码会发现健壮性太低,需要进行优化,后续会通过开发一个交互式界面来完成人工介入操作网络的过程。本次实验目的:实现自动化创建环回口

首先更新拓扑,拉出新的路由器和一台交换机

650) this.width=650;" src="https://s2.51cto.com/wyfs02/M00/A3/64/wKioL1mkAQDBRfBqAAAffPh0MTQ421.jpg-wh_500x0-wm_3-wmp_4-s_825007326.jpg" title="image002.jpg" alt="wKioL1mkAQDBRfBqAAAffPh0MTQ421.jpg-wh_50" />

import telnetlib

import time

def main():

         Host="192.168.10.100"

         username="yerik"

         password="1111"

         commends=[‘enable‘,‘2222‘,‘conft‘]#相关指令

        

         tn= telnetlib.Telnet(Host,port=23,timeout=10)

         tn.set_debuglevel(2)

         #login input username

        

         tn.read_until(‘Username:‘) # 期待回复

         tn.write(username+‘\n‘)

         #input password

         tn.read_until(‘Password:‘) # 期待回复

         tn.write(password+‘\n‘)

         tn.read_until(‘R1>‘)

         forcommend in commends:

                   tn.write("%s\n"% commend)

         ‘‘‘

         tn.read_until(‘R1#‘)

         tn.write(‘configure‘)

         time.sleep(1)

         tn.write(‘t‘)‘‘‘

         tn.read_until(‘R1(config)#‘)

         loopback= ‘int lo‘

         ipaddr= ‘ 255.255.255.255‘

         exit= ‘exit‘

         fori in range(1,5):

                   loopbackn=loopback+str(i)

                   time.sleep(1)

                   tn.write("%s\n"% loopbackn)

                   ipaddrn=‘ipadd ‘+str(i)+‘.‘+str(i)+‘.‘+str(i)+‘.‘+str(i)+ipaddr

                   time.sleep(1)

                   tn.write("%s\n"% ipaddrn)

                   time.sleep(1)

                   tn.write("%s\n"% exit)

         tn.close()

if __name__==‘__main__‘:

         main()

650) this.width=650;" src="https://s3.51cto.com/wyfs02/M01/A3/64/wKioL1mkARmD9yt5AAB7NUOojTw674.jpg" title="image004.jpg" alt="wKioL1mkARmD9yt5AAB7NUOojTw674.jpg" />

发现已经创建成功了

650) this.width=650;" src="https://s5.51cto.com/wyfs02/M01/A3/64/wKioL1mkAS7Qo12WAAA4uHXqdeE500.jpg" title="image006.jpg" alt="wKioL1mkAS7Qo12WAAA4uHXqdeE500.jpg" />

由于此时还没有运行路由协议,请问有什么办法可以ping到这些环回口?使用ping中的严格源站路由技术,通过R2pingR1 在特权界面中,输入ping

ping

Protocol [ip]:

Target IP address: 2.2.2.2

Repeat count [5]:

Datagram size [100]:

Timeout in seconds [2]:

Extended commands [n]: y

Source address or interface: 192.168.10.102

Type of service [0]:

Set DF bit in IP header? [no]:

Validate reply data? [no]:

Data pattern [0xABCD]:

Loose, Strict, Record, Timestamp, Verbose[none]:Strict

Source route: 192.168.10.101

Loose, Strict, Record, Timestamp,Verbose[SV]:

Sweep range of sizes [n]:

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 2.2.2.2,timeout is 2 seconds:

Packet sent with a source address of192.168.10.102

Packet has IP options:  Total option bytes= 7, padded length=8

 Strict source route: <*>

  (192.168.10.101)

Reply to request 0 (20 ms).  Received packet has options

 Total option bytes= 8, padded length=8

 Strict source route:

  (192.168.10.101)

  <*>

 Endof list

Reply to request 1 (28 ms).  Received packet has options

 Total option bytes= 8, padded length=8

 Strict source route:

  (192.168.10.101)

  <*>

 Endof list

Reply to request 2 (24 ms).  Received packet has options

 Total option bytes= 8, padded length=8

 Strict source route:

  (192.168.10.101)

  <*>

 Endof list

Reply to request 3 (16 ms).  Received packet has options

 Total option bytes= 8, padded length=8

 Strict source route:

  (192.168.10.101)

  <*>

 End oflist

Reply to request 4 (28 ms).  Received packet has options

 Total option bytes= 8, padded length=8

 Strict source route:

  (192.168.10.101)

  <*>

 Endof list

Success rate is 100 percent (5/5),round-trip min/avg/max = 16/23/28 ms

现实可以ping通


本文出自 “yerik” 博客,转载请与作者联系!

自己搭建自动化巡检系统(三) 通过telnet实现远程创建loopback

原文地址:http://yerikyu.blog.51cto.com/11421505/1960266

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved