说明
通常使用NimbleText工具生成相应的脚本,然后使用Notepad++保存脚本。
NimbleText:用于批量生成命令行脚本。官网链接:http://nimbletext.com/
Notepad++:文本编辑器,保存配置脚本,保存成.txt格式,编码为“UTF-8编码”。官网链接:https://notepad-plus-plus.org/
NimbleText的脚本编辑举例
NimbleText帮助文档:
https://nimbletext.com/Help/Keywords
https://nimbletext.com/help
NimbleText的界面分成三个部分:数据,模板,结果,NimbleText就是将数据和模板结合生成对应的结果。
1.批量生成地址对象,并将其加入地址对象组
$EACH
edit "$0"
set type fqdn
set allow-routing enable
set fqdn "$0"
next
$ONCEend
config firewall addrgrp
edit "Microsoft"
set member$each "$0"$ONCE
set allow-routing enable
next
end