mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Add pcap_file option to supervised nodes.
This allows to start Supervised nodes with a pcap_file argument rather than interface. This is based on changes from @J-Gras.
This commit is contained in:
parent
859ecc7b8b
commit
1882307cf3
7 changed files with 169 additions and 0 deletions
|
@ -27,6 +27,9 @@ export {
|
|||
## The interface name from which the node will read/analyze packets.
|
||||
## Typically used by worker nodes.
|
||||
interface: string &optional;
|
||||
## The PCAP file name from which the node will read/analyze packets.
|
||||
## Typically used by worker nodes.
|
||||
pcap_file: string &optional;
|
||||
};
|
||||
|
||||
## Configuration options that influence behavior of a supervised Zeek node.
|
||||
|
@ -36,6 +39,8 @@ export {
|
|||
name: string;
|
||||
## The interface name from which the node will read/analyze packets.
|
||||
interface: string &optional;
|
||||
## The PCAP file name from which the node will read/analyze packets.
|
||||
pcap_file: string &optional;
|
||||
## The working directory that the node should use.
|
||||
directory: string &optional;
|
||||
## The filename/path to which the node's stdout will be redirected.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue