我想使用python(fabric)进行一些配置以将cisco设备错误 该行具有无效的自动命令“ VLAN 100” 它不是关于VLAN 100的,所有的配置都不能正常运行,只有show命令可以正常工作。请帮助 错误:行的自动命令“ vlan 100”无效
enter code here
f = open ('BR')
for line in f:
print ("Connecting to " + (line))
clientIP = line
env.user =UserName
env.password =Password
IP=clientIP.replace("\n","")
env.host_string = IP
env.no_keys= True
run("conf t",shell=False)
run("vlan 100",shell=False)
r=run("show run | include hostname",shell=False)
hostname=r.split(" ")
print (hostname[1])