<html>
<head>
<base href="https://bugzilla.netfilter.org/" />
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - iptables-nft fails to check / delete rules in raw table"
href="https://bugzilla.netfilter.org/show_bug.cgi?id=1422#c1">Comment # 1</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - iptables-nft fails to check / delete rules in raw table"
href="https://bugzilla.netfilter.org/show_bug.cgi?id=1422">bug 1422</a>
from <span class="vcard"><a class="email" href="mailto:champetier.etienne@gmail.com" title="Etienne Champetier <champetier.etienne@gmail.com>"> <span class="fn">Etienne Champetier</span></a>
</span></b>
<pre>
Here the nft output
# nft -s list ruleset
table ip raw {
chain PREROUTING {
type filter hook prerouting priority raw; policy accept;
}
chain OUTPUT {
type filter hook output priority raw; policy accept;
meta l4proto udp ip daddr 169.254.25.10 udp dport 53 counter # NOTRACK
}
}
# nft add rule raw OUTPUT tcp dport 42 notrack
# nft -s list ruleset
table ip raw {
chain PREROUTING {
type filter hook prerouting priority raw; policy accept;
}
chain OUTPUT {
type filter hook output priority raw; policy accept;
meta l4proto udp ip daddr 169.254.25.10 udp dport 53 counter # NOTRACK
tcp dport 42 notrack
}
}
So the rule inserted by iptables-nft is wrong it seems</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are watching all bug changes.</li>
</ul>
</body>
</html>