From 3fdaf170d5381de1942cba982f071167046490fd Mon Sep 17 00:00:00 2001 From: James Antill Date: Mon, 1 Jun 2026 18:43:59 -0400 Subject: [PATCH] nftables: Use the config. table names in staging. Signed-off-by: James Antill --- roles/base/templates/nftables/_nft_accept_monitoring | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/base/templates/nftables/_nft_accept_monitoring b/roles/base/templates/nftables/_nft_accept_monitoring index 0a64adaa07..7d28698920 100644 --- a/roles/base/templates/nftables/_nft_accept_monitoring +++ b/roles/base/templates/nftables/_nft_accept_monitoring @@ -19,6 +19,6 @@ add rule {{_tn}} INPUT tcp dport 10051 counter accept add rule {{_tn}} INPUT ip saddr 10.3.163.198 tcp dport 10050 counter accept {% else %} # zabbix01.stg -add rule ip filter INPUT tcp dport 10051 counter accept -add rule ip filter INPUT ip saddr 10.16.166.61 tcp dport 10050 counter accept +add rule {{_tn}} INPUT tcp dport 10051 counter accept +add rule {{_tn}} INPUT ip saddr 10.16.166.61 tcp dport 10050 counter accept {% endif %}