Skip to content

Instantly share code, notes, and snippets.

@frayos
Created June 27, 2018 12:58
Show Gist options
  • Save frayos/cabb5a4b18a9b96ecaec9ab947fb117d to your computer and use it in GitHub Desktop.
Save frayos/cabb5a4b18a9b96ecaec9ab947fb117d to your computer and use it in GitHub Desktop.
Keep alive machine settings
#!/bin/sh
for i in `ls /proc/sys/net/core/`;
do
echo ------;
echo $i;
cat /proc/sys/net/core/$i;
echo ----;
done;
for i in `ls /proc/sys/net/ipv4/`;
do
echo ------;
echo $i;
cat /proc/sys/net/ipv4/$i;
echo ----;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment