I have two computers, let's call them A (192.168.0.10) and B (192.168.0.11). I want A to ping B. However, A cannot ping B unless B pings A first.
# computer A
$ ping 192.168.0.11
# result: Destination Host Unreachable
# computer B
$ ping 192.168.0.10
# result: works
# 64 bytes from 192.168.0.10: icmp_seq=20 ttl=64 time=1.76 ms
# computer A (after computer B pinged A)
$ ping 192.168.0.11
# result: works
# 64 bytes from 192.168.0.11: icmp_seq=1 ttl=64 time=2.65 ms
Do you have any idea what happens? Because of this behavior I cannot ssh
the computer before B pinged for example.
This happens in my WLAN.