update geoip

This commit is contained in:
Kameron Kenny 2024-10-30 10:14:07 -04:00
parent b5eb8959c9
commit 079a0fe73c
No known key found for this signature in database
GPG Key ID: E5006629839D2276
7 changed files with 6 additions and 6 deletions

View File

Before

Width:  |  Height:  |  Size: 49 MiB

After

Width:  |  Height:  |  Size: 49 MiB

View File

@ -51,7 +51,7 @@ parser p_bind_client_ip_geoip2_city {
geoip2( geoip2(
"${bind9.client.ip}", "${bind9.client.ip}",
prefix( "geoip2.source." ) prefix( "geoip2.source." )
database( "/config/GeoIP/GeoLite2-City.mmdb" ) database( "../GeoIP/GeoLite2-City.mmdb" )
); );
}; };

View File

@ -40,7 +40,7 @@ parser p_nginx_client_ip_geoip2_city {
geoip2( geoip2(
"${nginx.client.ip}", "${nginx.client.ip}",
prefix( "geoip2.source." ) prefix( "geoip2.source." )
database( "/config/GeoIP/GeoLite2-City.mmdb" ) database( "../GeoIP/GeoLite2-City.mmdb" )
); );
}; };

View File

@ -20,7 +20,7 @@ parser p_fw_src_ip_geoip2_city {
geoip2( geoip2(
"${kv.SRC}", "${kv.SRC}",
prefix( "geoip2.source." ) prefix( "geoip2.source." )
database( "/config/GeoIP/GeoLite2-City.mmdb" ) database( "../GeoIP/GeoLite2-City.mmdb" )
); );
}; };
@ -28,7 +28,7 @@ parser p_fw_dst_ip_geoip2_city {
geoip2( geoip2(
"${kv.DST}", "${kv.DST}",
prefix( "geoip2.destination." ) prefix( "geoip2.destination." )
database( "/config/GeoIP/GeoLite2-City.mmdb" ) database( "../GeoIP/GeoLite2-City.mmdb" )
); );
}; };
@ -36,7 +36,7 @@ parser p_suricata_dest_ip_geoip2_city {
geoip2( geoip2(
"${suricata.dest_ip}", "${suricata.dest_ip}",
prefix( "geoip2.destination." ) prefix( "geoip2.destination." )
database( "/config/GeoIP/GeoLite2-City.mmdb" ) database( "../GeoIP/GeoLite2-City.mmdb" )
); );
}; };
@ -44,7 +44,7 @@ parser p_suricata_src_ip_geoip2_city {
geoip2( geoip2(
"${suricata.src_ip}", "${suricata.src_ip}",
prefix( "geoip2.source." ) prefix( "geoip2.source." )
database( "/config/GeoIP/GeoLite2-City.mmdb" ) database( "../GeoIP/GeoLite2-City.mmdb" )
); );
}; };