suricata: Swith to "16" as repeat-mark and repeat-mask.

Marks "1-3" are used for marking source-natted packets on the
interfaces and 4 up to 6 for TOS and QOS. The mark "32" is used by IPsec.

See commit: f5ad510e3c

Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
This commit is contained in:
Stefan Schantl
2019-02-18 10:01:47 +01:00
parent 77c07352a5
commit 20b4c4d863
2 changed files with 4 additions and 4 deletions

View File

@@ -117,8 +117,8 @@ logging:
nfq:
mode: repeat
repeat-mark: 2
repeat-mask: 2
repeat-mark: 16
repeat-mask: 16
# bypass-mark: 1
# bypass-mask: 1
# route-queue: 2

View File

@@ -29,8 +29,8 @@ NFQ_OPTS="--queue-bypass "
network_zones=( red green blue orange )
# Mark and Mask options.
MARK="0x2"
MASK="0x2"
MARK="0x16"
MASK="0x16"
# PID file of suricata.
PID_FILE="/var/run/suricata.pid"