리눅스 GeoIP 로 접속 국가 확인
특정 IP의 접속 국가를 알고 싶을때 유용한 유틸이다.
IP 또는 도메인으로 확인이 가능하다.
▶ geoip 설치
# yum install -y geoip
▶ 접속국가 확인
[root@conoha-jp /]# geoiplookup baidu.com
GeoIP Country Edition: CN, China
[root@conoha-jp /]# geoiplookup 220.181.57.217
GeoIP Country Edition: CN, China
[root@conoha-jp /]# geoiplookup -i naver.com
GeoIP Country Edition: KR, Korea, Republic of
ipaddr: 125.209.222.142
range_by_ip: 125.209.192.0 - 125.209.255.255
network: 125.209.192.0 - 125.209.255.255 ::18
ipnum: 2110905998
range_by_num: 2110898176 - 2110914559
network num: 2110898176 - 2110914559 ::18
-i 옵션으로 디테일한 정보까지 볼 수도 있다.
IPv6 는 geoiplookup6 로 확인하면 된다.
▶ geoip DB 업데이트
[root@conoha-jp /]# geoipupdate
/usr/share/GeoIP/GeoLiteCountry.dat can't be opened, proceeding to download database
Updating /usr/share/GeoIP/GeoLiteCountry.dat
Updated database
/usr/share/GeoIP/GeoLiteCity.dat can't be opened, proceeding to download database
Updating /usr/share/GeoIP/GeoLiteCity.dat
Updated database
가끔씩 업데이트를 해주면 된다.
'LINUX' 카테고리의 다른 글
CentOS 7.x 시스템 백업 및 복구 (0) | 2016.11.21 |
---|---|
아파치 mod_deflate 압축 기능 동작 확인 방법 (0) | 2016.11.10 |
CentOS 7.x SVN Subversion 설치 방법 (0) | 2016.10.07 |
리눅스 모니터링툴 htop (0) | 2016.10.04 |
DNS 라운드로빈 로드밸런싱 방법 (0) | 2016.09.09 |