[GeoIP] Modified server conf file to remove recon_reverse_geolocation_mode
This commit is contained in:
parent
20afc77c87
commit
219988018f
|
@ -330,18 +330,9 @@ restart_delay 60
|
|||
|
||||
#location_error 50
|
||||
|
||||
# Recon reverse geolocation mode [disabled, sql, file]
|
||||
# disabled The recon task doesn't try to geolocate the ip discovered.
|
||||
# sql The recon task trys to query the SQL database to geolocate the
|
||||
# ip discovered
|
||||
# file The recon task trys to find the geolocation information of the
|
||||
# ip discovered in the file indicated in the
|
||||
# recon_reverse_geolocation_file parameter
|
||||
|
||||
# recon_reverse_geolocation_mode disabled
|
||||
|
||||
# Recon reverse geolocation file. This is the database with the reverse
|
||||
# geolocation information using MaxMind GPL GeoLiteCity.dat format).
|
||||
# Comment it to disable the IP geolocation on agent creation.
|
||||
|
||||
#recon_reverse_geolocation_file /usr/local/share/GeoIP/GeoIPCity.dat
|
||||
|
||||
|
|
|
@ -325,18 +325,9 @@ restart_delay 60
|
|||
|
||||
#location_error 50
|
||||
|
||||
# Recon reverse geolocation mode [disabled, sql, file]
|
||||
# disabled The recon task doesn't try to geolocate the ip discovered.
|
||||
# sql The recon task trys to query the SQL database to geolocate the
|
||||
# ip discovered
|
||||
# file The recon task trys to find the geolocation information of the
|
||||
# ip discovered in the file indicated in the
|
||||
# recon_reverse_geolocation_file parameter
|
||||
|
||||
# recon_reverse_geolocation_mode disabled
|
||||
|
||||
# Recon reverse geolocation file. This is the database with the reverse
|
||||
# geolocation information using MaxMind GPL GeoLiteCity.dat format).
|
||||
# Comment it to disable the IP geolocation on agent creation.
|
||||
|
||||
#recon_reverse_geolocation_file /usr/local/share/GeoIP/GeoIPCity.dat
|
||||
|
||||
|
|
|
@ -342,18 +342,9 @@ restart_delay 60
|
|||
|
||||
#location_error 50
|
||||
|
||||
# Recon reverse geolocation mode [disabled, sql, file]
|
||||
# disabled The recon task doesn't try to geolocate the ip discovered.
|
||||
# sql The recon task trys to query the SQL database to geolocate the
|
||||
# ip discovered
|
||||
# file The recon task trys to find the geolocation information of the
|
||||
# ip discovered in the file indicated in the
|
||||
# recon_reverse_geolocation_file parameter
|
||||
|
||||
# recon_reverse_geolocation_mode disabled
|
||||
|
||||
# Recon reverse geolocation file. This is the database with the reverse
|
||||
# geolocation information using MaxMind GPL GeoLiteCity.dat format).
|
||||
# Comment it to disable the IP geolocation on agent creation.
|
||||
|
||||
#recon_reverse_geolocation_file /usr/local/share/GeoIP/GeoIPCity.dat
|
||||
|
||||
|
|
|
@ -301,18 +301,9 @@ restart_delay 60
|
|||
|
||||
#location_error 50
|
||||
|
||||
# Recon reverse geolocation mode [disabled, sql, file]
|
||||
# disabled The recon task doesn't try to geolocate the ip discovered.
|
||||
# sql The recon task trys to query the SQL database to geolocate the
|
||||
# ip discovered
|
||||
# file The recon task trys to find the geolocation information of the
|
||||
# ip discovered in the file indicated in the
|
||||
# recon_reverse_geolocation_file parameter
|
||||
|
||||
# recon_reverse_geolocation_mode disabled
|
||||
|
||||
# Recon reverse geolocation file. This is the database with the reverse
|
||||
# geolocation information using MaxMind GPL GeoLiteCity.dat format).
|
||||
# Comment it to disable the IP geolocation on agent creation.
|
||||
|
||||
#recon_reverse_geolocation_file /usr/local/share/GeoIP/GeoIPCity.dat
|
||||
|
||||
|
|
|
@ -266,7 +266,6 @@ sub pandora_load_config {
|
|||
$pa_config->{"web_engine"} = 'lwp'; # 5.1
|
||||
$pa_config->{"activate_gis"} = 0; # 3.1
|
||||
$pa_config->{"location_error"} = 50; # 3.1
|
||||
$pa_config->{"recon_reverse_geolocation_mode"} = 'disabled'; # 3.1
|
||||
$pa_config->{"recon_reverse_geolocation_file"} = ''; # 3.1
|
||||
$pa_config->{"recon_location_scatter_radius"} = 50; # 3.1
|
||||
$pa_config->{"update_parent"} = 0; # 3.1
|
||||
|
@ -863,9 +862,6 @@ sub pandora_load_config {
|
|||
}
|
||||
elsif ($parametro =~ m/^location_error\s+(\d+)/i) {
|
||||
$pa_config->{'location_error'} = clean_blank($1);
|
||||
}
|
||||
elsif ($parametro =~ m/^recon_reverse_geolocation_mode\s+(\w+)/i) {
|
||||
$pa_config->{'recon_reverse_geolocation_mode'} = clean_blank($1);
|
||||
} #FIXME: Find a better regexp to validate the path
|
||||
elsif ($parametro =~ m/^recon_reverse_geolocation_file\s+(.*)/i) {
|
||||
$pa_config->{'recon_reverse_geolocation_file'} = clean_blank($1);
|
||||
|
|
|
@ -6,8 +6,6 @@ In order to be able to use GeoIP/GIS features of the Pandora FMS reconserver, yo
|
|||
http://www.maxmind.com/app/installation
|
||||
http://www.maxmind.com/app/geolitecity
|
||||
|
||||
Install manually Geo-IP-PurePerl-1.24.tar.gz
|
||||
|
||||
This database will be used with Pandora FMS recon server for positioning detected host Systems. Check Pandora FMS documentacion for more information.
|
||||
|
||||
Prior to use this database you need to decompress it with gzip -d and edit your /etc/pandora/pandora_server.conf file and point the GeoLiteCity GeoLiteCity.dat file with Pandora FMS configuration token 'recon_reverse_geolocation_file', like:
|
||||
|
@ -15,7 +13,6 @@ Prior to use this database you need to decompress it with gzip -d and edit your
|
|||
activate_gis 1
|
||||
recon_reverse_geolocation_file /usr/share/pandora_server/util/GeoLiteCity.dat
|
||||
location_error 50
|
||||
recon_reverse_geolocation_mode file
|
||||
recon_location_scatter_radius 1000
|
||||
|
||||
Get a new version at:
|
||||
|
|
Loading…
Reference in New Issue