// TEAMCITY / SQL
TeamCity · SQL
SQL inserts to load TeamCity CIDRs into a database table. 11 CIDRs, refreshed daily.
// teamcity_ips.sql
-- SQL script to create table `teamcity_ips` and insert IP addresses
CREATE TABLE IF NOT EXISTS `teamcity_ips` (
`ip_address` VARCHAR(45) NOT NULL,
`ip_type` VARCHAR(10) NOT NULL,
PRIMARY KEY (`ip_address`)
);
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('52.49.162.42/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('52.214.29.36/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('185.223.133.26/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('34.255.77.87/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('52.208.252.98/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('54.155.204.237/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('79.125.74.147/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('63.32.4.62/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('52.17.73.242/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('52.209.101.160/32', 'IPv4');
INSERT INTO `teamcity_ips` (`ip_address`, `ip_type`) VALUES ('34.251.114.150/32', 'IPv4');