Add helpLinks to everything

This commit is contained in:
Mike Reeves
2022-09-20 15:43:34 -04:00
parent 097c05b114
commit 85339d7cb1
13 changed files with 150 additions and 6 deletions

View File

@@ -1,7 +1,10 @@
bpf: bpf:
pcap: pcap:
description: List of BPF filters to apply to PCAP. description: List of BPF filters to apply to PCAP.
helpLink: bpf.html
suricata: suricata:
description: List of BPF filters to apply to Suricata. description: List of BPF filters to apply to Suricata.
helpLink: bpf.html
zeek: zeek:
description: List of BPF filters to apply to Zeek. description: List of BPF filters to apply to Zeek.
helpLink: bpf.html

View File

@@ -3,32 +3,41 @@ elastalert:
disable_rules_on_error: disable_rules_on_error:
description: Disable rules on failure. description: Disable rules on failure.
global: True global: True
helpLink: elastalert.html
run_every: run_every:
minutes: minutes:
description: Amount of time in minutes between searches. description: Amount of time in minutes between searches.
global: True global: True
helpLink: elastalert.html
buffer_time: buffer_time:
minutes: minutes:
description: Amount of time in minutes to look through. description: Amount of time in minutes to look through.
global: True global: True
helpLink: elastalert.html
old_query_limit: old_query_limit:
minutes: minutes:
description: Amount of time in minutes between queries to start at the most recently run query. description: Amount of time in minutes between queries to start at the most recently run query.
global: True global: True
helpLink: elastalert.html
es_conn_timeout: es_conn_timeout:
description: Timeout in seconds for connecting to and reading from Elasticsearch. description: Timeout in seconds for connecting to and reading from Elasticsearch.
global: True global: True
helpLink: elastalert.html
max_query_size: max_query_size:
description: The maximum number of documents that will be downloaded from Elasticsearch in a single query. description: The maximum number of documents that will be downloaded from Elasticsearch in a single query.
global: True global: True
helpLink: elastalert.html
alert_time_limit: alert_time_limit:
days: days:
description: The retry window for failed alerts. description: The retry window for failed alerts.
global: True global: True
helpLink: elastalert.html
index_settings: index_settings:
shards: shards:
description: The amount of shards to use for elastalert. description: The amount of shards to use for elastalert.
global: True global: True
helpLink: elastalert.html
replicas: replicas:
description: The amount of replicas for the Elastalert index. description: The amount of replicas for the Elastalert index.
global: True global: True
helpLink: elastalert.html

View File

@@ -5,43 +5,54 @@ elasticsearch:
description: The name of the Security Onion Elasticsearch cluster, for identification purposes. description: The name of the Security Onion Elasticsearch cluster, for identification purposes.
readonly: True readonly: True
global: True global: True
helpLink: elasticsearch.html
routing: routing:
allocation: allocation:
disk: disk:
threshold_enabled: threshold_enabled:
description: Specifies whether the Elasticsearch node will monitor the available disk space for low disk space conditions and take action to protect the cluster. description: Specifies whether the Elasticsearch node will monitor the available disk space for low disk space conditions and take action to protect the cluster.
helpLink: elasticsearch.html
watermark: watermark:
low: low:
description: The lower percentage of used disk space representing a healthy node. description: The lower percentage of used disk space representing a healthy node.
helpLink: elasticsearch.html
high: high:
description: The higher percentage of used disk space representing an unhealthy node. description: The higher percentage of used disk space representing an unhealthy node.
helpLink: elasticsearch.html
flood_stage: flood_stage:
description: The max percentage of used disk space that will cause the node to take protective actions, such as blocking incoming events. description: The max percentage of used disk space that will cause the node to take protective actions, such as blocking incoming events.
helpLink: elasticsearch.html
script: script:
max_compilations_rate: max_compilations_rate:
description: Max rate of script compilations permitted in the Elasticsearch cluster. Larger values will consume more resources. description: Max rate of script compilations permitted in the Elasticsearch cluster. Larger values will consume more resources.
global: True global: True
helpLink: elasticsearch.html
indices: indices:
query: query:
bool: bool:
max_clause_count: max_clause_count:
description: Max number of boolean clauses per query. description: Max number of boolean clauses per query.
global: True global: True
helpLink: elasticsearch.html
index_settings: index_settings:
so-aws: &indexSettings so-aws: &indexSettings
warm: warm:
description: Age (in days) of this index before it will move to warm storage, if warm nodes are present. Once moved, events on this index can take longer to fetch. description: Age (in days) of this index before it will move to warm storage, if warm nodes are present. Once moved, events on this index can take longer to fetch.
global: True global: True
helpLink: elasticsearch.html
close: close:
description: Age (in days) of this index before it will be closed. Once closed, events on this index cannot be retrieved without first re-opening the index. description: Age (in days) of this index before it will be closed. Once closed, events on this index cannot be retrieved without first re-opening the index.
global: True global: True
helpLink: elasticsearch.html
delete: delete:
description: Age (in days) of this index before it will be deleted. Once deleted, events are permanently unrecoverable. description: Age (in days) of this index before it will be deleted. Once deleted, events are permanently unrecoverable.
global: True global: True
helpLink: elasticsearch.html
index_sorting: index_sorting:
description: Sorts the index by event time, at the cost of additional processing resource consumption. description: Sorts the index by event time, at the cost of additional processing resource consumption.
global: True global: True
helpLink: elasticsearch.html
index_template: index_template:
template: template:
settings: settings:
@@ -51,15 +62,19 @@ elasticsearch:
limit: limit:
description: Max number of fields that can exist on a single index. Larger values will consume more resources. description: Max number of fields that can exist on a single index. Larger values will consume more resources.
global: True global: True
helpLink: elasticsearch.html
refresh_interval: refresh_interval:
description: Seconds between index refreshes. Shorter intervals can cause query performance to suffer since this is a synchronous and resource-intensive operation. description: Seconds between index refreshes. Shorter intervals can cause query performance to suffer since this is a synchronous and resource-intensive operation.
global: True global: True
helpLink: elasticsearch.html
number_of_shards: number_of_shards:
description: Number of shards required for this index. Using multiple shards increases fault tolerance, but also increases storage and network costs. description: Number of shards required for this index. Using multiple shards increases fault tolerance, but also increases storage and network costs.
global: True global: True
helpLink: elasticsearch.html
number_of_replicas: number_of_replicas:
description: Number of replicas required for this index. Multiple replicas protects against data loss, while also increasing storage costs. description: Number of replicas required for this index. Multiple replicas protects against data loss, while also increasing storage costs.
global: True global: True
helpLink: elasticsearch.html
so-azure: *indexSettings so-azure: *indexSettings
so-barracuda: *indexSettings so-barracuda: *indexSettings
so-beats: *indexSettings so-beats: *indexSettings

View File

@@ -5,54 +5,64 @@ firewall:
file: True file: True
global: True global: True
title: Analyst Workstation title: Analyst Workstation
helpLink: firewall.html#host-groups
analyst: analyst:
description: List of IP Addresses or CIDR blocks to allow analyst connections. description: List of IP Addresses or CIDR blocks to allow analyst connections.
file: True file: True
global: True global: True
title: Analyst title: Analyst
helpLink: firewall.html#host-groups
standalone: standalone:
description: List of IP Addresses or CIDR blocks to allow standalone connections. description: List of IP Addresses or CIDR blocks to allow standalone connections.
file: True file: True
global: True global: True
title: Standalone title: Standalone
advanced: True advanced: True
helpLink: firewall.html#host-groups
eval: eval:
description: List of IP Addresses or CIDR blocks to allow eval connections. description: List of IP Addresses or CIDR blocks to allow eval connections.
file: True file: True
global: True global: True
title: Eval title: Eval
advanced: True advanced: True
helpLink: firewall.html#host-groups
idh: idh:
description: List of IP Addresses or CIDR blocks to allow idh connections. description: List of IP Addresses or CIDR blocks to allow idh connections.
file: True file: True
global: True global: True
title: IDHNode title: IDHNode
helpLink: firewall.html#host-groups
manager: manager:
description: List of IP Addresses or CIDR blocks to allow manager connections. description: List of IP Addresses or CIDR blocks to allow manager connections.
file: True file: True
global: True global: True
title: Manager title: Manager
advanced: True advanced: True
helpLink: firewall.html#host-groups
heavynodes: heavynodes:
description: List of IP Addresses or CIDR blocks to allow heavynode connections. description: List of IP Addresses or CIDR blocks to allow heavynode connections.
file: True file: True
global: True global: True
title: HeavyNode title: HeavyNode
helpLink: firewall.html#host-groups
searchnodes: searchnodes:
description: List of IP Addresses or CIDR blocks to allow searchnode connections. description: List of IP Addresses or CIDR blocks to allow searchnode connections.
file: True file: True
global: True global: True
title: SearchNode title: SearchNode
helpLink: firewall.html#host-groups
sensors: sensors:
description: List of IP Addresses or CIDR blocks to allow Sensor connections. description: List of IP Addresses or CIDR blocks to allow Sensor connections.
file: True file: True
global: True global: True
title: Sensor title: Sensor
helpLink: firewall.html#host-groups
receivers: receivers:
description: List of IP Addresses or CIDR blocks to allow receiver connections. description: List of IP Addresses or CIDR blocks to allow receiver connections.
file: True file: True
global: True global: True
title: Receiver title: Receiver
helpLink: firewall.html#host-groups
portgroups: portgroups:
portgroups__yaml: portgroups__yaml:
description: Port Groups description: Port Groups
@@ -61,6 +71,7 @@ firewall:
advanced: True advanced: True
title: Port Groups title: Port Groups
syntax: yaml syntax: yaml
helpLink: firewall.html#function
ports: ports:
ports__yaml: ports__yaml:
description: Ports in YAML. description: Ports in YAML.
@@ -68,4 +79,5 @@ firewall:
global: True global: True
advanced: True advanced: True
title: Ports title: Ports
syntax: yaml syntax: yaml
helpLink: firewall.html#port-groups

View File

@@ -4,35 +4,46 @@ grafana:
enabled: enabled:
description: Enable the sending of emails from Grafana. description: Enable the sending of emails from Grafana.
global: True global: True
helpLink: grafana.html
host: host:
description: Hostname of the SMTP server. description: Hostname of the SMTP server.
global: True global: True
helpLink: grafana.html
user: user:
description: User used to authenticate SMTP. description: User used to authenticate SMTP.
global: True global: True
helpLink: grafana.html
password: password:
description: Password used to authenticate SMTP. description: Password used to authenticate SMTP.
global: True global: True
sensitive: True sensitive: True
helpLink: grafana.html
cert_file: cert_file:
description: Location of cert file for SMTP. description: Location of cert file for SMTP.
global: True global: True
helpLink: grafana.html
key_file: key_file:
description: Location of key file for SMTP. description: Location of key file for SMTP.
global: True global: True
helpLink: grafana.html
skip_verify: skip_verify:
description: Verify SSL certificates. description: Verify SSL certificates.
global: True global: True
helpLink: grafana.html
from_address: from_address:
description: The email address you would like in the from field. description: The email address you would like in the from field.
global: True global: True
helpLink: grafana.html
from_name: from_name:
description: The name displayed for the from email address. description: The name displayed for the from email address.
global: True global: True
helpLink: grafana.html
ehlo_identity: ehlo_identity:
description: Used with servers with SMTP service extensions. description: Used with servers with SMTP service extensions.
global: True global: True
helpLink: grafana.html
enterprise: enterprise:
license_path: license_path:
description: Path to enterprise license key. description: Path to enterprise license key.
global: True global: True
helpLink: grafana.html

View File

@@ -3,22 +3,28 @@ idstools:
oinkcode: oinkcode:
description: Enter your registration code for paid rulesets. description: Enter your registration code for paid rulesets.
global: True global: True
helpLink: managing-alerts.html
ruleset: ruleset:
description: Define the ruleset you want to run. Options are ETOPEN or ETPRO. description: Define the ruleset you want to run. Options are ETOPEN or ETPRO.
global: True global: True
helpLink: managing-alerts.html
urls: urls:
description: This is a list of additional rule download locations. description: This is a list of additional rule download locations.
global: True global: True
helpLink: managing-alerts.html
sids: sids:
disabled: disabled:
description: List of disables SIDS. description: List of disables SIDS.
global: True global: True
helpLink: managing-alerts.html
enabled: enabled:
description: List of SIDS that are disabled by the rule source that you want to enable. description: List of SIDS that are disabled by the rule source that you want to enable.
global: True global: True
helpLink: managing-alerts.html
modify: modify:
description: List of SIDS that are modified. description: List of SIDS that are modified.
global: True global: True
helpLink: managing-alerts.html
rules: rules:
local__rules: local__rules:
description: This is where custom Suricata rules are entered. description: This is where custom Suricata rules are entered.
@@ -26,15 +32,18 @@ idstools:
global: True global: True
advanced: True advanced: True
title: Local Rules title: Local Rules
helpLink: managing-alerts.html
filters__rules: filters__rules:
description: You can set custom filters for Suricata when using it for meta data creation. description: You can set custom filters for Suricata when using it for meta data creation.
file: True file: True
global: True global: True
advanced: True advanced: True
title: Filter Rules title: Filter Rules
helpLink: managing-alerts.html
extraction__rules: extraction__rules:
description: This is a list of mime types for file extraction when Suricata is used for meta data creation. description: This is a list of mime types for file extraction when Suricata is used for meta data creation.
file: True file: True
global: True global: True
advanced: True advanced: True
title: Extraction Rules title: Extraction Rules
helpLink: managing-alerts.html

View File

@@ -3,14 +3,24 @@ influxdb:
so_short_term: so_short_term:
duration: duration:
description: Amount of time to keep short term data. description: Amount of time to keep short term data.
global: True
helpLink: grafana.html#data
shard_duration: shard_duration:
description: Time range description: Time range
global: True
helpLink: grafana.html#data
so_long_term: so_long_term:
duration: duration:
description: Amount of time to keep long term downsampled data. description: Amount of time to keep long term downsampled data.
global: True
helpLink: grafana.html#data
shard_duration: shard_duration:
description: Amount of the time range covered by the shard group. description: Amount of the time range covered by the shard group.
global: True
helpLink: grafana.html#data
downsample: downsample:
so_long_term: so_long_term:
resolution: resolution:
description: Amount of time to turn into a single data point. description: Amount of time to turn into a single data point.
global: True
helpLink: grafana.html#data

View File

@@ -3,3 +3,5 @@ kibana:
elasticsearch: elasticsearch:
requestTimeout: requestTimeout:
description: Request timeout length. description: Request timeout length.
global: True
helpLink: kibana.html

View File

@@ -5,15 +5,18 @@ nginx:
global: True global: True
advanced: True advanced: True
title: Replace Default Cert title: Replace Default Cert
helpLink: nginx.html
ssl__key: ssl__key:
description: Paste your .key file here description: Paste your .key file here
file: True file: True
title: SSL Key File title: SSL Key File
advanced: True advanced: True
global: True global: True
helpLink: nginx.html
ssl__crt: ssl__crt:
description: Paste your .crt file here description: Paste your .crt file here
file: True file: True
title: SSL Cert File title: SSL Cert File
advanced: True advanced: True
global: True global: True
helpLink: nginx.html

View File

@@ -3,3 +3,4 @@ ntp:
servers: servers:
description: NTP Server List description: NTP Server List
title: NTP Servers title: NTP Servers
helpLink: ntp.html

View File

@@ -1,24 +1,35 @@
pcap: pcap:
enabled: enabled:
description: Enable or Disable Stenographer on all sensors or a single sensor description: Enable or Disable Stenographer on all sensors or a single sensor
helpLink: pcap.html
config: config:
maxdirectoryfiles: maxdirectoryfiles:
description: The maximum number of packet/index files to create before deleting old files. The default is about 8 days regardless of free space. description: The maximum number of packet/index files to create before deleting old files. The default is about 8 days regardless of free space.
helpLink: pcap.html
diskfreepercentage: diskfreepercentage:
description: The disk space percent to always keep free for pcap description: The disk space percent to always keep free for pcap
helpLink: pcap.html
blocks: blocks:
description: The number of 1MB packet blocks used by AF_PACKET to store packets in memory, per thread. You shouldn't need to change this. description: The number of 1MB packet blocks used by AF_PACKET to store packets in memory, per thread. You shouldn't need to change this.
advanced: True advanced: True
helpLink: pcap.html
preallocate_file_mb: preallocate_file_mb:
description: File size to pre-allocate for individual pcap files. You shouldn't need to change this. description: File size to pre-allocate for individual pcap files. You shouldn't need to change this.
advanced: True advanced: True
helpLink: pcap.html
aiops: aiops:
description: The max number of async writes to allow at once. description: The max number of async writes to allow at once.
advanced: True advanced: True
helpLink: pcap.html
pin_to_cpu: pin_to_cpu:
description: Enable CPU pinning for PCAP. description: Enable CPU pinning for PCAP.
advanced: True
helpLink: pcap.html
cpus_to_pin_to: cpus_to_pin_to:
description: CPU to pin PCAP to. Currently only a single CPU is supported description: CPU to pin PCAP to. Currently only a single CPU is supported
advanced: True
helpLink: pcap.html
disks: disks:
description: List of disks to use for PCAP. This is currently not used. description: List of disks to use for PCAP. This is currently not used.
advanced: True advanced: True
helpLink: pcap.html

View File

@@ -7,21 +7,25 @@ soc:
file: True file: True
global: True global: True
syntax: md syntax: md
helpLink: soc.html
motd__md: motd__md:
title: Overview Page title: Overview Page
description: Customize the overview page with specific markdown-formatted content. Images can be used but must be hosted from another host that is accessible by the users' browser. description: Customize the overview page with specific markdown-formatted content. Images can be used but must be hosted from another host that is accessible by the users' browser.
file: True file: True
global: True global: True
syntax: md syntax: md
helpLink: soc.html
custom__js: custom__js:
title: Custom Javascript title: Custom Javascript
description: Customize SOC UI behavior with custom Javascript code. Custom Javascript not provided by Security Onion Solutions is unsupported, and should be removed prior to requesting support and prior to performing upgrades. description: Customize SOC UI behavior with custom Javascript code. Custom Javascript not provided by Security Onion Solutions is unsupported, and should be removed prior to requesting support and prior to performing upgrades.
file: True file: True
global: True global: True
advanced: True advanced: True
helpLink: soc.html
custom_roles: custom_roles:
title: Custom Roles title: Custom Roles
description: Customize role and permission mappings. Changes to this setting requires a complete understanding of the SOC RBAC system. description: Customize role and permission mappings. Changes to this setting requires a complete understanding of the SOC RBAC system.
file: True file: True
global: True global: True
advanced: True advanced: True
helpLink: soc.html

View File

@@ -5,125 +5,179 @@ suricata:
file: True file: True
syntax: yaml syntax: yaml
title: SIDS title: SIDS
helpLink: suricata.html
config: config:
vars: vars:
address-groups: address-groups:
HOME_NET: HOME_NET:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
EXTERNAL_NET: EXTERNAL_NET:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
HTTP_SERVERS: HTTP_SERVERS:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
SMTP_SERVERS: SMTP_SERVERS:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
SQL_SERVERS: SQL_SERVERS:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
DNS_SERVERS: DNS_SERVERS:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
TELNET_SERVERS: TELNET_SERVERS:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
AIM_SERVERS: AIM_SERVERS:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
DC_SERVERS: DC_SERVERS:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
DNP3_SERVER: DNP3_SERVER:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
DNP3_CLIENT: DNP3_CLIENT:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
MODBUS_CLIENT: MODBUS_CLIENT:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
MODBUS_SERVER: MODBUS_SERVER:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
ENIP_CLIENT: ENIP_CLIENT:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
ENIP_SERVER: ENIP_SERVER:
description: List of hosts or netowrks. description: List of hosts or netowrks.
helpLink: suricata.html
port-groups: port-groups:
HTTP_PORTS: HTTP_PORTS:
description: List of HTTP ports to look for HTTP traffic on. description: List of HTTP ports to look for HTTP traffic on.
helpLink: suricata.html
SHELLCODE_PORTS: SHELLCODE_PORTS:
description: List of SHELLCODE ports to look for SHELLCODE traffic on. description: List of SHELLCODE ports to look for SHELLCODE traffic on.
helpLink: suricata.html
ORACLE_PORTS: ORACLE_PORTS:
description: List of ORACLE ports to look for ORACLE traffic on. description: List of ORACLE ports to look for ORACLE traffic on.
helpLink: suricata.html
SSH_PORTS: SSH_PORTS:
description: List of SSH ports to look for SSH traffic on. description: List of SSH ports to look for SSH traffic on.
helpLink: suricata.html
DNP3_PORTS: DNP3_PORTS:
description: List of DNP3 ports to look for DNP3 traffic on. description: List of DNP3 ports to look for DNP3 traffic on.
helpLink: suricata.html
MODBUS_PORTS: MODBUS_PORTS:
description: List of MODBUS ports to look for MODBUS traffic on. description: List of MODBUS ports to look for MODBUS traffic on.
helpLink: suricata.html
FILE_DATA_PORTS: FILE_DATA_PORTS:
description: List of FILE_DATA ports to look for FILE_DATA traffic on. description: List of FILE_DATA ports to look for FILE_DATA traffic on.
helpLink: suricata.html
FTP_PORTS: FTP_PORTS:
description: List of FTP ports to look for FTP traffic on. description: List of FTP ports to look for FTP traffic on.
helpLink: suricata.html
VXLAN_PORTS: VXLAN_PORTS:
description: List of VXLAN ports to look for VXLAN traffic on. description: List of VXLAN ports to look for VXLAN traffic on.
helpLink: suricata.html
TEREDO_PORTS: TEREDO_PORTS:
description: List of TEREDO ports to look for TEREDO traffic on. description: List of TEREDO ports to look for TEREDO traffic on.
helpLink: suricata.html
outputs: outputs:
eve-log: eve-log:
xff: xff:
enabled: enabled:
description: Enable X-Forward-For support. description: Enable X-Forward-For support.
helpLink: suricata.html
mode: mode:
description: Operation mode. This should always be extra-data if you use PCAP. description: Operation mode. This should always be extra-data if you use PCAP.
helpLink: suricata.html
deployment: deployment:
description: forward would use the first IP address and reverse would use the last. description: forward would use the first IP address and reverse would use the last.
helpLink: suricata.html
header: header:
description: Header name where the actual IP address will be reported. description: Header name where the actual IP address will be reported.
helpLink: suricata.html
asn1-max-frames: asn1-max-frames:
description: Maximum nuber of asn1 frames to decode. description: Maximum nuber of asn1 frames to decode.
helpLink: suricata.html
max-pending-packets: max-pending-packets:
description: Number of packets preallocated per thread. description: Number of packets preallocated per thread.
helpLink: suricata.html
default-packet-size: default-packet-size:
description: Preallocated size for each packet. description: Preallocated size for each packet.
helpLink: suricata.html
pcre: pcre:
match-limit: match-limit:
description: Match limit for PCRE. description: Match limit for PCRE.
helpLink: suricata.html
match-limit-recursion: match-limit-recursion:
description: Recursion limit for PCRE. description: Recursion limit for PCRE.
helpLink: suricata.html
defrag: defrag:
memcap: memcap:
description: Max memory to use for defrag. You should only change this if you know what you are doing. description: Max memory to use for defrag. You should only change this if you know what you are doing.
helpLink: suricata.html
hash-size: hash-size:
description: Hash size description: Hash size
helpLink: suricata.html
trackers: trackers:
description: Number of defragmented flows to follow. description: Number of defragmented flows to follow.
helpLink: suricata.html
max-frags: max-frags:
description: Max number of fragments to keep description: Max number of fragments to keep
helpLink: suricata.html
prealloc: prealloc:
description: Preallocate memory. description: Preallocate memory.
helpLink: suricata.html
timeout: timeout:
description: Timeout value. description: Timeout value.
helpLink: suricata.html
flow: flow:
memcap: memcap:
description: Reserverd memory for flows. description: Reserverd memory for flows.
helpLink: suricata.html
hash-size: hash-size:
description: Determines the size of the hash used to identify flows inside the engine. description: Determines the size of the hash used to identify flows inside the engine.
helpLink: suricata.html
prealloc: prealloc:
description: Number of preallocated flows. description: Number of preallocated flows.
helpLink: suricata.html
stream: stream:
memcap: memcap:
description: Can be specified in kb,mb,gb. description: Can be specified in kb,mb,gb.
helpLink: suricata.html
checksum-validation: checksum-validation:
description: Validate checksum of packets. description: Validate checksum of packets.
helpLink: suricata.html
reassembly: reassembly:
memcap: memcap:
description: Can be specified in kb,mb,gb. description: Can be specified in kb,mb,gb.
helpLink: suricata.html
host: host:
hash-size: hash-size:
description: Hash size in bytes. description: Hash size in bytes.
helpLink: suricata.html
prealloc: prealloc:
description: How many streams to preallocate. description: How many streams to preallocate.
helpLink: suricata.html
memcap: memcap:
description: Memory settings for host. description: Memory settings for host.
helpLink: suricata.html
decoder: decoder:
teredo: teredo:
enabled: enabled:
description: Enable TEREDO capabilities description: Enable TEREDO capabilities
helpLink: suricata.html
ports: ports:
description: Ports to listen for. This should be a variable. description: Ports to listen for. This should be a variable.
helpLink: suricata.html
vxlan: vxlan:
enabled: enabled:
description: Enable VXLAN capabilities. description: Enable VXLAN capabilities.
helpLink: suricata.html
ports: ports:
description: Ports to listen for. This should be a variable. description: Ports to listen for. This should be a variable.
helpLink: suricata.html