summaryrefslogtreecommitdiff
path: root/notify-fw
blob: 55bfde8349f4a43d95e7dd50e8f0d75039041c66 (plain)
1
2
3
4
5
6
7
8
#!/bin/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"