]> git.ipfire.org Git - ipfire-2.x.git/blob - config/suricata/suricata.yaml
suricata: Drop some commented stuff from configuration
[ipfire-2.x.git] / config / suricata / suricata.yaml
1 %YAML 1.1
2 ---
3
4 ##
5 ## IPFire specific configuration file - an untouched example configuration
6 ## can be found in suricata-example.yaml.
7 ##
8
9 vars:
10 address-groups:
11 # Include HOME_NET declaration from external file.
12 include: /var/ipfire/suricata/suricata-homenet.yaml
13
14 EXTERNAL_NET: "!$HOME_NET"
15 #EXTERNAL_NET: "any"
16
17 HTTP_SERVERS: "$HOME_NET"
18 SMTP_SERVERS: "$HOME_NET"
19 SQL_SERVERS: "$HOME_NET"
20 DNS_SERVERS: "$HOME_NET"
21 TELNET_SERVERS: "$HOME_NET"
22 AIM_SERVERS: "$EXTERNAL_NET"
23 DNP3_SERVER: "$HOME_NET"
24 DNP3_CLIENT: "$HOME_NET"
25 MODBUS_CLIENT: "$HOME_NET"
26 MODBUS_SERVER: "$HOME_NET"
27 ENIP_CLIENT: "$HOME_NET"
28 ENIP_SERVER: "$HOME_NET"
29
30 port-groups:
31 HTTP_PORTS: "80"
32 SHELLCODE_PORTS: "!80"
33 ORACLE_PORTS: 1521
34 SSH_PORTS: "[22,222]"
35 DNP3_PORTS: 20000
36 MODBUS_PORTS: 502
37 FILE_DATA_PORTS: "[$HTTP_PORTS,110,143]"
38 FTP_PORTS: 21
39
40 ##
41 ## Ruleset specific options.
42 ##
43 default-rule-path: /var/lib/suricata
44 rule-files:
45 # Include enabled ruleset files from external file.
46 include: /var/ipfire/suricata/suricata-used-rulefiles.yaml
47
48 classification-file: /var/lib/suricata/classification.config
49 reference-config-file: /var/lib/suricata/reference.config
50 threshold-file: /var/lib/suricata/threshold.config
51
52
53 ##
54 ## Logging options.
55 ##
56 default-log-dir: /var/log/suricata/
57
58 # global stats configuration
59 stats:
60 enabled: yes
61 # The interval field (in seconds) controls at what interval
62 # the loggers are invoked.
63 interval: 8
64
65 # Configure the type of alert (and other) logging you would like.
66 outputs:
67 # a line based alerts log similar to Snort's fast.log
68 - fast:
69 enabled: yes
70 filename: fast.log
71 append: yes
72 #filetype: regular # 'regular', 'unix_stream' or 'unix_dgram'
73
74 # Stats.log contains data from various counters of the suricata engine.
75 - stats:
76 enabled: yes
77 filename: stats.log
78 append: no # append to file (yes) or overwrite it (no)
79 totals: yes # stats for all threads merged together
80 threads: no # per thread stats
81 #null-values: yes # print counters that have value 0
82
83 logging:
84 # The default log level, can be overridden in an output section.
85 # Note that debug level logging will only be emitted if Suricata was
86 # compiled with the --enable-debug configure option.
87 #
88 # This value is overriden by the SC_LOG_LEVEL env var.
89 default-log-level: notice
90
91 # A regex to filter output. Can be overridden in an output section.
92 # Defaults to empty (no filter).
93 #
94 # This value is overriden by the SC_LOG_OP_FILTER env var.
95 default-output-filter:
96
97 # Define your logging outputs. If none are defined, or they are all
98 # disabled you will get the default - console output.
99 outputs:
100 - console:
101 enabled: no
102 # type: json
103 - file:
104 enabled: no
105 level: info
106 filename: /var/log/suricata/suricata.log
107 # type: json
108 - syslog:
109 enabled: yes
110 facility: local5
111 format: "[%i] <%d> -- "
112 # type: json
113
114 ##
115 ## Netfilter configuration
116 ##
117
118 nfq:
119 mode: repeat
120 repeat-mark: 16
121 repeat-mask: 16
122 # bypass-mark: 1
123 # bypass-mask: 1
124 # route-queue: 2
125 # batchcount: 20
126 fail-open: yes
127
128 ##
129 ## Step 5: App Layer Protocol Configuration
130 ##
131
132 # Configure the app-layer parsers. The protocols section details each
133 # protocol.
134 #
135 # The option "enabled" takes 3 values - "yes", "no", "detection-only".
136 # "yes" enables both detection and the parser, "no" disables both, and
137 # "detection-only" enables protocol detection only (parser disabled).
138 app-layer:
139 protocols:
140 tls:
141 enabled: yes
142 detection-ports:
143 dp: "[443,444,465,993,995]"
144
145 # Completely stop processing TLS/SSL session after the handshake
146 # completed. If bypass is enabled this will also trigger flow
147 # bypass. If disabled (the default), TLS/SSL session is still
148 # tracked for Heartbleed and other anomalies.
149 #no-reassemble: yes
150 dcerpc:
151 enabled: yes
152 ftp:
153 enabled: yes
154 ssh:
155 enabled: yes
156 smtp:
157 enabled: yes
158 # Configure SMTP-MIME Decoder
159 mime:
160 # Decode MIME messages from SMTP transactions
161 # (may be resource intensive)
162 # This field supercedes all others because it turns the entire
163 # process on or off
164 decode-mime: yes
165
166 # Decode MIME entity bodies (ie. base64, quoted-printable, etc.)
167 decode-base64: yes
168 decode-quoted-printable: yes
169
170 # Maximum bytes per header data value stored in the data structure
171 # (default is 2000)
172 header-value-depth: 2000
173
174 # Extract URLs and save in state data structure
175 extract-urls: yes
176 # Set to yes to compute the md5 of the mail body. You will then
177 # be able to journalize it.
178 body-md5: no
179 # Configure inspected-tracker for file_data keyword
180 inspected-tracker:
181 content-limit: 100000
182 content-inspect-min-size: 32768
183 content-inspect-window: 4096
184 imap:
185 enabled: yes
186 msn:
187 enabled: yes
188 smb:
189 enabled: yes
190 detection-ports:
191 dp: 139, 445
192 # smb2 detection is disabled internally inside the engine.
193 #smb2:
194 # enabled: yes
195 # Note: NFS parser depends on Rust support: pass --enable-rust
196 # to configure.
197 nfs:
198 enabled: no
199 dns:
200 # memcaps. Globally and per flow/state.
201 #global-memcap: 16mb
202 #state-memcap: 512kb
203
204 # How many unreplied DNS requests are considered a flood.
205 # If the limit is reached, app-layer-event:dns.flooded; will match.
206 #request-flood: 500
207
208 tcp:
209 enabled: yes
210 detection-ports:
211 dp: "[53,853]"
212 udp:
213 enabled: yes
214 detection-ports:
215 dp: "[53,853]"
216 http:
217 enabled: yes
218 # memcap: 64mb
219
220 # default-config: Used when no server-config matches
221 # personality: List of personalities used by default
222 # request-body-limit: Limit reassembly of request body for inspection
223 # by http_client_body & pcre /P option.
224 # response-body-limit: Limit reassembly of response body for inspection
225 # by file_data, http_server_body & pcre /Q option.
226 # double-decode-path: Double decode path section of the URI
227 # double-decode-query: Double decode query section of the URI
228 # response-body-decompress-layer-limit:
229 # Limit to how many layers of compression will be
230 # decompressed. Defaults to 2.
231 #
232 # server-config: List of server configurations to use if address matches
233 # address: List of ip addresses or networks for this block
234 # personalitiy: List of personalities used by this block
235 # request-body-limit: Limit reassembly of request body for inspection
236 # by http_client_body & pcre /P option.
237 # response-body-limit: Limit reassembly of response body for inspection
238 # by file_data, http_server_body & pcre /Q option.
239 # double-decode-path: Double decode path section of the URI
240 # double-decode-query: Double decode query section of the URI
241 #
242 # uri-include-all: Include all parts of the URI. By default the
243 # 'scheme', username/password, hostname and port
244 # are excluded. Setting this option to true adds
245 # all of them to the normalized uri as inspected
246 # by http_uri, urilen, pcre with /U and the other
247 # keywords that inspect the normalized uri.
248 # Note that this does not affect http_raw_uri.
249 # Also, note that including all was the default in
250 # 1.4 and 2.0beta1.
251 #
252 # meta-field-limit: Hard size limit for request and response size
253 # limits. Applies to request line and headers,
254 # response line and headers. Does not apply to
255 # request or response bodies. Default is 18k.
256 # If this limit is reached an event is raised.
257 #
258 # Currently Available Personalities:
259 # Minimal, Generic, IDS (default), IIS_4_0, IIS_5_0, IIS_5_1, IIS_6_0,
260 # IIS_7_0, IIS_7_5, Apache_2
261 libhtp:
262 default-config:
263 personality: IDS
264
265 # Can be specified in kb, mb, gb. Just a number indicates
266 # it's in bytes.
267 request-body-limit: 100kb
268 response-body-limit: 100kb
269
270 # inspection limits
271 request-body-minimal-inspect-size: 32kb
272 request-body-inspect-window: 4kb
273 response-body-minimal-inspect-size: 40kb
274 response-body-inspect-window: 16kb
275
276 # response body decompression (0 disables)
277 response-body-decompress-layer-limit: 2
278
279 # auto will use http-body-inline mode in IPS mode, yes or no set it statically
280 http-body-inline: auto
281
282 # Take a random value for inspection sizes around the specified value.
283 # This lower the risk of some evasion technics but could lead
284 # detection change between runs. It is set to 'yes' by default.
285 #randomize-inspection-sizes: yes
286 # If randomize-inspection-sizes is active, the value of various
287 # inspection size will be choosen in the [1 - range%, 1 + range%]
288 # range
289 # Default value of randomize-inspection-range is 10.
290 #randomize-inspection-range: 10
291
292 # decoding
293 double-decode-path: no
294 double-decode-query: no
295
296 server-config:
297
298 #- apache:
299 # address: [192.168.1.0/24, 127.0.0.0/8, "::1"]
300 # personality: Apache_2
301 # # Can be specified in kb, mb, gb. Just a number indicates
302 # # it's in bytes.
303 # request-body-limit: 4096
304 # response-body-limit: 4096
305 # double-decode-path: no
306 # double-decode-query: no
307
308 #- iis7:
309 # address:
310 # - 192.168.0.0/24
311 # - 192.168.10.0/24
312 # personality: IIS_7_0
313 # # Can be specified in kb, mb, gb. Just a number indicates
314 # # it's in bytes.
315 # request-body-limit: 4096
316 # response-body-limit: 4096
317 # double-decode-path: no
318 # double-decode-query: no
319
320 # Note: Modbus probe parser is minimalist due to the poor significant field
321 # Only Modbus message length (greater than Modbus header length)
322 # And Protocol ID (equal to 0) are checked in probing parser
323 # It is important to enable detection port and define Modbus port
324 # to avoid false positive
325 modbus:
326 # How many unreplied Modbus requests are considered a flood.
327 # If the limit is reached, app-layer-event:modbus.flooded; will match.
328 #request-flood: 500
329
330 enabled: no
331 detection-ports:
332 dp: 502
333 # According to MODBUS Messaging on TCP/IP Implementation Guide V1.0b, it
334 # is recommended to keep the TCP connection opened with a remote device
335 # and not to open and close it for each MODBUS/TCP transaction. In that
336 # case, it is important to set the depth of the stream reassembling as
337 # unlimited (stream.reassembly.depth: 0)
338
339 # Stream reassembly size for modbus. By default track it completely.
340 stream-depth: 0
341
342 # DNP3
343 dnp3:
344 enabled: no
345 detection-ports:
346 dp: 20000
347
348 # SCADA EtherNet/IP and CIP protocol support
349 enip:
350 enabled: no
351 detection-ports:
352 dp: 44818
353 sp: 44818
354
355 # Note: parser depends on experimental Rust support
356 # with --enable-rust-experimental passed to configure
357 ntp:
358 enabled: no
359
360 # Limit for the maximum number of asn1 frames to decode (default 256)
361 asn1-max-frames: 256
362
363
364 ##############################################################################
365 ##
366 ## Advanced settings below
367 ##
368 ##############################################################################
369
370 # Suricata core dump configuration. Limits the size of the core dump file to
371 # approximately max-dump. The actual core dump size will be a multiple of the
372 # page size. Core dumps that would be larger than max-dump are truncated. On
373 # Linux, the actual core dump size may be a few pages larger than max-dump.
374 # Setting max-dump to 0 disables core dumping.
375 # Setting max-dump to 'unlimited' will give the full core dump file.
376 # On 32-bit Linux, a max-dump value >= ULONG_MAX may cause the core dump size
377 # to be 'unlimited'.
378
379 coredump:
380 max-dump: unlimited
381
382 # If suricata box is a router for the sniffed networks, set it to 'router'. If
383 # it is a pure sniffing setup, set it to 'sniffer-only'.
384 # If set to auto, the variable is internally switch to 'router' in IPS mode
385 # and 'sniffer-only' in IDS mode.
386 # This feature is currently only used by the reject* keywords.
387 host-mode: auto
388
389 # Number of packets preallocated per thread. The default is 1024. A higher number
390 # will make sure each CPU will be more easily kept busy, but may negatively
391 # impact caching.
392 max-pending-packets: 1024
393
394 # Runmode the engine should use. Please check --list-runmodes to get the available
395 # runmodes for each packet acquisition method. Defaults to "autofp" (auto flow pinned
396 # load balancing).
397 #runmode: autofp
398
399 # Specifies the kind of flow load balancer used by the flow pinned autofp mode.
400 #
401 # Supported schedulers are:
402 #
403 # round-robin - Flows assigned to threads in a round robin fashion.
404 # active-packets - Flows assigned to threads that have the lowest number of
405 # unprocessed packets (default).
406 # hash - Flow alloted usihng the address hash. More of a random
407 # technique. Was the default in Suricata 1.2.1 and older.
408 #
409 #autofp-scheduler: active-packets
410
411 # Preallocated size for packet. Default is 1514 which is the classical
412 # size for pcap on ethernet. You should adjust this value to the highest
413 # packet size (MTU + hardware header) on your system.
414 default-packet-size: 1514
415
416 # Unix command socket can be used to pass commands to suricata.
417 # An external tool can then connect to get information from suricata
418 # or trigger some modifications of the engine. Set enabled to yes
419 # to activate the feature. In auto mode, the feature will only be
420 # activated in live capture mode. You can use the filename variable to set
421 # the file name of the socket.
422 unix-command:
423 enabled: no
424 #filename: custom.socket
425
426 # Magic file. The extension .mgc is added to the value here.
427 #magic-file: /usr/share/file/magic
428 #magic-file:
429
430 legacy:
431 uricontent: enabled
432
433 ##
434 ## Detection settings
435 ##
436
437 # Set the order of alerts bassed on actions
438 # The default order is pass, drop, reject, alert
439 # action-order:
440 # - pass
441 # - drop
442 # - reject
443 # - alert
444
445 # IP Reputation
446 #reputation-categories-file: /etc/suricata/iprep/categories.txt
447 #default-reputation-path: /etc/suricata/iprep
448 #reputation-files:
449 # - reputation.list
450
451 # When run with the option --engine-analysis, the engine will read each of
452 # the parameters below, and print reports for each of the enabled sections
453 # and exit. The reports are printed to a file in the default log dir
454 # given by the parameter "default-log-dir", with engine reporting
455 # subsection below printing reports in its own report file.
456 engine-analysis:
457 # enables printing reports for fast-pattern for every rule.
458 rules-fast-pattern: yes
459 # enables printing reports for each rule
460 rules: yes
461
462 #recursion and match limits for PCRE where supported
463 pcre:
464 match-limit: 3500
465 match-limit-recursion: 1500
466
467 ##
468 ## Advanced Traffic Tracking and Reconstruction Settings
469 ##
470
471 # Host specific policies for defragmentation and TCP stream
472 # reassembly. The host OS lookup is done using a radix tree, just
473 # like a routing table so the most specific entry matches.
474 host-os-policy:
475 # Make the default policy windows.
476 windows: [0.0.0.0/0]
477 bsd: []
478 bsd-right: []
479 old-linux: []
480 linux: []
481 old-solaris: []
482 solaris: []
483 hpux10: []
484 hpux11: []
485 irix: []
486 macos: []
487 vista: []
488 windows2k3: []
489
490 # Defrag settings:
491
492 defrag:
493 memcap: 32mb
494 hash-size: 65536
495 trackers: 65535 # number of defragmented flows to follow
496 max-frags: 65535 # number of fragments to keep (higher than trackers)
497 prealloc: yes
498 timeout: 60
499
500 # Enable defrag per host settings
501 # host-config:
502 #
503 # - dmz:
504 # timeout: 30
505 # address: [192.168.1.0/24, 127.0.0.0/8, 1.1.1.0/24, 2.2.2.0/24, "1.1.1.1", "2.2.2.2", "::1"]
506 #
507 # - lan:
508 # timeout: 45
509 # address:
510 # - 192.168.0.0/24
511 # - 192.168.10.0/24
512 # - 172.16.14.0/24
513
514 # Flow settings:
515 # By default, the reserved memory (memcap) for flows is 32MB. This is the limit
516 # for flow allocation inside the engine. You can change this value to allow
517 # more memory usage for flows.
518 # The hash-size determine the size of the hash used to identify flows inside
519 # the engine, and by default the value is 65536.
520 # At the startup, the engine can preallocate a number of flows, to get a better
521 # performance. The number of flows preallocated is 10000 by default.
522 # emergency-recovery is the percentage of flows that the engine need to
523 # prune before unsetting the emergency state. The emergency state is activated
524 # when the memcap limit is reached, allowing to create new flows, but
525 # prunning them with the emergency timeouts (they are defined below).
526 # If the memcap is reached, the engine will try to prune flows
527 # with the default timeouts. If it doens't find a flow to prune, it will set
528 # the emergency bit and it will try again with more agressive timeouts.
529 # If that doesn't work, then it will try to kill the last time seen flows
530 # not in use.
531 # The memcap can be specified in kb, mb, gb. Just a number indicates it's
532 # in bytes.
533
534 flow:
535 memcap: 128mb
536 hash-size: 65536
537 prealloc: 10000
538 emergency-recovery: 30
539 #managers: 1 # default to one flow manager
540 #recyclers: 1 # default to one flow recycler thread
541
542 # This option controls the use of vlan ids in the flow (and defrag)
543 # hashing. Normally this should be enabled, but in some (broken)
544 # setups where both sides of a flow are not tagged with the same vlan
545 # tag, we can ignore the vlan id's in the flow hashing.
546 vlan:
547 use-for-tracking: true
548
549 # Specific timeouts for flows. Here you can specify the timeouts that the
550 # active flows will wait to transit from the current state to another, on each
551 # protocol. The value of "new" determine the seconds to wait after a hanshake or
552 # stream startup before the engine free the data of that flow it doesn't
553 # change the state to established (usually if we don't receive more packets
554 # of that flow). The value of "established" is the amount of
555 # seconds that the engine will wait to free the flow if it spend that amount
556 # without receiving new packets or closing the connection. "closed" is the
557 # amount of time to wait after a flow is closed (usually zero). "bypassed"
558 # timeout controls locally bypassed flows. For these flows we don't do any other
559 # tracking. If no packets have been seen after this timeout, the flow is discarded.
560 #
561 # There's an emergency mode that will become active under attack circumstances,
562 # making the engine to check flow status faster. This configuration variables
563 # use the prefix "emergency-" and work similar as the normal ones.
564 # Some timeouts doesn't apply to all the protocols, like "closed", for udp and
565 # icmp.
566
567 flow-timeouts:
568
569 default:
570 new: 30
571 established: 300
572 closed: 0
573 bypassed: 100
574 emergency-new: 10
575 emergency-established: 100
576 emergency-closed: 0
577 emergency-bypassed: 50
578 tcp:
579 new: 60
580 established: 600
581 closed: 60
582 bypassed: 100
583 emergency-new: 5
584 emergency-established: 100
585 emergency-closed: 10
586 emergency-bypassed: 50
587 udp:
588 new: 30
589 established: 300
590 bypassed: 100
591 emergency-new: 10
592 emergency-established: 100
593 emergency-bypassed: 50
594 icmp:
595 new: 30
596 established: 300
597 bypassed: 100
598 emergency-new: 10
599 emergency-established: 100
600 emergency-bypassed: 50
601
602 # Stream engine settings. Here the TCP stream tracking and reassembly
603 # engine is configured.
604 #
605 # stream:
606 # memcap: 32mb # Can be specified in kb, mb, gb. Just a
607 # # number indicates it's in bytes.
608 # checksum-validation: yes # To validate the checksum of received
609 # # packet. If csum validation is specified as
610 # # "yes", then packet with invalid csum will not
611 # # be processed by the engine stream/app layer.
612 # # Warning: locally generated trafic can be
613 # # generated without checksum due to hardware offload
614 # # of checksum. You can control the handling of checksum
615 # # on a per-interface basis via the 'checksum-checks'
616 # # option
617 # prealloc-sessions: 2k # 2k sessions prealloc'd per stream thread
618 # midstream: false # don't allow midstream session pickups
619 # async-oneside: false # don't enable async stream handling
620 # inline: no # stream inline mode
621 # drop-invalid: yes # in inline mode, drop packets that are invalid with regards to streaming engine
622 # max-synack-queued: 5 # Max different SYN/ACKs to queue
623 # bypass: no # Bypass packets when stream.depth is reached
624 #
625 # reassembly:
626 # memcap: 64mb # Can be specified in kb, mb, gb. Just a number
627 # # indicates it's in bytes.
628 # depth: 1mb # Can be specified in kb, mb, gb. Just a number
629 # # indicates it's in bytes.
630 # toserver-chunk-size: 2560 # inspect raw stream in chunks of at least
631 # # this size. Can be specified in kb, mb,
632 # # gb. Just a number indicates it's in bytes.
633 # toclient-chunk-size: 2560 # inspect raw stream in chunks of at least
634 # # this size. Can be specified in kb, mb,
635 # # gb. Just a number indicates it's in bytes.
636 # randomize-chunk-size: yes # Take a random value for chunk size around the specified value.
637 # # This lower the risk of some evasion technics but could lead
638 # # detection change between runs. It is set to 'yes' by default.
639 # randomize-chunk-range: 10 # If randomize-chunk-size is active, the value of chunk-size is
640 # # a random value between (1 - randomize-chunk-range/100)*toserver-chunk-size
641 # # and (1 + randomize-chunk-range/100)*toserver-chunk-size and the same
642 # # calculation for toclient-chunk-size.
643 # # Default value of randomize-chunk-range is 10.
644 #
645 # raw: yes # 'Raw' reassembly enabled or disabled.
646 # # raw is for content inspection by detection
647 # # engine.
648 #
649 # segment-prealloc: 2048 # number of segments preallocated per thread
650 #
651 # check-overlap-different-data: true|false
652 # # check if a segment contains different data
653 # # than what we've already seen for that
654 # # position in the stream.
655 # # This is enabled automatically if inline mode
656 # # is used or when stream-event:reassembly_overlap_different_data;
657 # # is used in a rule.
658 #
659 stream:
660 memcap: 64mb
661 checksum-validation: yes # reject wrong csums
662 inline: auto # auto will use inline mode in IPS mode, yes or no set it statically
663 reassembly:
664 memcap: 256mb
665 depth: 1mb # reassemble 1mb into a stream
666 toserver-chunk-size: 2560
667 toclient-chunk-size: 2560
668 randomize-chunk-size: yes
669 #randomize-chunk-range: 10
670 #raw: yes
671 #segment-prealloc: 2048
672 #check-overlap-different-data: true
673
674 # Host table:
675 #
676 # Host table is used by tagging and per host thresholding subsystems.
677 #
678 host:
679 hash-size: 4096
680 prealloc: 1000
681 memcap: 32mb
682
683 # IP Pair table:
684 #
685 # Used by xbits 'ippair' tracking.
686 #
687 #ippair:
688 # hash-size: 4096
689 # prealloc: 1000
690 # memcap: 32mb
691
692 # Decoder settings
693
694 decoder:
695 # Teredo decoder is known to not be completely accurate
696 # it will sometimes detect non-teredo as teredo.
697 teredo:
698 enabled: true
699
700
701 ##
702 ## Performance tuning and profiling
703 ##
704
705 # The detection engine builds internal groups of signatures. The engine
706 # allow us to specify the profile to use for them, to manage memory on an
707 # efficient way keeping a good performance. For the profile keyword you
708 # can use the words "low", "medium", "high" or "custom". If you use custom
709 # make sure to define the values at "- custom-values" as your convenience.
710 # Usually you would prefer medium/high/low.
711 #
712 # "sgh mpm-context", indicates how the staging should allot mpm contexts for
713 # the signature groups. "single" indicates the use of a single context for
714 # all the signature group heads. "full" indicates a mpm-context for each
715 # group head. "auto" lets the engine decide the distribution of contexts
716 # based on the information the engine gathers on the patterns from each
717 # group head.
718 #
719 # The option inspection-recursion-limit is used to limit the recursive calls
720 # in the content inspection code. For certain payload-sig combinations, we
721 # might end up taking too much time in the content inspection code.
722 # If the argument specified is 0, the engine uses an internally defined
723 # default limit. On not specifying a value, we use no limits on the recursion.
724 detect:
725 profile: high
726 custom-values:
727 toclient-groups: 3
728 toserver-groups: 25
729 sgh-mpm-context: auto
730 inspection-recursion-limit: 3000
731 # If set to yes, the loading of signatures will be made after the capture
732 # is started. This will limit the downtime in IPS mode.
733 #delayed-detect: yes
734
735 prefilter:
736 # default prefiltering setting. "mpm" only creates MPM/fast_pattern
737 # engines. "auto" also sets up prefilter engines for other keywords.
738 # Use --list-keywords=all to see which keywords support prefiltering.
739 default: mpm
740
741 # the grouping values above control how many groups are created per
742 # direction. Port whitelisting forces that port to get it's own group.
743 # Very common ports will benefit, as well as ports with many expensive
744 # rules.
745 grouping:
746 #tcp-whitelist: 53, 80, 139, 443, 445, 1433, 3306, 3389, 6666, 6667, 8080
747 #udp-whitelist: 53, 135, 5060
748
749 profiling:
750 # Log the rules that made it past the prefilter stage, per packet
751 # default is off. The threshold setting determines how many rules
752 # must have made it past pre-filter for that rule to trigger the
753 # logging.
754 #inspect-logging-threshold: 200
755 grouping:
756 dump-to-disk: false
757 include-rules: false # very verbose
758 include-mpm-stats: false
759
760 # Select the multi pattern algorithm you want to run for scan/search the
761 # in the engine.
762 #
763 # The supported algorithms are:
764 # "ac" - Aho-Corasick, default implementation
765 # "ac-bs" - Aho-Corasick, reduced memory implementation
766 # "ac-cuda" - Aho-Corasick, CUDA implementation
767 # "ac-ks" - Aho-Corasick, "Ken Steele" variant
768 # "hs" - Hyperscan, available when built with Hyperscan support
769 #
770 # The default mpm-algo value of "auto" will use "hs" if Hyperscan is
771 # available, "ac" otherwise.
772 #
773 # The mpm you choose also decides the distribution of mpm contexts for
774 # signature groups, specified by the conf - "detect.sgh-mpm-context".
775 # Selecting "ac" as the mpm would require "detect.sgh-mpm-context"
776 # to be set to "single", because of ac's memory requirements, unless the
777 # ruleset is small enough to fit in one's memory, in which case one can
778 # use "full" with "ac". Rest of the mpms can be run in "full" mode.
779 #
780 # There is also a CUDA pattern matcher (only available if Suricata was
781 # compiled with --enable-cuda: b2g_cuda. Make sure to update your
782 # max-pending-packets setting above as well if you use b2g_cuda.
783
784 mpm-algo: auto
785
786 # Select the matching algorithm you want to use for single-pattern searches.
787 #
788 # Supported algorithms are "bm" (Boyer-Moore) and "hs" (Hyperscan, only
789 # available if Suricata has been built with Hyperscan support).
790 #
791 # The default of "auto" will use "hs" if available, otherwise "bm".
792
793 spm-algo: auto
794
795 # Suricata is multi-threaded. Here the threading can be influenced.
796 threading:
797 set-cpu-affinity: no
798 # Tune cpu affinity of threads. Each family of threads can be bound
799 # on specific CPUs.
800 #
801 # These 2 apply to the all runmodes:
802 # management-cpu-set is used for flow timeout handling, counters
803 # worker-cpu-set is used for 'worker' threads
804 #
805 # Additionally, for autofp these apply:
806 # receive-cpu-set is used for capture threads
807 # verdict-cpu-set is used for IPS verdict threads
808 #
809 cpu-affinity:
810 - management-cpu-set:
811 cpu: [ 0 ] # include only these cpus in affinity settings
812 - receive-cpu-set:
813 cpu: [ 0 ] # include only these cpus in affinity settings
814 - worker-cpu-set:
815 cpu: [ "all" ]
816 mode: "exclusive"
817 # Use explicitely 3 threads and don't compute number by using
818 # detect-thread-ratio variable:
819 # threads: 3
820 prio:
821 low: [ 0 ]
822 medium: [ "1-2" ]
823 high: [ 3 ]
824 default: "medium"
825 #- verdict-cpu-set:
826 # cpu: [ 0 ]
827 # prio:
828 # default: "high"
829 #
830 # By default Suricata creates one "detect" thread per available CPU/CPU core.
831 # This setting allows controlling this behaviour. A ratio setting of 2 will
832 # create 2 detect threads for each CPU/CPU core. So for a dual core CPU this
833 # will result in 4 detect threads. If values below 1 are used, less threads
834 # are created. So on a dual core CPU a setting of 0.5 results in 1 detect
835 # thread being created. Regardless of the setting at a minimum 1 detect
836 # thread will always be created.
837 #
838 detect-thread-ratio: 1.0