[Bug 1358] Error when atomically replacing rules with symbolic variables
bugzilla-daemon at netfilter.org
bugzilla-daemon at netfilter.org
Mon Oct 7 07:14:48 CEST 2019
https://bugzilla.netfilter.org/show_bug.cgi?id=1358
Thomas <tad1073 at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tad1073 at gmail.com
--- Comment #2 from Thomas <tad1073 at gmail.com> ---
Your rule is outside of the closing brackets.
"#!/sbin/nft -f
define ifs = { lo }
table inet filter {
chain input {
type filter hook input priority 0; policy drop;
}
}
inet filter input iifname $ifs accept"
I should be
"#!/sbin/nft -f
define ifs = { lo }
table inet filter {
chain input {
type filter hook input priority 0; policy drop;
inet filter input iifname $ifs accept
}
}
--
You are receiving this mail because:
You are watching all bug changes.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.netfilter.org/pipermail/netfilter-buglog/attachments/20191007/f5954961/attachment.html>
More information about the netfilter-buglog
mailing list