CLOUD-IP // v2026.07
UPDATED 2026-07-12 PROVIDERS 62 LIVE
// BUNNY / SQL

bunny · SQL

SQL inserts to load bunny CIDRs into a database table. 47 CIDRs, refreshed daily.

// bunny_ips.sql

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

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

INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('38.92.173.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('91.200.176.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('103.180.114.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('103.180.115.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('107.150.176.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('109.104.146.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('109.104.147.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('109.224.228.0/23', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('109.224.230.0/23', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('157.53.226.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('185.190.83.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('193.162.131.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('194.156.156.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('212.104.158.0/24', 'IPv4');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('2400:52e0:1::/48', 'IPv6');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('2400:52e0:2::/48', 'IPv6');
INSERT INTO `bunny_ips` (`ip_address`, `ip_type`) VALUES ('2400:52e0:1500::/48', 'IPv6');
… (30 more lines)