IP2Proxy™ LITE IP-COUNTRY Database

Einführung

IP2Proxy Database

Diese Datenbank enthält IP-Adressen, die als offene Proxys (PUB) verwendet werden. Die Datenbank enthält Aufzeichnungen des Landes für alle öffentlichen IPv4- und IPv6-Adressen. Die kommerzielle Edition umfasst virtuelle private Netzwerke (VPN), offene Proxys (PUB), Web-Proxys, Tor-Exits, Rechenzentrums- und Webhosting-Bereiche (DCH), Suchmaschinen-Robots (SES) und private Proxys (RES), Consumer Privacy Networks (CPN) und Enterprise Private Networks (EPN).

Anonyme Proxyserver sind Zwischenserver, die die tatsächliche Identität oder IP-Adresse des Anforderers verbergen sollen. Studien haben ergeben, dass eine große Anzahl anonymer Proxy-Benutzer im Allgemeinen für Online-Kreditkartenbetrug, Foren und Blog-Spam verantwortlich ist.

Die IP2Proxy-Datenbank basiert auf einem proprietären Erkennungsalgorithmus parallel zur Echtzeiterkennung anonymer offener Proxyserver, die aktiv verwendet werden. Wir erstellen alle 24 Stunden eine aktuelle Liste anonymer Proxy-IP-Adressen. Webentwickler können den Download einmal täglich von unserem Server automatisieren und die anonyme IP-Adressliste mithilfe von Download-Skripten auf den Server importieren. Wenn Sie einen gehosteten Dienst bevorzugen, können Sie den IP2Proxy ™ Web Service herunterladen.

Es ist kostenlos für den persönlichen oder kommerziellen Gebrauch, wobei eine Namensnennung erforderlich ist, indem die Verwendung dieser Daten wie folgt angegeben wird:

Bitte besorgen Sie sich die Commercial Edition, wenn Sie hohe Datengenauigkeit, mehr Datensätze und Kundensupport suchen. Bitte besuchen Sie die Produktvergleichsseite für weitere Informationen.

Let's explore this database which provides a valuable resource of proxy data for free now!

Sign Up For Free

Eigenschaften

Liste der IP-Adressen, die als offene Proxys (PUB) verwendet werden. Jeder Datensatz besteht aus Ländercode und Ländername. Bitte aktualisieren Sie auf kommerzielle IP2Proxy-Datenbank für IP-Adressen von VPN, Web-Proxys, Tor-Exits, Rechenzentren (DCH) und Suchmaschinenrobotern (SES).

Aktuelle Version 19 April 2024
Nächste Aktualisierung May 2024
IPv4 Database Size CSV: 42.74 MB (913,463 Rows)
IPv6 Database Size CSV: 52.52 MB (918,229 Rows)
IPv4 + IPv6 Binary Size BIN: 79.71 MB
Array Binär (BIN)
ASCII-Textdatei (CSV)

Datenbankfelder

Name Art Beschreibung
ip_from INT (10) / DECIMAL (39,0)†† Erste IP-Adresse zeigt Netblock.
ip_to INT (10) / DECIMAL (39,0)†† Letzte IP-Adresse zeigt Netblock.
country_code CHAR(2) Zweistelliger Ländercode basierend auf ISO 3166.
country_name VARCHAR(64) Ländername basierend auf ISO 3166.

IPv4
†† IPv6

Datenbank-Setup

Im Folgenden finden Sie die Schritte zum Einrichten der Datenbank für IPv4- und IPv6-Daten.

Datenbank erstellen
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_px1`(
	`ip_from` INT(10) UNSIGNED,
	`ip_to` INT(10) UNSIGNED,
	`country_code` CHAR(2),
	`country_name` VARCHAR(64),
	PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Datenbank importieren
LOAD DATA LOCAL
	INFILE 'IP2PROXY-LITE-PX1.CSV'
INTO TABLE
	`ip2location_px1`
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 0 LINES;
Datenbank erstellen
CREATE DATABASE ip2location
GO

USE ip2location
GO

CREATE TABLE [ip2location].[dbo].[ip2location_px1](
	[ip_from] bigint NOT NULL,
	[ip_to] bigint NOT NULL,
	[country_code] nvarchar(2) NOT NULL,
	[country_name] nvarchar(64) NOT NULL
) ON [PRIMARY]
GO

CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_px1]([ip_to]) ON [PRIMARY]
GO
Datenbank importieren
BULK INSERT [ip2location].[dbo].[ip2location_px1]
FROM '{PATH TO IP2PROXY-LITE-PX1.CSV}'
WITH
(
	FORMATFILE = '{PATH TO PX1.FMT}'
)
GO

HINWEIS: Sie müssen den folgenden FMT-Code kopieren und als Datei mit dem NamenPX1.FMT auf Ihrem Computer speichern.

12.0
5
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 2 "\",\"" 3 country_code Latin1_General_CI_AI,
5 SQLCHAR 0 64 "\",\"" 4 country_name Latin1_General_CI_AI

Datenbank erstellen
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_px1(
	ip_from bigint NOT NULL,
	ip_to bigint NOT NULL,
	country_code character(2) NOT NULL,
	country_name character varying(64) NOT NULL,
	CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
Datenbank importieren
COPY ip2location_px1 FROM 'IP2PROXY-LITE-PX1.CSV' WITH CSV QUOTE AS '"';
Datenbank importieren
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_px1_ipv6 --type csv --file "IP2PROXY-LITE-PX1.CSV" --fields ip_from,ip_to,country_code,country_name
Datenbank erstellen
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_px1_ipv6`(
	`ip_from` DECIMAL(39,0) UNSIGNED,
	`ip_to` DECIMAL(39,0) UNSIGNED,
	`country_code` CHAR(2),
	`country_name` VARCHAR(64),
	PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Datenbank importieren
LOAD DATA LOCAL
	INFILE 'IP2PROXY-LITE-PX1.IPV6.CSV'
INTO TABLE
	`ip2location_px1_ipv6`
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
IGNORE 0 LINES;
Datenbank erstellen
CREATE DATABASE ip2location
GO

USE ip2location
GO

CREATE TABLE [ip2location].[dbo].[ip2location_px1_ipv6](
	[ip_from] char(39) NOT NULL,
	[ip_to] char(39) NOT NULL,
	[country_code] nvarchar(2) NOT NULL,
	[country_name] nvarchar(64) NOT NULL
) ON [PRIMARY]
GO

CREATE CLUSTERED INDEX [ip_to] ON [ip2location].[dbo].[ip2location_px1_ipv6]([ip_to]) ON [PRIMARY]
GO
Datenbank importieren
BULK INSERT [ip2location].[dbo].[ip2location_px1_ipv6]
FROM '{PATH TO IP2PROXY-LITE-PX1.IPV6.CSV}'
WITH
(
	FORMATFILE = '{PATH TO PX1.FMT}'
)
GO

HINWEIS: Sie müssen den folgenden FMT-Code kopieren und als Datei mit dem NamenPX1.FMT auf Ihrem Computer speichern. Die erste Zeile des FMT-Codes gibt die Version von bcp an. Bitte ändern Sie die Version entsprechend Ihrer installierten MS-SQL.

12.0
5
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 2 "\",\"" 3 country_code Latin1_General_CI_AI,
5 SQLCHAR 0 64 "\",\"" 4 country_name Latin1_General_CI_AI

Datenbank erstellen
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_px1_ipv6(
	ip_from decimal(39,0) NOT NULL,
	ip_to decimal(39,0) NOT NULL,
	country_code character(2) NOT NULL,
	country_name character varying(64) NOT NULL,
	CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
Datenbank importieren
COPY ip2location_px1_ipv6 FROM 'IP2PROXY-LITE-PX1.IPV6.CSV' WITH CSV QUOTE AS '"';
Datenbank importieren
mongoimport -u USERNAME -p PASSWORD --authenticationDatabase admin --drop --db ip2location --collection ip2location_px1_ipv6 --type csv --file "IP2PROXY-LITE-PX1.IPV6.CSV" --fields ip_from,ip_to,country_code,country_name

AMI & Images

IP2Location bietet eine kostenlose, vorkonfigurierte und sofort einsatzbereite AMI und Images zum einfachen Einrichten der Datenbank.

Unterstützung

Bitte besuchen Sie Stack Overflow, um die technischen Fragen / Antworten zu unseren LITE-Produkten anzuzeigen.

Lizenz

Bitte lesen Sie die Allgemeinen Geschäftsbedingungen von für die Datenbanklizenzierung.

IP2Proxy IP Address Geolocation Database

In der Commercial Edition erhalten Sie viel mehr als nur die Suche nach IP-Adressen:

  • Bessere Datengenauigkeit
  • Zugriff auf aktuelle Datenbank
  • Zusätzlicher Support per E-Mail
Product Upgrade
Sign Up Pop Out

Geolocate Your Visitors Location

Enhance your applications with essential geolocation data by using our FREE databases.