Example of using Ansible for checking online calls from many of servers from command line: Ansible check online calls from few servers through ssh:docs: https://docs.ansible.com/ansible/latest/installation_guide/intro_configuration.html Control node : apt update -yapt install ansible -y Create /etc/ansible/hosts file all: hosts: 123.123.123.123: 123.123.123.124: 123.123.123.125: 123.123.123.126: Check connecting to hosts: ansible all -m ping You may see error […]