在 nftables 中添加规则时如何指定子网掩码?

How do I specify a subnet mask when adding a rule in nftables?

nftables添加规则时如何指定子网掩码?

紧跟指定 IP 地址的斜杠会导致语法错误。

nft add rule ip filter input 0.0.0.0/24 drop

结果

Error: syntax error, unexpected /

(OS: Debian 克星: nftables v0.9.0)

您的语法不太正确。您输入后缺少"ip saddr"。

nft add rule ip filter input ip saddr 0.0.0.0/24 drop