ping-disable 420 B

1234567891011
  1. #!/bin/sh
  2. # Disable ping reply Permanently
  3. # You can permanently disable the ping reply using the following method.
  4. # Step 1: Edit the sysctl.conf file and add the following line.
  5. # net.ipv4.icmp_echo_ignore_all = 1
  6. # Step 2: Execute sysctl -p to enforce this setting immediately.
  7. # sysctl -p
  8. # The above command loads the sysctl settings from the sysctl.conf file.
  9. echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_all