In one of the labs for learning Linux system administrator I have to do :
Now change the value by modifying
/etc/sysctl.conf
and force the system to activate this setting file without a reboot.Check that this worked properly.
here is what i must do:
Add the following line to
/etc/sysctl.conf
:net.ipv4.icmp_echo_ignore_all=1
and then do:
$ sysctl -p
how to do this and with which text editor?
sysctl -a|grep icmp_echo
– Scott Stensland Dec 04 '17 at 17:03