mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-20 16:03:06 +01:00
19 lines
489 B
Plaintext
19 lines
489 B
Plaintext
{%- set MASTERIP = salt['pillar.get']('static:masterip', '') -%}
|
|
{%- set SENSORONIKEY = salt['pillar.get']('static:sensoronikey', '') -%}
|
|
{
|
|
"logFilename": "sensoroni.log",
|
|
"agent": {
|
|
"pollIntervalMs": 10000,
|
|
"serverUrl": "https://{{ MASTERIP }}/sensoroniagents",
|
|
"modules": {
|
|
"statickeyauth": {
|
|
"apiKey": "{{ SENSORONIKEY }}"
|
|
},
|
|
"stenoquery": {
|
|
"pcapInputPath": "/nsm/pcap",
|
|
"pcapOutputPath": "/nsm/pcapoutput"
|
|
}
|
|
}
|
|
}
|
|
}
|