From 033b610ec91096a5791c90761df1289fd33280e6 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 29 Jan 2018 13:44:57 +0100 Subject: sys/linux: improve netfilter descriptions Put the underflow entry at the end. Entries must end on an unconditional, non-goto entry, otherwise fallthrough from the last entry is invalid. Add arp tables support. Split unspec matches/targets to unspec and inet. Reset ipv6 and arp tables in executor. Fix number of counters in tables. Plus a bunch of assorted fixes for matches/targets. --- sys/linux/init.go | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/linux/init.go') diff --git a/sys/linux/init.go b/sys/linux/init.go index 17c3a7efb..7c35d08ac 100644 --- a/sys/linux/init.go +++ b/sys/linux/init.go @@ -51,6 +51,7 @@ func initTarget(target *prog.Target) { "alg_blkcipher_name": arch.generateAlgBlkcipherhName, "ipt_replace": arch.generateIptables, "ip6t_replace": arch.generateIptables, + "arpt_replace": arch.generateArptables, } target.StringDictionary = stringDictionary -- cgit mrf-deployment