#!/bin/bash # # CABLELYNX IP Ranges - iptables/ipset rules # ASN: AS1651 # Generated: 2025-12-13 # Source: ScaniteX (https://scanitex.com) # # Usage: chmod +x this_script.sh && sudo ./this_script.sh # # Create IPv4 ipset ipset create cablelynx_v4 hash:net -exist ipset flush cablelynx_v4 # Add IPv4 ranges ipset add cablelynx_v4 142.79.112.0/23 ipset add cablelynx_v4 69.50.242.0/23 ipset add cablelynx_v4 24.244.108.0/24 ipset add cablelynx_v4 206.255.158.0/23 ipset add cablelynx_v4 24.89.48.0/24 ipset add cablelynx_v4 206.255.243.0/24 ipset add cablelynx_v4 24.244.109.0/24 ipset add cablelynx_v4 206.255.156.0/22 ipset add cablelynx_v4 206.255.156.0/23 ipset add cablelynx_v4 206.255.160.0/21 ipset add cablelynx_v4 206.255.252.0/24 ipset add cablelynx_v4 206.255.218.0/24 # Apply iptables rules (uncomment to use) # iptables -A INPUT -m set --match-set cablelynx_v4 src -j ACCEPT # iptables -A INPUT -m set --match-set cablelynx_v4 src -j DROP echo "IP ranges for CABLELYNX loaded successfully!" echo "IPv4 ranges: 12" echo "IPv6 ranges: 0"