-
-
Save shawnbutts/5c6dc0ed11aec8eac36cdd6493aed924 to your computer and use it in GitHub Desktop.
Get IP Ranges from EC2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# You need: curl, jq, and ipcalc to run this. | |
# You should already have cut, sort and uniq if you're on OS X or Linux. | |
RANGES=$(curl -s https://ip-ranges.amazonaws.com/ip-ranges.json | jq .prefixes | jq '.[] | select(.region=="us-east-1")' | jq 'select(.service=="EC2")' | jq .ip_prefix | cut -d '"' -f 2 | sort | uniq) | |
for range in $RANGES | |
do | |
MIN=$(ipcalc -bn $range | grep "HostMin" | cut -d ':' -f 2) | |
MAX=$(ipcalc -bn $range | grep "HostMax" | cut -d ':' -f 2) | |
echo "$range (${MIN// /} - ${MAX// /})" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment