> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/ansible/ansible-test-connection.md).

# Ansible Test Connection

We can use `ping` module of Ansible to test whether or not Ansible is able to log onto the configured server(s).

```bash
ansible all -m ping
```

This will ping every server.

***Source:*** [***Ping Module - Ansible Documentation***](https://docs.ansible.com/ansible/2.3/ping_module.html)
