Skip to content

Instantly share code, notes, and snippets.

@ThinGuy
Created October 25, 2022 01:14
Show Gist options
  • Select an option

  • Save ThinGuy/694f1247e234c5e39150b78544703d9d to your computer and use it in GitHub Desktop.

Select an option

Save ThinGuy/694f1247e234c5e39150b78544703d9d to your computer and use it in GitHub Desktop.
BASH function to get ip forwarding status of all nics
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