Created
October 25, 2022 01:14
-
-
Save ThinGuy/694f1247e234c5e39150b78544703d9d to your computer and use it in GitHub Desktop.
BASH function to get ip forwarding status of all nics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ip-fwd-status() { find /sys/class/net -maxdepth 1 -type l ! -iname "*lo*" -printf "%P\n"|sort -uV|xargs -I@ -P1 sudo sysctl net.ipv4.conf.@.forwarding; };export -f ip-fwd-status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment