<html>
<head>
<base href="https://bugzilla.netfilter.org/" />
</head>
<body><span class="vcard"><a class="email" href="mailto:tad1073@gmail.com" title="Thomas <tad1073@gmail.com>"> <span class="fn">Thomas</span></a>
</span> changed
<a class="bz_bug_link
bz_status_NEW "
title="NEW - Error when atomically replacing rules with symbolic variables"
href="https://bugzilla.netfilter.org/show_bug.cgi?id=1358">bug 1358</a>
<br>
<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>What</th>
<th>Removed</th>
<th>Added</th>
</tr>
<tr>
<td style="text-align:right;">CC</td>
<td>
</td>
<td>tad1073@gmail.com
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - Error when atomically replacing rules with symbolic variables"
href="https://bugzilla.netfilter.org/show_bug.cgi?id=1358#c2">Comment # 2</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - Error when atomically replacing rules with symbolic variables"
href="https://bugzilla.netfilter.org/show_bug.cgi?id=1358">bug 1358</a>
from <span class="vcard"><a class="email" href="mailto:tad1073@gmail.com" title="Thomas <tad1073@gmail.com>"> <span class="fn">Thomas</span></a>
</span></b>
<pre>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
}
}</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are watching all bug changes.</li>
</ul>
</body>
</html>