Skip to content

Commit

Permalink
v1.0.14增加流量分析支持
Browse files Browse the repository at this point in the history
  • Loading branch information
smarttang authored Jun 3, 2022
1 parent 00a153f commit 9bc0d37
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions deploy/docker-compose-x86_64/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
version: '2'

services:
# NIDS-suricate
suricate:
image: jasonish/suricata:6.0
privileged: true
command: -i eth0
volumes:
- ./nids/log:/var/log/suricata
cap_add:
- NET_ADMIN
# - NET_RAW
- SYS_NICE
network_mode: "host"

# 采集流量日志到KAFKA
filebeat3:
image: docker.elastic.co/beats/filebeat:8.1.3
entrypoint: "filebeat -e -strict.perms=false"
volumes:
- ./filebeat-nids.yml:/usr/share/filebeat/filebeat.yml
- ./nids/log:/var/nids/logs
depends_on:
- suricate

# 业务端产出日志
nginx:
image: openresty/openresty:alpine
Expand Down

0 comments on commit 9bc0d37

Please sign in to comment.