summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-06-27 16:20:06 -0600
committerKenny Ballou <kballou@devnulllabs.io>2019-06-27 16:20:06 -0600
commit1347a8fc407921a8f6d5162b403070cc3b407e52 (patch)
tree585857751534b715fecc939166aedd88a5b8cc06 /services
parent915377bda0535034d40f76d9563d39f8cf130be9 (diff)
downloadcfg.nix-1347a8fc407921a8f6d5162b403070cc3b407e52.tar.gz
cfg.nix-1347a8fc407921a8f6d5162b403070cc3b407e52.tar.xz
firewall: add counter to related forwarded connections
Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'services')
-rw-r--r--services/nftables-rules.nft2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/nftables-rules.nft b/services/nftables-rules.nft
index abb138f..75fefdb 100644
--- a/services/nftables-rules.nft
+++ b/services/nftables-rules.nft
@@ -15,7 +15,7 @@ table inet filter {
chain forward {
type filter hook forward priority 0; policy drop;
- ct state established,related accept
+ ct state established,related counter accept
counter
}