mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-10 11:12:51 +01:00
21 lines
523 B
JSON
21 lines
523 B
JSON
{%- set MASTER = grains['master'] -%}
|
|
{%- set SENSORONIKEY = salt['pillar.get']('static:sensoronikey', '') -%}
|
|
{
|
|
"logFilename": "/opt/sensoroni/log/sensoroni.log",
|
|
"logLevel":"debug",
|
|
"agent": {
|
|
"pollIntervalMs": 10000,
|
|
"serverUrl": "https://{{ MASTER }}/sensoroniagents",
|
|
"verifyCert": false,
|
|
"modules": {
|
|
"statickeyauth": {
|
|
"apiKey": "{{ SENSORONIKEY }}"
|
|
},
|
|
"stenoquery": {
|
|
"pcapInputPath": "/nsm/pcap",
|
|
"pcapOutputPath": "/nsm/pcapout"
|
|
}
|
|
}
|
|
}
|
|
}
|