You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
310 B
11 lines
310 B
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
# get ranges from telegram
|
|
curl -s https://core.telegram.org/resources/cidr.txt > /tmp/telegram.txt
|
|
|
|
# seperate IPv4 and IPv6, sort an uniq
|
|
grep -v ':' /tmp/telegram.txt | sort -V | uniq > telegram/ipv4.txt
|
|
grep ':' /tmp/telegram.txt | sort -V | uniq > telegram/ipv6.txt
|
|
|