CLOUD-IP // v2026.05
UPDATED 2026-05-26 PROVIDERS 24 LIVE
// FASTLY / SQL

Fastly · SQL

SQL inserts to load Fastly CIDRs into a database table. 21 CIDRs, refreshed daily.

// fastly_ips.sql

DOWNLOAD ↓  · 
-- SQL script to create table `fastly_ips` and insert IP addresses

CREATE TABLE IF NOT EXISTS `fastly_ips` (
  `ip_address` VARCHAR(45) NOT NULL,
  `ip_type` VARCHAR(10) NOT NULL,
  PRIMARY KEY (`ip_address`)
);

INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('23.235.32.0/20', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('43.249.72.0/22', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('103.244.50.0/24', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('103.245.222.0/23', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('103.245.224.0/24', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('104.156.80.0/20', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('140.248.64.0/18', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('140.248.128.0/17', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('146.75.0.0/17', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('151.101.0.0/16', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('157.52.64.0/18', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('167.82.0.0/17', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('167.82.128.0/20', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('167.82.160.0/20', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('167.82.224.0/20', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('172.111.64.0/18', 'IPv4');
INSERT INTO `fastly_ips` (`ip_address`, `ip_type`) VALUES ('185.31.16.0/22', 'IPv4');
… (4 more lines)