diff options
author | zachir <zachir@librem.one> | 2022-08-12 04:30:51 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-08-12 04:30:51 -0500 |
commit | c4d96716c05c41a3b18f2326cb588cd19246da5f (patch) | |
tree | aa6b16c2e89ee63d37eb05e38577ec0b0bddea59 /notify-iptables |
initial commit
Diffstat (limited to 'notify-iptables')
-rwxr-xr-x | notify-iptables | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/notify-iptables b/notify-iptables new file mode 100755 index 0000000..bce7938 --- /dev/null +++ b/notify-iptables @@ -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" |