activecm/zeekThis 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 [***] | sh -
Otherwise, follow the install instructions for your operating system.
You can then use the run.sh script to quickly get Zeek running.
bash./run.sh
You can also specify a custom location for your log files and interface config file (node.cfg).
bash# 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.
bashtouch 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
bashdocker 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:
bashdocker 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.
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像服务
在 Docker Desktop 配置镜像
Docker Compose 项目配置
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
MacOS OrbStack 容器配置
在宝塔面板一键配置镜像
Synology 群晖 NAS 配置
飞牛 fnOS 系统配置镜像
极空间 NAS 系统配置服务
爱快 iKuai 路由系统配置
绿联 NAS 系统配置镜像
QNAP 威联通 NAS 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
来自真实用户的反馈,见证轩辕镜像的优质服务