我刚开始使用 netmiko 并遇到了一个脚本的问题。该脚本应该删除一个用户并创建另一个用户。我遇到的问题是在配置模式下确认我不知道如何处理它。
R1(config)#no username admin
This operation will remove all username related configurations with same name.Do you want to continue? [confirm]
谢谢你。
你会使用一个期望字符串。
output = net_connect.send_command(
command_string=command,
expect_string=r"Delete filename",
strip_prompt=False,
strip_command=False
)
output += net_connect.send_command(
command_string="\n",
expect_string=r"confirm",
strip_prompt=False,
strip_command=False