Author Topic: My machine is talking to 174.36.207.186 / softlayer / maxmind. All is OK.  (Read 570 times)

Offline AndrzejL

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 12802
  • RLU #490933
    • Wordpress On The Wardrobe...
Hi folks.

If You are asking Yourself this question:

Quote
OMG WT...? My machine is talking to 174.36.207.186 / softlayer / maxmind! Did I got a virus / malware / trojan? Was my security breached?

Stop panicking all is OK...

This isn't a tip or trick in a default meaning of the words but just a info.

The connection to xxx.xxx.xxx.xxx-static.reverse.softlayer.com / geolite.maxmind.com does NOT means You have a virus, trojan, malware or that there was some 3rd person messing with Your machine. It's just GeoIP package upgrading it's database. It happens once a month. It's setup as a monthly cron job.

Quote
[andrzejl@icsserver ~]$ su
Password:
[root@icsserver andrzejl]# rpm -qa | grep geoip
libgeoip1-1.4.7-1pclos2011
geoip-1.4.7-1pclos2011
libgeoipupdate0-1.4.7-1pclos2011

[root@icsserver andrzejl]# cat /etc/cron.monthly/geoip
#!/bin/sh

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz -O /tmp/GeoIP.dat.gz
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz -O /tmp/GeoLiteCity.dat.gz

cd /tmp
gunzip GeoIP.dat.gz
gunzip GeoLiteCity.dat.gz
mv -f /tmp/GeoIP.dat /usr/share/GeoIP/GeoIP.dat
mv -f /tmp/GeoLiteCity.dat /usr/share/GeoIP/GeoLiteCity.dat
[root@icsserver andrzejl]#

No reason to panic :).

Thanks kjpetrie for the info.

Regards.

Andy
« Last Edit: April 27, 2012, 09:46:25 AM by AndrzejL »