admin:network:icmp

ICMP (ping)

Ping can be used to see if a route to the target system exists. The ICMP protocol can be leveraged to get an answer so you know the remote system is actually powered on.

from specific source IP ping -S 127.0.0.1 tilde.fun
from primary IP of interface ping -S eth0 tilde.fun

This should never be done as security by obscurity isn't actually security1. Pinging hosts is a low-tech way to debug network problems and you're definitely not doing yourself or others2 any favors by disabling it.

  • Last modified: 2022-03-04 10:36