From 855e04ca795f8898d3dfbfc0b82dc6690a258647 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 30 Jan 2023 13:42:31 +0100 Subject: [PATCH] app-layer: explicitly enable sip, rdp and mqtt In the default config these were enabled implicitly, as their `enabled` field was commented out. This lead to warnings in the default config. Ticket: #5299. --- suricata.yaml.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/suricata.yaml.in b/suricata.yaml.in index c2056dc89e..fd164cb88f 100644 --- a/suricata.yaml.in +++ b/suricata.yaml.in @@ -734,7 +734,7 @@ app-layer: dp: 5900, 5901, 5902, 5903, 5904, 5905, 5906, 5907, 5908, 5909 # MQTT, disabled by default. mqtt: - # enabled: no + enabled: yes # max-msg-length: 1mb # subscribe-topic-match-limit: 100 # unsubscribe-topic-match-limit: 100 @@ -775,7 +775,7 @@ app-layer: enabled: yes # memcap: 64mb rdp: - #enabled: yes + enabled: yes ssh: enabled: yes #hassh: yes @@ -986,7 +986,7 @@ app-layer: enabled: yes sip: - #enabled: no + enabled: yes # Limit for the maximum number of asn1 frames to decode (default 256) asn1-max-frames: 256 -- 2.47.2