#!/bin/bash # # MILEHIGHWALRUS-ANYCAST IP Ranges - iptables/ipset rules # ASN: AS950 # Generated: 2025-12-16 # Source: ScaniteX (https://scanitex.com) # # Usage: chmod +x this_script.sh && sudo ./this_script.sh # # Create IPv6 ipset ipset create milehighwalrusanycast_v6 hash:net family inet6 -exist ipset flush milehighwalrusanycast_v6 # Add IPv6 ranges ipset add milehighwalrusanycast_v6 2602:fc09:960::/44 ipset add milehighwalrusanycast_v6 2602:fc09:950::/44 # Apply iptables rules (uncomment to use) # ip6tables -A INPUT -m set --match-set milehighwalrusanycast_v6 src -j ACCEPT # ip6tables -A INPUT -m set --match-set milehighwalrusanycast_v6 src -j DROP echo "IP ranges for MILEHIGHWALRUS-ANYCAST loaded successfully!" echo "IPv4 ranges: 0" echo "IPv6 ranges: 2"