diff options
author | zachir <zachir@librem.one> | 2022-08-13 23:59:45 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-08-13 23:59:45 -0500 |
commit | b2abaeb7ec4b13cc3ede7d3ff62bf2b6b21502ea (patch) | |
tree | 6b2c6e17f40f226a68394bf3d73bcd7231043cf2 /notify-fw | |
parent | 84f94483b26203dc0ddf48bce9eae0053f6aa824 (diff) |
rename notify-iptables, as it doesn't just use iptables
Diffstat (limited to 'notify-fw')
-rwxr-xr-x | notify-fw | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/notify-fw b/notify-fw new file mode 100755 index 0000000..bce7938 --- /dev/null +++ b/notify-fw @@ -0,0 +1,8 @@ +#!/sbin/sh + +LIST="$(doas iptables -S)" +LIST6="$(doas ip6tables -S)" +LISTN="$(doas nft list ruleset)" +notify-send "IPTables rules" "IPTables Rules:\n$LIST" +notify-send "IP6Tables rules" "IP6Tables Rules:\n$LIST6" +notify-send "NFTables rules" "NFTables Rules:\n$LISTN" |