<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Ansible ping module returns wrong results. Pong even if host is down in Controllers</title>
    <link>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4104673#M2047</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;DIV class="section"&gt;&lt;UL&gt;&lt;LI&gt;Ping is used to verify the ability to login and that a usable Python is configured.&lt;/LI&gt;&lt;LI&gt;This is NOT ICMP ping, this is just a trivial test module that requires Python on the remote-node.&lt;/LI&gt;&lt;LI&gt;For Windows targets, use the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.ansible.com/ansible/latest/modules/win_ping_module.html#win-ping-module" target="_blank" rel="noopener"&gt;&lt;SPAN class="std std-ref"&gt;win_ping&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;module instead.&lt;/LI&gt;&lt;LI&gt;For Network targets, use the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.ansible.com/ansible/latest/modules/net_ping_module.html#net-ping-module" target="_blank" rel="noopener"&gt;&lt;SPAN class="std std-ref"&gt;net_ping&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;module instead.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Regarding ansible_connection see all the connection types -&amp;nbsp;&lt;A href="https://docs.ansible.com/ansible/latest/plugins/connection.html" target="_blank" rel="noopener"&gt;https://docs.ansible.com/ansible/latest/plugins/connection.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;ansible_connection=local with run the ping on the localhost.&lt;/P&gt;&lt;P&gt;ansible_connection=ssh will target the host in the inventory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[all:vars]
# these defaults can be overridden for any group in the [group:vars] section
&lt;STRONG&gt;ansible_connection=ssh&lt;/STRONG&gt;
ansible_network_os=ios

[hosts]
TEST-HOST ansible_host=10.10.10.4&lt;/PRE&gt;&lt;P&gt;I don't have 10.10.10.4 on my network&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;neteng@neteng-dev:~$ ansible -i hosts all -m ping
TEST-HOST | UNREACHABLE! =&amp;gt; {
    "changed": false,
    "msg": "Failed to connect to the host via ssh: ssh: connect to host 10.10.10.4 port 22: No route to host",
    "unreachable": true
}
neteng@neteng-dev:~$&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Changed ansible_connection from ssh to local&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;neteng@neteng-dev:~$ ansible -i hosts all -m ping
TEST-HOST | SUCCESS =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "ping": "pong"
}
neteng@neteng-dev:~$&lt;/PRE&gt;&lt;P&gt;Hope this helps&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 17 Jun 2020 06:32:35 GMT</pubDate>
    <dc:creator>omz</dc:creator>
    <dc:date>2020-06-17T06:32:35Z</dc:date>
    <item>
      <title>Ansible ping module returns wrong results. Pong even if host is down</title>
      <link>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4103926#M2046</link>
      <description>&lt;P&gt;Hello there,&lt;/P&gt;&lt;P&gt;this is my very first post here in the Devnet Community. Hope you are all well..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am just getting my feet wet with ansible, and keep running into all sorts of issues.&lt;/P&gt;&lt;P&gt;Some of them I could fix myself but thisone really gets me..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a&amp;nbsp;ansible 2.9.9 running on&amp;nbsp;Ubuntu 16.04.6 LTS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My host file is rather simple:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;[all:vars]&lt;BR /&gt;# these defaults can be overridden for any group in the [group:vars] section&lt;BR /&gt;ansible_connection=local&lt;BR /&gt;ansible_network_os=ios&lt;/P&gt;&lt;P&gt;[hosts]&lt;BR /&gt;TEST-HOST ansible_host=10.10.10.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i now try to ping this host group it seems to work:&lt;/P&gt;&lt;P&gt;$ ansible hosts -m ping&lt;BR /&gt;TEST-HOST | SUCCESS =&amp;gt; {&lt;BR /&gt;"ansible_facts": {&lt;BR /&gt;"discovered_interpreter_python": "/usr/bin/python"&lt;BR /&gt;},&lt;BR /&gt;"changed": false,&lt;BR /&gt;"ping": "pong"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I thought - sweet this is working.. But than i wanted to test further and changed the IP of the test host to somehtign that will NOT respond. i.e. 5.5.5.5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[all:vars]&lt;BR /&gt;# these defaults can be overridden for any group in the [group:vars] section&lt;BR /&gt;ansible_connection=local&lt;BR /&gt;ansible_network_os=ios&lt;/P&gt;&lt;P&gt;[hosts]&lt;BR /&gt;TEST-HOST ansible_host=5.5.5.5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I try to ping 5.5.5.5 from the Ansible server it fails&lt;/P&gt;&lt;P&gt;ping 5.5.5.5&lt;BR /&gt;PING 5.5.5.5 (5.5.5.5) 56(84) bytes of data.&lt;BR /&gt;^C&lt;BR /&gt;--- 5.5.5.5 ping statistics ---&lt;BR /&gt;5 packets transmitted, 0 received, 100% packet loss, time 4031ms&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But using the ansible ping module this still returns pong &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;$ ansible hosts -m ping&lt;BR /&gt;TEST-HOST | SUCCESS =&amp;gt; {&lt;BR /&gt;"ansible_facts": {&lt;BR /&gt;"discovered_interpreter_python": "/usr/bin/python"&lt;BR /&gt;},&lt;BR /&gt;"changed": false,&lt;BR /&gt;"ping": "pong"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried messing with the connection types, i.e. setting it to local. But that doesnt help.&lt;/P&gt;&lt;P&gt;If I remove the connection type ping doesnt work at all - even againt the correct IP address..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you guys push me in the right direction?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot and greetings from Munich&lt;/P&gt;&lt;P&gt;Kibo&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 07:53:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4103926#M2046</guid>
      <dc:creator>Stephan Grohmann</dc:creator>
      <dc:date>2020-06-16T07:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Ansible ping module returns wrong results. Pong even if host is down</title>
      <link>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4104673#M2047</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;DIV class="section"&gt;&lt;UL&gt;&lt;LI&gt;Ping is used to verify the ability to login and that a usable Python is configured.&lt;/LI&gt;&lt;LI&gt;This is NOT ICMP ping, this is just a trivial test module that requires Python on the remote-node.&lt;/LI&gt;&lt;LI&gt;For Windows targets, use the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.ansible.com/ansible/latest/modules/win_ping_module.html#win-ping-module" target="_blank" rel="noopener"&gt;&lt;SPAN class="std std-ref"&gt;win_ping&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;module instead.&lt;/LI&gt;&lt;LI&gt;For Network targets, use the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.ansible.com/ansible/latest/modules/net_ping_module.html#net-ping-module" target="_blank" rel="noopener"&gt;&lt;SPAN class="std std-ref"&gt;net_ping&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;module instead.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Regarding ansible_connection see all the connection types -&amp;nbsp;&lt;A href="https://docs.ansible.com/ansible/latest/plugins/connection.html" target="_blank" rel="noopener"&gt;https://docs.ansible.com/ansible/latest/plugins/connection.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;ansible_connection=local with run the ping on the localhost.&lt;/P&gt;&lt;P&gt;ansible_connection=ssh will target the host in the inventory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[all:vars]
# these defaults can be overridden for any group in the [group:vars] section
&lt;STRONG&gt;ansible_connection=ssh&lt;/STRONG&gt;
ansible_network_os=ios

[hosts]
TEST-HOST ansible_host=10.10.10.4&lt;/PRE&gt;&lt;P&gt;I don't have 10.10.10.4 on my network&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;neteng@neteng-dev:~$ ansible -i hosts all -m ping
TEST-HOST | UNREACHABLE! =&amp;gt; {
    "changed": false,
    "msg": "Failed to connect to the host via ssh: ssh: connect to host 10.10.10.4 port 22: No route to host",
    "unreachable": true
}
neteng@neteng-dev:~$&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Changed ansible_connection from ssh to local&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;neteng@neteng-dev:~$ ansible -i hosts all -m ping
TEST-HOST | SUCCESS =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "ping": "pong"
}
neteng@neteng-dev:~$&lt;/PRE&gt;&lt;P&gt;Hope this helps&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 17 Jun 2020 06:32:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4104673#M2047</guid>
      <dc:creator>omz</dc:creator>
      <dc:date>2020-06-17T06:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Ansible ping module returns wrong results. Pong even if host is down</title>
      <link>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4105466#M2048</link>
      <description>&lt;P&gt;Thanks a lot for your feedback. That did already help me understand this a lot better..&lt;/P&gt;&lt;P&gt;I still run into problems though...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried changing the connection to ssh before - but when I did so, I got this SSH error message when trying to use the ping module.&amp;nbsp;$ ansible hosts -m ping&lt;BR /&gt;TEST-HOST | UNREACHABLE! =&amp;gt; {&lt;BR /&gt;"changed": false,&lt;BR /&gt;"msg": "Failed to connect to the host via ssh: ssh: connect to host 10.10.10.4 port 22: Connection timed out",&lt;BR /&gt;"unreachable": true&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to use a net_ping I get this error&lt;/P&gt;&lt;P&gt;ansible hosts -m net_ping&lt;BR /&gt;TEST-HOST | FAILED! =&amp;gt; {&lt;BR /&gt;"changed": false,&lt;BR /&gt;"msg": "Connection type ssh is not valid for this module"&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot again&lt;/P&gt;&lt;P&gt;Kibo&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2020 08:36:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4105466#M2048</guid>
      <dc:creator>Stephan Grohmann</dc:creator>
      <dc:date>2020-06-18T08:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Ansible ping module returns wrong results. Pong even if host is down</title>
      <link>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4106714#M2049</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Example hosts file with connection local. Test-Host is a reachable Cisco router, Ubuntu is a reachable VM and NoHost doesn't exist on the network. Both Ubuntu and Cisco have ssh enabled and able to ssh with a valid user from cli or putty.&lt;/P&gt;&lt;PRE&gt;[all:vars]
# these defaults can be overridden for any group in the [group:vars] section
ansible_connection=&lt;STRONG&gt;local&lt;/STRONG&gt;
ansible_network_os=ios

[hosts]
TEST-HOST ansible_host=192.168.106.142
Ubuntu ansible_host=192.168.106.152
NoHost ansible_host=192.168.200.200&lt;/PRE&gt;&lt;P&gt;Result - all hosts ping:pong. Even NoHost because the connection is local.&lt;/P&gt;&lt;PRE&gt;neteng@neteng-dev:~$ ansible -i hosts all -m ping
TEST-HOST | SUCCESS =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "ping": "pong"
}
NoHost | SUCCESS =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "ping": "pong"
}
Ubuntu | SUCCESS =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "ping": "pong"
}&lt;/PRE&gt;&lt;P&gt;Result with connection ssh. All come up Unreachable ... because Ansible is using the currently logged in user "neteng" to connect that is not a valid user configured on the devices.&lt;/P&gt;&lt;PRE&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;neteng&lt;/STRONG&gt;&lt;/FONT&gt;@neteng-dev:~$ ansible -i hosts all -m ping
&lt;FONT color="#993300"&gt;Ubuntu | UNREACHABLE!&lt;/FONT&gt; =&amp;gt; {
    "changed": false,
    "msg": "Failed to connect to the host via ssh: &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;neteng&lt;/FONT&gt;@192.168.106.152: Permission denied&lt;/STRONG&gt; (publickey,password).",
    "unreachable": true
}
&lt;FONT color="#993300"&gt;TEST-HOST | UNREACHABLE!&lt;/FONT&gt; =&amp;gt; {
    "changed": false,
    "msg": "&lt;STRONG&gt;Failed to connect to the host via ssh&lt;/STRONG&gt;: Warning: Permanently added '192.168.106.142' (RSA) to the list of known hosts.\r\n&lt;STRONG&gt;neteng@192.168.106.142: Permission denied&lt;/STRONG&gt; (publickey,keyboard-interactive,password).",
    "unreachable": true
}
&lt;FONT color="#993300"&gt;NoHost | UNREACHABLE!&lt;/FONT&gt; =&amp;gt; {
    "changed": false,
    "msg": "Failed to connect to the host via ssh: ssh: connect to host 192.168.200.200 port 22: &lt;STRONG&gt;Connection timed out&lt;/STRONG&gt;",
    "unreachable": true
}&lt;/PRE&gt;&lt;P&gt;hosts file with username and password. I have different users .. if the same user has access to both devices, username and password can be given only once under&amp;nbsp;[all:vars]&lt;/P&gt;&lt;PRE&gt;[all:vars]&lt;BR /&gt;ansible_connection=ssh&lt;BR /&gt;[hosts]
TEST-HOST ansible_host=192.168.106.142 &lt;STRONG&gt;ansible_user=admin ansible_ssh_pass=cisco&lt;/STRONG&gt;
Ubuntu ansible_host=192.168.106.152 &lt;STRONG&gt;ansible_user=neteng ansible_ssh_pass=neteng&lt;/STRONG&gt;
NoHost ansible_host=192.168.200.200&lt;/PRE&gt;&lt;P&gt;Result - Ubuntu is Success as it can ssh with a valid user. Cisco is now Failed vs Unreachable earlier. Cisco router dint recognise bash command -&amp;nbsp;&lt;FONT color="#993300"&gt;/bin/sh -c '/usr/bin/python&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;ansible -i hosts all -m ping

&lt;FONT color="#993300"&gt;Ubuntu | SUCCESS&lt;/FONT&gt; =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "ping": "pong"
}
&lt;FONT color="#993300"&gt;TEST-HOST | FAILED!&lt;/FONT&gt; =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "module_stderr": "Shared connection to 192.168.106.142 closed.\r\n",
    "module_stdout": "\r\nLine has invalid autocommand \"&lt;FONT color="#993300"&gt;/bin/sh -c '/usr/bin/python&lt;/FONT&gt; '\"'\"'Line has invalid autocommand \"/bin/sh -c '\"'\"'\"'\"'\"'\"'\"'\"'( umask 77 &amp;amp;&amp;amp; mkdir -p \"` echo Line has invalid autocommand \"/bin/sh -c '\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'\"'echo ~admin &amp;amp;&amp;amp; sleep 0'\"'\"'\"'\"'\"'\"'\"'\"'\"",
    "msg": "MODULE FAILURE\nSee stdout/stderr for the exact error",
    "rc": 0
}
&lt;FONT color="#993300"&gt;NoHost | UNREACHABLE!&lt;/FONT&gt; =&amp;gt; {
    "changed": false,
    "msg": "Failed to connect to the host via ssh: ssh: connect to host 192.168.200.200 port 22: Connection timed out",
    "unreachable": true
}&lt;/PRE&gt;&lt;P&gt;with &lt;STRONG&gt;connection - ssh&lt;/STRONG&gt; and using &lt;STRONG&gt;net_ping&lt;/STRONG&gt;. All failed because ssh is not valid for net_ping module we need to use local&lt;/P&gt;&lt;PRE&gt;ansible -i hosts all -m net_ping
NoHost | FAILED! =&amp;gt; {
    "changed": false,
    "msg": "Connection type ssh is not valid for this module"
}
TEST-HOST | FAILED! =&amp;gt; {
    "changed": false,
    "msg": "Connection type ssh is not valid for this module"
}
Ubuntu | FAILED! =&amp;gt; {
    "changed": false,
    "msg": "Connection type ssh is not valid for this module"
}&lt;/PRE&gt;&lt;P&gt;with&lt;STRONG&gt; connection - local&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;Ubuntu | FAILED! =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "msg": "missing required arguments: dest"
}
TEST-HOST | FAILED! =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "msg": "missing required arguments: dest"&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;net_ping&lt;/STRONG&gt; module for network devices requires an additional parameter &lt;STRONG&gt;dest=192.168.106.142&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;For multiple hosts we can give dest like this&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;net_ping:
    dest: 10.10.10.10&lt;BR /&gt;&lt;BR /&gt;more info - &lt;A href="https://docs.ansible.com/ansible/latest/modules/net_ping_module.html" target="_blank"&gt;https://docs.ansible.com/ansible/latest/modules/net_ping_module.html&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;For my one host, I can pass an additional argument to the module from cli using &lt;STRONG&gt;-a dest=192.168.106.142&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;ansible -i hosts TEST-HOST &lt;STRONG&gt;-m net_ping -a dest=192.168.106.142&lt;/STRONG&gt;&lt;BR /&gt;
TEST-HOST | SUCCESS =&amp;gt; {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    },
    "changed": false,
    "commands": [
        "ping 192.168.106.142"
    ],
    "packet_loss": "0%",
    "packets_rx": 5,
    "packets_tx": 5,
    "rtt": {
        "avg": 1,
        "max": 1,
        "min": 1
    }
}&lt;/PRE&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Please dont forget to hit the Helpful button for any helpful posts.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jun 2020 11:44:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4106714#M2049</guid>
      <dc:creator>omz</dc:creator>
      <dc:date>2020-06-20T11:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Ansible ping module returns wrong results. Pong even if host is down</title>
      <link>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4107165#M2050</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/513338"&gt;@omz&lt;/a&gt;&amp;nbsp;for your detailed feedback.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it just me - Or should this ping module be much more simple.&lt;/P&gt;&lt;P&gt;There should be an easy way to just ping all devince in the hosts file and see if they are up...&lt;/P&gt;&lt;P&gt;Anyway - I am happy to see it's not just me... Your results are similar to my findings/experience.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bottom line - this is all very confusing - being new to the world of ansible &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a bunch.&lt;/P&gt;&lt;P&gt;Kibo&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 08:40:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/controllers/ansible-ping-module-returns-wrong-results-pong-even-if-host-is/m-p/4107165#M2050</guid>
      <dc:creator>Stephan Grohmann</dc:creator>
      <dc:date>2020-06-22T08:40:53Z</dc:date>
    </item>
  </channel>
</rss>

