tasks: - name: get config cli_command: command: get config register: result1 ignore_errors: True 回显为--- more --- 则一直执行空格 ,直到回显为> 则返回变量到result1 中,要用cli_commond模块
时间: 2024-02-10 20:10:41 浏览: 200
μCOS-II中OS_TASK.C源码中文注释版
5星 · 资源好评率100%
如果您希望在 Ansible 中使用 `cli_command` 模块来执行命令并获取输出结果,同时在遇到 `--- more ---` 提示时自动执行空格直到回显为 `>` 字符,您可以尝试以下代码:
```
- name: execute get config command on remote host
hosts: myswitch
tasks:
- name: get config
cli_command:
command_string: get config
prompt: "> "
answer: " "
register: result1
ignore_errors: True
```
在这个例子中,我们使用 `cli_command` 模块来执行 `get config` 命令,并使用 `prompt` 选项指定了命令行提示符为 `>` 字符。由于命令的输出可能会包含 `--- more ---` 字符串,我们在 `cli_command` 模块中使用 `ignore_errors: True` 来忽略错误。接下来,我们使用 `answer` 选项指定了答案为一个空格字符,这样当遇到 `--- more ---` 提示时,Ansible 就会自动执行空格字符,直到回显为 `>` 字符。最后,我们将输出结果保存在 `result1` 变量中。
请注意,`cli_command` 模块需要在目标设备上安装支持 CLI 的软件,并且需要指定正确的登录凭据,比如用户名和密码。另外,某些网络设备可能需要使用特定的协议来连接,比如 SSH 或 Telnet。您需要根据实际情况来选择正确的协议。
阅读全文