Displaying 2 results from an estimated 2 matches for "userspacesize".
2011 Jun 15
2
[Bug 724] New: Iptables doesn't delete rules matching if target is RATEEST - patch attached
...t_info is used only by kernel:
struct xt_rateest_target_info {
char name[IFNAMSIZ];
__s8 interval;
__u8 ewma_log;
/* Used internally by the kernel */
struct xt_rateest *est __attribute__((aligned(8)));
};
but in struct xtables_target .size and .userspacesize are equals.
Simply correcting this solved the problem.
Here is the diff:
--- iptables-1.4.11.1/extensions/libxt_RATEEST.c 2011-06-08
15:26:17.000000000 +0200
+++ iptables-1.4.11.1-patched/extensions/libxt_RATEEST.c 2011-06-15
02:27:17.021704678 +0200
@@ -197,7 +197,7 @@
.name...
2014 Jan 09
3
[Bug 884] New: the rule of TEE target with '--oif' option cannot be deleted.
...rity: minor
Priority: P5
Component: iptables
AssignedTo: netfilter-buglog at lists.netfilter.org
ReportedBy: fryasu at yahoo.co.jp
Estimated Hours: 0.0
Created attachment 432
--> https://bugzilla.netfilter.org/attachment.cgi?id=432
correction of the 'userspacesize' member in TEE extension module.
The rule having TEE target with '--oif' option cannot be deleted by iptables
command.
$ iptables -I INPUT -i foo -j TEE --gateway x.x.x.x --oif bar
$ iptables -D INPUT -i foo -j TEE --gateway x.x.x.x --oif bar
iptables: No chain/target/match by t...