0

我将设备配置保存在一个文件中,并使用它通过 vtysh 进行配置。

config,err := ioutil.ReadFile(filePath)
if err != nil {
    fmt.Println("Read err:")
    fmt.Println(err)
    os.Exit(1)
}
cmd := exec.Command("vtysh", "-c", "configure terminal", "-c",string(config))
out, err := cmd.CombinedOutput()
if err != nil {
    fmt.Println("vtysh err:")
    fmt.Println(err)
    return
} else {
    fmt.Println(out)
}

上面的代码给出了错误:

vtysh err:
exit status 1

文件内容:

vlan 1
    no shutdown
vlan 999
    no shutdown

如果我将文件内容粘贴到 vtysh(配置终端上下文)中,那么命令会执行。

我尝试运行的 vtysh 命令:

switch# configure terminal
switch(config)# vlan 89
switch(config-vlan)# no shut
switch(config-vlan)# vlan 90
switch(config-vlan)# no shut
4

0 回答 0