Make Linux ignore a ping
Sometimes it can be useful to hide a Linux machine a bit. These commands will force your linux box to ignore a ping request.
To turn answers to icmp_echos off, as root type:
echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_all
and to turn it on again type:
echo 0 > /proc/sys/net/ipv4/icmp_echo_ignore_all










ramarajan said on November 18, 2011
thanks……:)