yes, rsyslog is running, and working. suricata is running on server_A where ryslog also runs,
using UDP and port 514.
I simulate by using the logger command to send syslog UDP to rsyslog, and this works.
#Monitor UDP port 514 on the server:
sudo tcpdump -i lo udp and port 514
# test sending udp port 514, local5:
logger -p local5.info -n 127.0.0.1 -P 514 -d “suricata sending over udp”
sudo tcpdump -i lo udp and port 514
20:38:47.337611 IP localhost.40560 > localhost.syslog: SYSLOG local5.info, length: 122
20:38:47.337611 IP localhost.40560 > localhost.syslog: SYSLOG local5.info, length: 122
20:38:47.337611 IP localhost.40560 > localhost.syslog: SYSLOG local5.info, length: 122
rsyslog writes to a local file, or forwards as configured.
If i send from the older suricata version (server_B) it works.
Not sure what i have wrong here…