Files
lk/data/recfiles/ip_asn.md
2026-04-27 01:30:33 +02:00

21 lines
471 B
Markdown

---
title: IP Addresses with Recfiles
tags:
- data
- recfiles
- games
requires:
- data/recfiles.md
---
## Download the Database
Download the csv data, and separate the ipv4 data from the ipv6.
```sh
curl -Lo ips.zip 'https://www.kaggle.com/api/v1/datasets/download/ipinfo/ipinfo-country-asn'
unzip -p ips.zip country_asn.csv | csv2rec | recsel -e "start_ip ~ '\.'" > ipv4.rec
unzip -p ips.zip country_asn.csv | csv2rec | recsel -e "start_ip ~ '::'" > ipv6.rec
```