1 Star 0 Fork 45

Snow_Tian/qytang_Python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
2016.02.08 copy ips 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
现任明教教主-乾颐堂 提交于 2016-02-08 09:02 . new file
#!/usr/bin/python3
from telnetlib import Telnet
import re
import time
def copyips(username, password, rackno, verno):
ipssig = re.compile(r'^service interface.*')
if rackno == 'BJRack01':
rackip = '172.17.100.111'
elif rackno == 'BJRack02':
rackip = '172.17.100.112'
elif rackno == 'BJRack03':
rackip = '172.17.100.113'
portno = 2017
tn = Telnet(rackip, portno)
tn.write(b'\r\n')
tn.read_very_eager()
time.sleep(1)
tn.write(b'\r\n')
tn.read_very_eager()
time.sleep(1)
tn.write(b'\r\n')
tn.read_very_eager()
time.sleep(1)
tn.write(b'\n')
tn.write(b'\n')
time.sleep(1)
tn.write(b'cisco\n')
time.sleep(2)
tn.write(b'123cisco123\n')
tn.write(b'\n\n\n')
time.sleep(1)
tn.write(b'end\n\n')
time.sleep(1)
tn.write(b'end\n\n')
time.sleep(1)
tn.write(b'terminal length 0\n\n')
time.sleep(1)
tn.write(b'terminal length 0\n\n')
time.sleep(1)
rackreply = tn.expect([],timeout=1)[2].decode().strip()
tn.write(b'show configuration\n\n')
rackreplyipst = tn.expect([],timeout=60)[2].decode().strip()
# print(rackreplyipst)
configfiletmp = '/python/cgi-bin/tmpconfig/' + verno + '/' + 'IPST' + '.txt'
configtmp = open(configfiletmp, 'w')
configtmp.write(rackreplyipst)
configtmp.close
time.sleep(1)
configtmp = open(configfiletmp, 'r')
# print(configtmpr)
# configtmptest = open(configfiletmp, 'r').read()
# print(configtmptest)
rackreplylines = configtmp.readlines()
# print(rackreplylines)
rackreplylinesnew = []
for line in rackreplylines:
if line == '\n':
pass
else:
rackreplylinesnew.append(line)
location = 1
i = 1
for line in rackreplylinesnew:
i = i + 1
if ipssig.match(line.strip()):
location = i - 2
print(location)
ipsconfiglst = rackreplylinesnew[location:]
ipsconfig = ''.join(str(e) for e in ipsconfiglst)
configfile = '/python/cgi-bin/tmpconfig/' + verno + '/' + 'IPS' + '.txt'
config = open(configfile, 'w')
config.write(ipsconfig)
config.close()
tn.close()
if __name__ == "__main__":
copyips('labtest', 'Cisc0123', 'BJRack03', 'v12')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/snow_tian/qytang_Python.git
git@gitee.com:snow_tian/qytang_Python.git
snow_tian
qytang_Python
qytang_Python
master

搜索帮助