a stab at injecting geoip data
This commit is contained in:
parent
008ee6d539
commit
e602527d46
10
Dockerfile
10
Dockerfile
|
@ -1,7 +1,15 @@
|
||||||
FROM lscr.io/linuxserver/syslog-ng:latest
|
FROM lscr.io/linuxserver/syslog-ng:latest
|
||||||
|
|
||||||
LABEL version="20240617.1.5"
|
LABEL version="20240617.1.6"
|
||||||
LABEL description="syslog-ng"
|
LABEL description="syslog-ng"
|
||||||
|
|
||||||
|
RUN apk update
|
||||||
|
RUN apk upgrade
|
||||||
|
|
||||||
RUN mkdir -p /config
|
RUN mkdir -p /config
|
||||||
COPY config /config
|
COPY config /config
|
||||||
|
|
||||||
|
RUN mkdir -p /config/GeoIP
|
||||||
|
COPY data/GeoIP/GeoLite2-City.mmdb /config/GeoIP/GeoLite2-City.mmdb
|
||||||
|
|
||||||
|
RUN apk add libmaxminddb
|
||||||
|
|
|
@ -24,6 +24,36 @@ filter f_unifi_wlan { message("wlan:"); };
|
||||||
|
|
||||||
parser p_kv { kv-parser(prefix("kv.")); };
|
parser p_kv { kv-parser(prefix("kv.")); };
|
||||||
parser p_suricata_json { json-parser(prefix("suricata.")); };
|
parser p_suricata_json { json-parser(prefix("suricata.")); };
|
||||||
|
parser p_fw_src_ip_geoip2_city {
|
||||||
|
geoip2(
|
||||||
|
"${kv.SRC}",
|
||||||
|
prefix( "geoip2." )
|
||||||
|
database( "/config/GeoIP/GeoLite2-City.mmdb" )
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
parser p_fw_dst_ip_geoip2_city {
|
||||||
|
geoip2(
|
||||||
|
"${kv.DST}",
|
||||||
|
prefix( "geoip2." )
|
||||||
|
database( "/config/GeoIP/GeoLite2-City.mmdb" )
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
parser p_suricata_dest_ip_geoip2_city {
|
||||||
|
geoip2(
|
||||||
|
"${suricata.dest_ip}",
|
||||||
|
prefix( "geoip2." )
|
||||||
|
database( "/config/GeoIP/GeoLite2-City.mmdb" )
|
||||||
|
);
|
||||||
|
};
|
||||||
|
parser p_suricata_src_ip_geoip2_city {
|
||||||
|
geoip2(
|
||||||
|
"${suricata.src_ip}",
|
||||||
|
prefix( "geoip2." )
|
||||||
|
database( "/config/GeoIP/GeoLite2-City.mmdb" )
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
destination d_local {
|
destination d_local {
|
||||||
file("/var/log/messages");
|
file("/var/log/messages");
|
||||||
|
@ -176,6 +206,8 @@ log {
|
||||||
source(s_network_udp);
|
source(s_network_udp);
|
||||||
filter(f_unifi_suricata);
|
filter(f_unifi_suricata);
|
||||||
parser(p_suricata_json);
|
parser(p_suricata_json);
|
||||||
|
parser(p_suricata_src_ip_geoip2_city);
|
||||||
|
parser(p_suricata_dest_ip_geoip2_city);
|
||||||
destination(d_unifi_suricata);
|
destination(d_unifi_suricata);
|
||||||
flags(final);
|
flags(final);
|
||||||
};
|
};
|
||||||
|
@ -191,6 +223,8 @@ log {
|
||||||
source(s_network_udp);
|
source(s_network_udp);
|
||||||
filter(f_unifi_fw_lan);
|
filter(f_unifi_fw_lan);
|
||||||
parser(p_kv);
|
parser(p_kv);
|
||||||
|
parser(p_fw_src_ip_geoip2_city);
|
||||||
|
parser(p_fw_dst_ip_geoip2_city);
|
||||||
destination(d_unifi_firewall);
|
destination(d_unifi_firewall);
|
||||||
flags(final);
|
flags(final);
|
||||||
};
|
};
|
||||||
|
@ -199,6 +233,8 @@ log {
|
||||||
source(s_network_udp);
|
source(s_network_udp);
|
||||||
filter(f_unifi_fw_wan);
|
filter(f_unifi_fw_wan);
|
||||||
parser(p_kv);
|
parser(p_kv);
|
||||||
|
parser(p_fw_src_ip_geoip2_city);
|
||||||
|
parser(p_fw_dst_ip_geoip2_city);
|
||||||
destination(d_unifi_firewall);
|
destination(d_unifi_firewall);
|
||||||
flags(final);
|
flags(final);
|
||||||
};
|
};
|
||||||
|
@ -207,6 +243,8 @@ log {
|
||||||
source(s_network_udp);
|
source(s_network_udp);
|
||||||
filter(f_unifi_fw_dnat);
|
filter(f_unifi_fw_dnat);
|
||||||
parser(p_kv);
|
parser(p_kv);
|
||||||
|
parser(p_fw_src_ip_geoip2_city);
|
||||||
|
parser(p_fw_dst_ip_geoip2_city);
|
||||||
destination(d_unifi_firewall);
|
destination(d_unifi_firewall);
|
||||||
flags(final);
|
flags(final);
|
||||||
};
|
};
|
||||||
|
@ -215,6 +253,8 @@ log {
|
||||||
source(s_network_udp);
|
source(s_network_udp);
|
||||||
filter(f_unifi_fw_guest);
|
filter(f_unifi_fw_guest);
|
||||||
parser(p_kv);
|
parser(p_kv);
|
||||||
|
parser(p_fw_src_ip_geoip2_city);
|
||||||
|
parser(p_fw_dst_ip_geoip2_city);
|
||||||
destination(d_unifi_firewall);
|
destination(d_unifi_firewall);
|
||||||
flags(final);
|
flags(final);
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,7 +10,7 @@ services:
|
||||||
syslog-ng:
|
syslog-ng:
|
||||||
build:
|
build:
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
image: docker-registry1.in.thelinuxpro.net:5000/tlp/syslog-ng:240617.1.5
|
image: docker-registry1.in.thelinuxpro.net:5000/tlp/syslog-ng:240617.1.6
|
||||||
container_name: syslog-ng
|
container_name: syslog-ng
|
||||||
environment:
|
environment:
|
||||||
- PUID=0
|
- PUID=0
|
||||||
|
|
Loading…
Reference in New Issue