IP2Proxy™ LITE IP-PROXYTYPE-COUNTRY-REGION-CITY-ISP-DOMAIN-USAGETYPE-ASN-LASTSEEN-THREAT-RESIDENTIAL-PROVIDER Database

소개

IP2Proxy Database

이 데이터베이스에는 공개 프록시(PUB)로 사용되는 IP 주소가 포함되어 있습니다.  

이 데이터의 사용을 다음과 같이 언급하여 저작자 표시가 필요한 개인 또는 상업적 용도로 무료입니다.

지금 무료로 지리 위치 데이터의 귀중한 자원을 제공하는 이 데이터베이스를 탐색해 봅시다!

무료 가입

풍모

현재 버전 01 November 2025
다음 업데이트 December 2025
IPv4 Database Size CSV: 213.5 MB (1,319,035 Rows)
CIDR: 218.9 MB (1,418,959 Rows)
IPv6 Database Size CSV: 228.1 MB (1,324,453 Rows)
CIDR: 230.64 MB (1,424,378 Rows)
IPv4 + IPv6 Binary Size BIN: 970.63 MB
정렬 및 이진 (BIN)
ASCII 텍스트 파일 (CSV)
CIDR

데이터베이스 필드

이름 유형 기술
ip_from INT (10) / DECIMAL (39,0)†† 첫 번째 IP 주소는 넷 블록을 보여줍니다.
ip_to INT (10) / DECIMAL (39,0)†† 마지막 IP 주소는 넷 블록을 보여줍니다.
proxy_type VARCHAR(3) 프록시 유형
country_code CHAR(2) ISO 3166을 기반으로 한 2 자리 국가 코드입니다.
country_name VARCHAR(64) ISO 3166에 따른 국가 이름입니다.
region_name VARCHAR(128) 지역 또는 주 이름.
city_name VARCHAR(128) 도시 이름.
isp VARCHAR(256) 인터넷 서비스 제공 업체 또는 회사 이름.
domain VARCHAR(128) IP 주소 범위와 관련된 인터넷 도메인 이름입니다.
usage_type VARCHAR(11) ISP 또는 회사의 사용 유형 분류.
  • (COM) 상업
  • (ORG) 조직
  • (GOV) 정부
  • (MIL) 군
  • (EDU) 대학 / 대학 / 학교
  • (LIB) 도서관
  • (CDN) 콘텐츠 전달 네트워크
  • (ISP) 유선 ISP
  • (MOB) 모바일 ISP
  • (DCH) 데이터 센터 / 웹 호스팅 / 전송
  • (SES) 검색 엔진 스파이더
  • (RSV) 예약석
asn INT(10) 자율 시스템 번호 (ASN).
as VARCHAR(256) AS (자율 시스템) 이름.
last_seen INT(10) 프록시가 며칠 내에 마지막으로 확인되었습니다.
threat VARCHAR(128) 보안 위협이보고되었습니다.
provider VARCHAR(256) PXX_DATABASE_FIELD14

IPv4
†† IPv6

프록시 유형

프록시 유형 기술 익명
VPN 높은
TOR Tor 종료 노드. Tor 프로젝트는 익명 성을 유지하고자하는 사람들이 사용하는 개방형 네트워크입니다. 높은
DCH 낮은
PUB* 높은
WEB 높은
SES 검색 엔진 로봇. 검색 엔진 스파이더 또는 봇 엔진과 같은 웹 사이트에 대한 크롤링 또는 스크래핑을 수행하는 서비스입니다. 낮은
RES 높은
CPN 낮은
EPN 낮은

데이터베이스 설정

다음은 IPv4 및 IPv6 데이터 모두에 대한 데이터베이스를 설정하는 단계입니다.

데이터베이스 생성
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_px11`(
	`ip_from` INT(10) UNSIGNED,
	`ip_to` INT(10) UNSIGNED,
	`proxy_type` VARCHAR(3),
	`country_code` CHAR(2),
	`country_name` VARCHAR(64),
	`region_name` VARCHAR(128),
	`city_name` VARCHAR(128),
	`isp` VARCHAR(256),
	`domain` VARCHAR(128),
	`usage_type` VARCHAR(11),
	`asn` INT(10),
	`as` VARCHAR(256),
	`last_seen` INT(10) UNSIGNED,
	`threat` VARCHAR(128),
	`provider` VARCHAR(256),
	PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
데이터베이스 가져 오기
LOAD DATA LOCAL
	INFILE 'IP2PROXY-LITE-PX11.CSV'
INTO TABLE
	`ip2location_px11`
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 0 LINES;
데이터베이스 생성
CREATE DATABASE ip2location
GO

USE ip2location
GO

CREATE TABLE [ip2location].[dbo].[ip2location_px11](
	[ip_from] bigint NOT NULL,
	[ip_to] bigint NOT NULL,
	[proxy_type] nvarchar(3) NOT NULL,
	[country_code] nvarchar(2) NOT NULL,
	[country_name] nvarchar(64) NOT NULL,
	[region_name] nvarchar(128) NOT NULL,
	[city_name] nvarchar(128) NOT NULL,
	[isp] nvarchar(256) NOT NULL,
	[domain] nvarchar(128) NOT NULL,
	[usage_type] nvarchar(11) NOT NULL,
	[asn] integer NOT NULL,
	[as] nvarchar(256) NOT NULL,
	[last_seen] integer NOT NULL,
	[threat] nvarchar(128) NOT NULL,
	[provider] nvarchar(256) NOT NULL
) ON [PRIMARY]
GO

CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_px11]([ip_to]) ON [PRIMARY]
GO
데이터베이스 가져 오기
BULK INSERT [ip2location].[dbo].[ip2location_px11]
FROM '{PATH TO IP2PROXY-LITE-PX11.CSV}'
WITH
(
	FORMATFILE = '{PATH TO PX11.FMT}'
)
GO

참고 : 아래의 FMT 코드를 복사하여 컴퓨터에 PX11.FMT라는 파일로 저장해야합니다.

12.0
16
1 SQLCHAR 0 1 "\"" 0 first_double_quote  Latin1_General_CI_AI
2 SQLCHAR 0 20 "\",\"" 1 ip_from "",
3 SQLCHAR 0 20 "\",\"" 2 ip_to "",
4 SQLCHAR 0 3 "\",\"" 3 proxy_type Latin1_General_CI_AI,
5 SQLCHAR 0 2 "\",\"" 4 country_code Latin1_General_CI_AI,
6 SQLCHAR 0 64 "\",\"" 5 country_name Latin1_General_CI_AI,
7 SQLCHAR 0 128 "\",\"" 6 region_name Latin1_General_CI_AI,
8 SQLCHAR 0 128 "\",\"" 7 city_name Latin1_General_CI_AI,
9 SQLCHAR 0 256 "\",\"" 8 isp Latin1_General_CI_AI,
10 SQLCHAR 0 128 "\",\"" 9 domain Latin1_General_CI_AI,
11 SQLCHAR 0 11 "\",\"" 10 usage_type Latin1_General_CI_AI,
12 SQLCHAR 0 10 "\",\"" 11 asn "",
13 SQLCHAR 0 256 "\",\"" 12 as Latin1_General_CI_AI,
14 SQLCHAR 0 10 "\",\"" 13 last_seen "",
15 SQLCHAR 0 128 "\",\"" 14 threat Latin1_General_CI_AI,
16 SQLCHAR 0 256 "\",\"" 15 threat Latin1_General_CI_AI

데이터베이스 생성
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_px11(
	ip_from bigint NOT NULL,
	ip_to bigint NOT NULL,
	proxy_type character varying(3) NOT NULL,
	country_code character(2) NOT NULL,
	country_name character varying(64) NOT NULL,
	region_name character varying(128) NOT NULL,
	city_name character varying(128) NOT NULL,
	isp character varying(256) NOT NULL,
	domain character varying(128) NOT NULL,
	usage_type character varying(11) NOT NULL,
	asn character integer(10) NOT NULL,
	as character varying(256) NOT NULL,
	last_seen integer(10) NOT NULL,
	threat character varying(128) NOT NULL,
	provider character varying(128) NOT NULL,
	CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
데이터베이스 가져 오기
COPY ip2location_px11 FROM 'IP2PROXY-LITE-PX11.CSV' WITH CSV QUOTE AS '"';
데이터베이스 가져 오기
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_px11_ipv6 --type csv --file "IP2PROXY-LITE-PX11.CSV" --fields ip_from,ip_to,proxy_type,country_code,country_name,region_name,city_name,isp,domain,usage_type,asn,as,last_seen,threat,provider
데이터베이스 생성
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_px11_ipv6`(
	`ip_from` DECIMAL(39,0) UNSIGNED,
	`ip_to` DECIMAL(39,0) UNSIGNED,
	`proxy_type` VARCHAR(3),
	`country_code` CHAR(2),
	`country_name` VARCHAR(64),
	`region_name` VARCHAR(128),
	`city_name` VARCHAR(128),
	`isp` VARCHAR(256),
	`domain` VARCHAR(128),
	`usage_type` VARCHAR(11),
	`asn` INT(10),
	`as` VARCHAR(256),
	`last_seen` INT(10) UNSIGNED,
	`threat` VARCHAR(128),
	`provider` VARCHAR(256),
	PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
데이터베이스 가져 오기
LOAD DATA LOCAL
	INFILE 'IP2PROXY-LITE-PX11.IPV6.CSV'
INTO TABLE
	`ip2location_px11_ipv6`
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 0 LINES;
데이터베이스 생성
CREATE DATABASE ip2location
GO

USE ip2location
GO

CREATE TABLE [ip2location].[dbo].[ip2location_px11_ipv6](
	[ip_from] char(39) NOT NULL,
	[ip_to] char(39) NOT NULL,
	[proxy_type] nvarchar(3) NOT NULL,
	[country_code] nvarchar(2) NOT NULL,
	[country_name] nvarchar(64) NOT NULL,
	[region_name] nvarchar(128) NOT NULL,
	[city_name] nvarchar(128) NOT NULL,
	[isp] nvarchar(256) NOT NULL,
	[domain] nvarchar(128) NOT NULL,
	[usage_type] nvarchar(11) NOT NULL,
	[asn] integer NOT NULL,
	[as] nvarchar(256) NOT NULL,
	[last_seen] integer NOT NULL,
	[threat] nvarchar(128) NOT NULL,
	[provider] nvarchar(256) NOT NULL
) ON [PRIMARY]
GO

CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_px11_ipv6]([ip_to]) ON [PRIMARY]
GO
데이터베이스 가져 오기
BULK INSERT [ip2location].[dbo].[ip2location_px11_ipv6]
FROM '{PATH TO IP2PROXY-LITE-PX11.IPV6.CSV}'
WITH
(
	FORMATFILE = '{PATH TO PX11.FMT}'
)
GO

12.0
16
1 SQLCHAR 0 1 "\"" 0 first_double_quote  Latin1_General_CI_AI
2 SQLCHAR 0 39 "\",\"" 1 ip_from "",
3 SQLCHAR 0 39 "\",\"" 2 ip_to "",
4 SQLCHAR 0 3 "\",\"" 3 proxy_type Latin1_General_CI_AI,
5 SQLCHAR 0 2 "\",\"" 4 country_code Latin1_General_CI_AI,
6 SQLCHAR 0 64 "\",\"" 5 country_name Latin1_General_CI_AI,
7 SQLCHAR 0 128 "\",\"" 6 region_name Latin1_General_CI_AI,
8 SQLCHAR 0 128 "\",\"" 7 city_name Latin1_General_CI_AI,
9 SQLCHAR 0 256 "\",\"" 8 isp Latin1_General_CI_AI,
10 SQLCHAR 0 128 "\",\"" 9 domain Latin1_General_CI_AI,
11 SQLCHAR 0 11 "\",\"" 10 usage_type Latin1_General_CI_AI,
12 SQLCHAR 0 10 "\",\"" 11 asn "",
13 SQLCHAR 0 256 "\",\"" 12 as Latin1_General_CI_AI,
14 SQLCHAR 0 10 "\",\"" 13 last_seen "",
15 SQLCHAR 0 128 "\",\"" 14 threat Latin1_General_CI_AI,
16 SQLCHAR 0 256 "\",\"" 15 threat Latin1_General_CI_AI

데이터베이스 생성
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_px11_ipv6(
	ip_from decimal(39,0) NOT NULL,
	ip_to decimal(39,0) NOT NULL,
	proxy_type character varying(3) NOT NULL,
	country_code character(2) NOT NULL,
	country_name character varying(64) NOT NULL,
	region_name character varying(128) NOT NULL,
	city_name character varying(128) NOT NULL,
	isp character varying(256) NOT NULL,
	domain character varying(128) NOT NULL,
	usage_type character varying(11) NOT NULL,
	asn character integer(10) NOT NULL,
	as character varying(256) NOT NULL,
	last_seen integer(10) NOT NULL,
	threat character varying(128) NOT NULL,
	provider character varying(128) NOT NULL,
	CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
데이터베이스 가져 오기
COPY ip2location_px11_ipv6 FROM 'IP2PROXY-LITE-PX11.IPV6.CSV' WITH CSV QUOTE AS '"';
데이터베이스 가져 오기
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_px11_ipv6 --type csv --file "IP2PROXY-LITE-PX11.IPV6.CSV" --fields ip_from,ip_to,proxy_type,country_code,country_name,region_name,city_name,isp,domain,usage_type,asn,as,last_seen,threat,provider

샘플 데이터베이스

아래는 참고용 샘플 데이터베이스입니다.


"ip_from","ip_to","proxy_type","country_code","country_name","region_name","city_name","isp","domain","usage_type","asn","as","last_seen","threat","provider"
"16782178","16782178","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16782320","16782320","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16782350","16782350","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16783214","16783214","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16783399","16783399","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16783523","16783523","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16783571","16783571","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16783766","16783766","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16784030","16784030","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16784101","16784101","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16784241","16784241","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16784549","16784549","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16784584","16784584","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","-","-","30","-","-"
"16811364","16811364","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"16812048","16812048","PUB","TH","Thailand","Prachuap Khiri Khan","Kui Buri","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"16812131","16812131","PUB","TH","Thailand","Prachuap Khiri Khan","Kui Buri","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"16812230","16812230","PUB","TH","Thailand","Prachuap Khiri Khan","Kui Buri","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16815399","16815399","PUB","TH","Thailand","Phangnga","Takua Pa","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16820741","16820741","PUB","TH","Thailand","Surat Thani","Ko Samui","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16820786","16820786","PUB","TH","Thailand","Surat Thani","Ko Samui","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","SCANNER/BOTNET","-"
"16821205","16821205","PUB","TH","Thailand","Phra Nakhon Si Ayutthaya","Wang Noi","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"16829783","16829783","PUB","TH","Thailand","Nakhon Sawan","Tha Tako","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"16830637","16830637","PUB","TH","Thailand","Ratchaburi","Damnoen Saduak","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","12","-","-"
"16830846","16830846","PUB","TH","Thailand","Phetchaburi","Cha-am","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16833601","16833601","PUB","TH","Thailand","Surat Thani","Koh Tao","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16841686","16841686","PUB","TH","Thailand","Narathiwat","Su-ngai Kolok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","11","-","-"
"16869383","16869383","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","2519","Arteria Networks Corporation","30","-","-"
"16869445","16869445","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","2519","Arteria Networks Corporation","30","-","-"
"16869446","16869446","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","2519","Arteria Networks Corporation","1","BOTNET","-"
"16869553","16869553","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","2519","Arteria Networks Corporation","30","-","-"
"16870797","16870797","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","2519","Arteria Networks Corporation","1","BOTNET","-"
"16873176","16873176","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","2519","Arteria Networks Corporation","30","-","-"
"16874612","16874612","PUB","JP","Japan","Tokyo","Tokyo","I2TS Inc.","mediaindex.co.jp","DCH","2519","Arteria Networks Corporation","30","-","-"
"16876127","16876127","PUB","TH","Thailand","Nakhon Phanom","Renu Nakhon","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","SPAM","-"
"16885722","16885722","PUB","TH","Thailand","Chiang Rai","Wiang Pa Pao","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"16899082","16899082","PUB","TH","Thailand","Nan","Nan","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","28","-","-"
"16899135","16899135","PUB","TH","Thailand","Nan","Nan","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"16899172","16899172","PUB","TH","Thailand","Nan","Nan","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","SCANNER/BOTNET","-"
"16900112","16900112","PUB","TH","Thailand","Nakhon Ratchasima","Nakhon Ratchasima","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16900799","16900799","PUB","TH","Thailand","Maha Sarakham","Kantharawichai","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16901478","16901478","PUB","TH","Thailand","Nakhon Ratchasima","Nakhon Ratchasima","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16901728","16901728","PUB","TH","Thailand","Nakhon Ratchasima","Nakhon Ratchasima","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16903512","16903512","PUB","TH","Thailand","Kalasin","Kalasin","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","5","-","-"
"16908801","16908801","PUB","CN","China","Beijing","Beijing","Knet Techonlogy (Beijing) Co. Ltd.","knet.cn","DCH","-","-","30","-","-"
"16945305","16945305","PUB","TH","Thailand","Khon Kaen","Khon Kaen","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","7","-","-"
"16951591","16951591","PUB","TH","Thailand","Udon Thani","Kut Chap","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"16953428","16953428","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16953453","16953453","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16953455","16953455","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16953513","16953513","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16953541","16953541","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16955781","16955781","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16955862","16955862","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16955888","16955888","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16961926","16961926","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","5","-","-"
"16962595","16962595","PUB","TH","Thailand","Pathum Thani","Nong Suea","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16962757","16962757","PUB","TH","Thailand","Pathum Thani","Nong Suea","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16963420","16963420","PUB","TH","Thailand","Pathum Thani","Ban Lam Luk Ka","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16963757","16963757","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16963811","16963811","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16963942","16963942","PUB","TH","Thailand","Nonthaburi","Mueang Nonthaburi","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16964234","16964234","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16964320","16964320","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16964924","16964924","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16965140","16965140","PUB","TH","Thailand","Nonthaburi","Bang Yai","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16965242","16965242","PUB","TH","Thailand","Nonthaburi","Bang Yai","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16965388","16965388","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16965526","16965526","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16970216","16970216","PUB","TH","Thailand","Nakhon Sawan","Nakhon Sawan","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"16972865","16972865","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"17076457","17076457","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17077163","17077163","PUB","TH","Thailand","Nakhon Nayok","Pak Phli","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17077258","17077258","PUB","TH","Thailand","Chiang Mai","San Pa Tong","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"17077574","17077574","PUB","TH","Thailand","Nonthaburi","Mueang Nonthaburi","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17079587","17079587","PUB","TH","Thailand","Trat","Ko Kut","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"17080712","17080712","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17080960","17080960","PUB","TH","Thailand","Nonthaburi","Mueang Nonthaburi","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17081254","17081254","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17081366","17081366","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17082168","17082168","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17082841","17082841","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","6","-","-"
"17083721","17083721","PUB","TH","Thailand","Nonthaburi","Mueang Nonthaburi","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17089394","17089394","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"17090067","17090067","PUB","TH","Thailand","Phangnga","Kapong","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17090133","17090133","PUB","TH","Thailand","Phangnga","Kapong","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17090182","17090182","PUB","TH","Thailand","Phangnga","Kapong","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17090254","17090254","PUB","TH","Thailand","Phangnga","Kapong","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17090269","17090269","PUB","TH","Thailand","Phangnga","Kapong","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17090275","17090275","PUB","TH","Thailand","Phangnga","Kapong","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17090663","17090663","PUB","TH","Thailand","Chon Buri","Pattaya","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17090798","17090798","PUB","TH","Thailand","Chon Buri","Pattaya","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17091520","17091520","PUB","TH","Thailand","Chon Buri","Pattaya","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17094322","17094322","PUB","TH","Thailand","Krung Thep Maha Nakhon","Bangkok","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","BOTNET","-"
"17094788","17094788","PUB","TH","Thailand","Nakhon Ratchasima","Nakhon Ratchasima","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17103383","17103384","PUB","TH","Thailand","Trat","Ko Chang Tai","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17103430","17103430","PUB","TH","Thailand","Trat","Ko Chang Tai","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","4","-","-"
"17103443","17103443","PUB","TH","Thailand","Trat","Ko Chang Tai","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17103516","17103516","PUB","TH","Thailand","Trat","Ko Chang Tai","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17103626","17103626","PUB","TH","Thailand","Chon Buri","Pattaya","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"
"17103628","17103628","PUB","TH","Thailand","Chon Buri","Pattaya","TOT Public Company Limited","tot.co.th","ISP/MOB","23969","TOT Public Company Limited","1","-","-"

특허

데이터베이스 라이센스에 대한 일반 약관 을 검토하십시오.

IP2Proxy IP 주소 지리적 위치 데이터베이스

Commercial Edition에서는 IP 주소 조회 이상의 것을 얻을 수 있습니다.

  • 더 나은 데이터 정확도
  • 최신 데이터베이스에 액세스
  • 이메일을 통한 추가 수준의 지원
Product Upgrade
Sign Up Pop Out

방문자의 위치를 지리 위치 지정하기

우리의 무료 데이터베이스를 사용하여 필수 지리 위치 데이터를 통해 애플리케이션을 향상시키세요.