Sometimes when debugging network configuration, ping is one of the tools. But many iptables configuration drop all incoming request so here's how to temporary enable it.
iptables -A INPUT -p icmp -j ACCEPTAfter all the debugging, it's easy to delete the rule.
iptables -D INPUT -p icmp -j ACCEPT