Last active
May 17, 2021 13:26
-
-
Save stupidpupil/4edcbe2046b3b22c81c606efee0492d7 to your computer and use it in GitHub Desktop.
Suricata systemd file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Suricata IDS/IDP daemon | |
After=network.target | |
Requires=network.target | |
Documentation=man:suricata(8) man:suricatasc(8) | |
Documentation=https://redmine.openinfosecfoundation.org/projects/suricata/wiki | |
[Service] | |
Type=forking | |
Environment=LD_PREDLOAD=/usr/lib/libtcmalloc_minimal.so.4 | |
Environment=CFG=/etc/suricata/suricata.yaml PID=/var/run/suricata.pid | |
CapabilityBoundingSet=CAP_NET_ADMIN | |
PIDFile=/var/run/suricata.pid | |
ExecStart=/usr/bin/suricata -D -q 0 -q 1 -c $CFG --pidfile $PID -D | |
ExecReload=/bin/kill -HUP $MAINPID | |
ExecStop=/bin/kill $MAINPID | |
PrivateTmp=yes | |
InaccessibleDirectories=/home /root | |
ReadOnlyDirectories=/boot /usr /etc | |
[Install] | |
WantedBy=multi-user.target | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment