Merge pull request #1776 from Security-Onion-Solutions/bugfix/af-packet-ring-size

Match max-pending-packets size
This commit is contained in:
weslambert
2020-11-02 08:39:21 -05:00
committed by GitHub

View File

@@ -7,9 +7,9 @@ af-packet:
use-mmap: yes use-mmap: yes
threads: {{ salt['pillar.get']('sensor:suriprocs', salt['pillar.get']('sensor:suripins') | length) }} threads: {{ salt['pillar.get']('sensor:suriprocs', salt['pillar.get']('sensor:suripins') | length) }}
tpacket-v3: yes tpacket-v3: yes
ring-size: {{ salt['pillar.get']('sensor:suriringsize', '2048') }} ring-size: {{ salt['pillar.get']('sensor:suriringsize', '5000') }}
- interface: default - interface: default
#threads: auto #threads: auto
#use-mmap: no #use-mmap: no
#tpacket-v3: yes #tpacket-v3: yes
{% endload %} {% endload %}