mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 01:17:36 +00:00
GitBook: [#3241] No subject
This commit is contained in:
parent
64ef95873f
commit
184220b9f3
1 changed files with 9 additions and 0 deletions
|
@ -122,6 +122,15 @@ iptables -I OUTPUT -j NFQUEUE
|
||||||
|
|
||||||
## Start suricata in IPS mode
|
## Start suricata in IPS mode
|
||||||
suricata -c /etc/suricata/suricata.yaml -q 0
|
suricata -c /etc/suricata/suricata.yaml -q 0
|
||||||
|
### or modify the service config file as:
|
||||||
|
systemctl edit suricata.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart=
|
||||||
|
ExecStart=/usr/bin/suricata -c /etc/suricata/suricata.yaml --pidfile /run/suricata.pid -q 0 -vvv
|
||||||
|
Type=simple
|
||||||
|
|
||||||
|
systemctl daemon-reload
|
||||||
```
|
```
|
||||||
|
|
||||||
### Rules Definitions
|
### Rules Definitions
|
||||||
|
|
Loading…
Reference in a new issue