diff options
Diffstat (limited to 'examples/var_service/fw/stat')
-rwxr-xr-x | examples/var_service/fw/stat | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/var_service/fw/stat b/examples/var_service/fw/stat new file mode 100755 index 000000000..08736ada8 --- /dev/null +++ b/examples/var_service/fw/stat | |||
@@ -0,0 +1,12 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | echo; echo "* Firewall:" | ||
4 | { | ||
5 | echo '---FILTER--'; | ||
6 | iptables -v -L -x -n; | ||
7 | echo '---NAT-----'; | ||
8 | iptables -t nat -v -L -x -n; | ||
9 | echo '---MANGLE--'; | ||
10 | iptables -t mangle -v -L -x -n; | ||
11 | } \ | ||
12 | | grep -v '^$' | grep -Fv 'bytes target' | $PAGER | ||