#!/bin/bash # # TEST-AUSTIN-IBM-AS IP Ranges - iptables/ipset rules # ASN: AS706 # Generated: 2025-12-16 # Source: ScaniteX (https://scanitex.com) # # Usage: chmod +x this_script.sh && sudo ./this_script.sh # # Create IPv4 ipset ipset create testaustinibmas_v4 hash:net -exist ipset flush testaustinibmas_v4 # Add IPv4 ranges ipset add testaustinibmas_v4 170.226.62.0/24 ipset add testaustinibmas_v4 129.33.199.0/24 ipset add testaustinibmas_v4 129.33.252.0/22 ipset add testaustinibmas_v4 129.42.160.0/24 ipset add testaustinibmas_v4 129.33.7.0/24 ipset add testaustinibmas_v4 129.33.205.0/24 ipset add testaustinibmas_v4 129.33.206.0/24 ipset add testaustinibmas_v4 129.33.247.0/24 ipset add testaustinibmas_v4 129.33.140.0/24 ipset add testaustinibmas_v4 129.41.95.0/24 ipset add testaustinibmas_v4 129.33.246.0/24 ipset add testaustinibmas_v4 129.33.6.0/24 ipset add testaustinibmas_v4 129.41.52.0/24 ipset add testaustinibmas_v4 129.33.203.0/24 ipset add testaustinibmas_v4 129.33.207.0/24 ipset add testaustinibmas_v4 129.42.208.0/24 # Apply iptables rules (uncomment to use) # iptables -A INPUT -m set --match-set testaustinibmas_v4 src -j ACCEPT # iptables -A INPUT -m set --match-set testaustinibmas_v4 src -j DROP echo "IP ranges for TEST-AUSTIN-IBM-AS loaded successfully!" echo "IPv4 ranges: 16" echo "IPv6 ranges: 0"