nftables - corosync open too wide

ze42

New Member
Feb 16, 2026
12
0
1
Hello,

I'm evaluating how to implement some network security around proxmox.

Using iptables framework, I manage to get :

Code:
-A PVEFW-HOST-IN -s 172.16.101.2/32 -d 172.16.101.1/32 -p udp -m udp --dport 5404:5405 -j RETURN
-A PVEFW-HOST-OUT -s 172.16.101.1/32 -d 172.16.101.2/32 -p udp -m udp --dport 5404:5405 -j RETURN

But when trying to set it with nftables, I get...

Code:
                udp dport 5405-5412 accept

1. It does not filter any source, unlike iptables that properly filter out sources
2. Is applied **before** any custom rules, unlike iptables which would allow other DC level rules to apply first