This project is meant to run a single-system Zeek cluster inside of a docker container. It is based on, but differs from blacktop/zeek:zeekctl in that it focuses on running multiple Zeek processes with zeekctl. To that end, there are several helpful features included:
node.cfg cluster configurationzeekctl on start and print a diagnostic report if it failsethtool to disable certain interface features by defaultThe docker tags correspond with the version of Zeek installed in the image. Zeek currently has two release tracks: feature and lts.
latest, 3.2, 3.2.1lts, 3, 3.0, 3.0.10You'll first need Docker. If you don't already have it here is a quick and dirty way to install it on Linux:
curl -fsSL https://get.docker.com | sh -
Otherwise, follow the install instructions for your operating system.
You can then use the run.sh script to quickly get Zeek running.
./run.sh
You can also specify a custom location for your log files and interface config file (node.cfg).
# Will store logs in /opt/zeek/logs
./run.sh /opt/zeek/logs
# Will store logs in /opt/zeek/logs and config in /opt/zeek/etc/node.cfg
./run.sh /opt/zeek/logs /opt/zeek/etc/node.cfg
If the Quickstart section above doesn't fit your needs, you can use the following documentation to customize your install.
If you don't already have a node.cfg file you can use the following commands to generate one.
touch node.cfg
docker run --rm -it --network host \
--mount source=$(pwd)/node.cfg,destination=/node.cfg,type=bind \
activecm/zeek \
zeekcfg -o /node.cfg --type afpacket
docker run --cap-add net_raw --cap-add net_admin --network host --detach \
--name zeek \
--restart always \
--mount source=/etc/localtime,destination=/etc/localtime,type=bind,readonly \
--mount source=YOURLOGS,destination=/usr/local/zeek/logs/,type=bind \
--mount source=YOURCFG,destination=/usr/local/zeek/etc/node.cfg,type=bind \
activecm/zeek
Replace YOURLOGS with the absolute path on your host system you want Zeek logs written to. Replace YOURCFG with the absolute path to your node.cfg file. For example:
docker run --cap-add net_raw --cap-add net_admin --network host --detach \
--name zeek \
--restart always \
--mount source=/etc/localtime,destination=/etc/localtime,type=bind,readonly \
--mount source=$(pwd)/logs,destination=/usr/local/zeek/logs/,type=bind \
--mount source=$(pwd)/node.cfg,destination=/usr/local/zeek/etc/node.cfg,type=bind \
activecm/zeek
Here are several locations in the container that you may want to customize by mounting your own files or directories:
/usr/local/zeek/logs/ - Directory where Zeek's logs are written./usr/local/zeek/spool/ - Directory where Zeek's logs are written before they are archived and moved to /usr/local/zeek/logs/. (i.e. the "current" logs)/usr/local/zeek/etc/node.cfg - Zeek's cluster configuration including how many workers and which interfaces to capture from. You need to customize this file with your desired sniffing network interface name at the very least./usr/local/zeek/etc/networks.cfg - Internal network range definitions. If you have internal network ranges other than the standard RFC1918 (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) you can add them here./usr/local/zeek/etc/zeekctl.cfg - Zeekctl settings. If you don't have a dedicated sniffing interface you'll want to disable the interfacesetup.enabled in this file./usr/local/zeek/share/zeek/site/local.zeek - Determines which Zeek scripts are loaded. Anydocker stop zeek -t 90
Note: the -t 90 is to give Zeek enough time to rotate and archive the current logs. If you leave this off docker only gives 10 seconds and there's a chance that you could lose up to an hour of log data (since the last log rotation). If your logs are particularly large, you may have to increase the value greater than 90 seconds.
docker pull activecm/zeek
# Don't forget to recreate your container
# Container must be running already
docker exec zeek zkg install ja3
If Zeek crashes right after starting you can check the log output.
docker logs zeek
If Zeek is successfully capturing and you want to see if there are any issues:
# Container must be running already
docker exec zeek zeekctl doctor
Developer documenation can be found in the docs folder.
Dockerfile based on blacktop/docker-zeek.
Content type
Image
Digest
sha256:3c2eeb019…
Size
136.9 MB
Last updated
5 months ago
docker pull activecm/zeek