IP2Location™ LITE IP-ASN Database

Einführung

ASN Database

Diese Datenbank enthält eine Referenz zur Bestimmung des autonomen Systems und der Nummer (ASN). Ein autonomes System (AS) ist eine Sammlung von IP-Routing-Präfixen (Connected Internet Protocol), die von einem oder mehreren Netzwerkbetreibern als einzelne Verwaltungseinheit in der Routing-Richtlinie gesteuert werden.

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:

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

Sign Up For Free

Eigenschaften

Übersetzt die IP-Adresse in ein autonomes System (AS) und eine autonome Systemnummer (ASN).

Aktuelle Version April 2024
IPv4 Datenbankgröße 43.84 MB (598,248 Reihen)
IPv6 Datenbankgröße 53.29 MB (458,989 Reihen)
Array 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.
cidr VARCHAR(43) IP-Adressbereich in CIDR.
asn INT(10) Autonome Systemnummer (ASN).
as VARCHAR(256) Name des autonomen Systems (AS).

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_asn`(
	`ip_from` INT(10) UNSIGNED,
	`ip_to` INT(10) UNSIGNED,
	`cidr` VARCHAR(43),
	`asn` VARCHAR(10),
	`as` VARCHAR(256),
	PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Datenbank importieren
LOAD DATA LOCAL
	INFILE 'IP2LOCATION-LITE-ASN.CSV'
INTO TABLE
	`ip2location_asn`
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_asn](
	[ip_from] bigint NOT NULL,
	[ip_to] bigint NOT NULL,
	[cidr] nvarchar(43) NOT NULL,
	[asn] nvarchar(10) NOT NULL,
	[as] nvarchar(256) NOT NULL
) ON [PRIMARY]
GO

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

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

12.0
6
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 43 "\",\"" 3 cidr Latin1_General_CI_AI,
5 SQLCHAR 0 10 "\",\"" 4 asn Latin1_General_CI_AI,
6 SQLCHAR 0 256 "\",\"" 5 as Latin1_General_CI_AI
Datenbank erstellen
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_asn(
	ip_from bigint NOT NULL,
	ip_to bigint NOT NULL,
	cidr character varying(43) NOT NULL,
	asn character varying(10) NOT NULL,
	as character varying(256) NOT NULL,
	CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
Datenbank importieren
COPY ip2location_asn FROM 'IP2LOCATION-LITE-ASN.CSV' WITH CSV QUOTE AS '"';
Datenbank erstellen
CREATE DATABASE ip2location;
USE ip2location;
CREATE TABLE `ip2location_asn_ipv6`(
	`ip_from` DECIMAL(39,0) UNSIGNED,
	`ip_to` DECIMAL(39,0) UNSIGNED,
	`cidr` VARCHAR(43),
	`asn` VARCHAR(10),
	`as` VARCHAR(256),
	PRIMARY KEY (`ip_to`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Datenbank importieren
LOAD DATA LOCAL
	INFILE 'IP2LOCATION-LITE-ASN.IPV6.CSV'
INTO TABLE
	`ip2location_asn_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_asn_ipv6](
	[ip_from] char(39) NOT NULL,
	[ip_to] char(39) NOT NULL,
	[cidr] nvarchar(43) NOT NULL,
	[asn] nvarchar(10) NOT NULL,
	[as] nvarchar(256) NOT NULL
) ON [PRIMARY]
GO

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

HINWEIS: Sie müssen den folgenden FMT-Code kopieren und als Datei mit dem NamenASN.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
6
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 43 "\",\"" 3 cidr Latin1_General_CI_AI,
5 SQLCHAR 0 10 "\",\"" 4 asn Latin1_General_CI_AI,
6 SQLCHAR 0 256 "\",\"" 5 as Latin1_General_CI_AI
Datenbank erstellen
CREATE DATABASE ip2location WITH ENCODING 'UTF8';
\c ip2location
CREATE TABLE ip2location_asn_ipv6(
	ip_from decimal(39,0) NOT NULL,
	ip_to decimal(39,0) NOT NULL,
	cidr character varying(43) NOT NULL,
	asn character varying(10) NOT NULL,
	as character varying(256) NOT NULL,
	CONSTRAINT ip2location_db1_pkey PRIMARY KEY (ip_from, ip_to)
);
Datenbank importieren
COPY ip2location_asn_ipv6 FROM 'IP2LOCATION-LITE-ASN.IPV6.CSV' WITH CSV QUOTE AS '"';

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.

IP2Location IP-Adress-Geolocation-Datenbank

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.