Jul 9th 23 
Python
24 minutes read (About 3664 words)
This is an article that was created 501 days ago, and the information may have evolved or changed.
对网络设备进行批量操作的几个脚本
netmiko基操
Read More
 Apr 16th 23 
H3C
16 minutes read (About 2450 words)
This is an article that was created 584 days ago, and the information may have evolved or changed.
一个使用nornir
框架编写的跑脚本工具。之前写过一版这个菜单式跑python脚本的工具,简直臃肿的不堪入目,后面发现需要添加改进功能真让我头大。了解nornir
后,一直就想把功能移植过来,现在搞的差不多了,分享一下
Read More
 May 13th 22 
H3C
10 minutes read (About 1427 words)
This is an article that was created 923 days ago, and the information may have evolved or changed.
- 针对上一版的脚本进行改进
- 增加嵌套一层 ‘ Try……finally: ’ ,代码执行末尾提示 “按任意键退出”
- 修改代码中预定义的登陆账号密码为 input 和 getpass 手动输入
- 修改文件当前目录为代码自动获取 os.getcwd()
- 修改执行完成后显示 “A log file is available in……” 记录log路径
- 想改多线程,threading 模块逻辑没搞清楚
Read More
 May 11th 22 
H3C
12 minutes read (About 1754 words)
This is an article that was created 925 days ago, and the information may have evolved or changed.
- Python 脚本 SSH 登陆华三设备,使用定义好的 display 脚本批量导出配置和一些设备状态
- Python 脚本 SSH 登陆华三设备,使用定义好的配置命令批量增加配置
- 主要使用的是 netmiko 这个模块里的 ConnectHandler 命令
- 单线程
- 脚本运行完成后输出 成功和失败的记录log
- ip_list.txt,cmd_list.txt,cmd_config_list.txt 格式简单,修改方便
- 未做多账号密码的 if 语句判断
- 肯定有冗余繁重的代码
Read More