使用ansible-playbook ping主机
时间: 2023-07-11 07:14:03 浏览: 159
可以使用以下的 Ansible Playbook 来 ping 主机:
```yaml
- hosts: your_host
tasks:
- name: Ping the host
ping:
```
请将 `your_host` 替换为您要 ping 的主机名或 IP 地址。
您可以将此 Playbook 保存为 `ping.yml` 文件,并使用以下命令运行:
```
ansible-playbook ping.yml
```
如果一切正常,您应该会看到类似以下的输出:
```
PLAY [your_host] **************************************************************************************************
TASK [Gathering Facts] **********************************************************************************************
ok: [your_host]
TASK [Ping the host] ************************************************************************************************
ok: [your_host]
PLAY RECAP **********************************************************************************************************
your_host : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
```
其中,`ok=2` 表示成功执行了两个任务(`Gathering Facts` 和 `Ping the host`),`failed=0` 表示没有失败的任务。
阅读全文