반응형
json 파일로 확인 :
linux shell에서 명령어로 확인 :
$ curl https://ip-ranges.amazonaws.com/ip-ranges.json | jq -r '.prefixes[] | select(.region=="ap-northeast-2") | select(.service=="AMAZON") | .ip_prefix'
json 파싱을 위해서 jq 라이브러리가 필요함.
→ jq 라이브러리가 없다면 아래 명령어로 설치
$ sudo yum install jq
혹은
$ sudo apt-get install jq
참고
[1] AWS IP address ranges notifications -
https://docs.aws.amazon.com/general/latest/gr/aws-ip-ranges.html#subscribe-notifications
[2]AWS Tools for PowerShell -
https://aws.amazon.com/powershell/
[3] Querying the Public IP Address Ranges for AWS -
https://aws.amazon.com/blogs/developer/querying-the-public-ip-address-ranges-for-aws/
반응형
'개발관련 > AWS' 카테고리의 다른 글
AWS EKS 클러스터 인증 및 kubectl RBAC 설정 방법 (1) | 2020.10.08 |
---|---|
AWS SSM(Session Manager)을 이용하여 Pem key 필요 없이 AWS EC2에 접속하는 방법 (0) | 2020.08.20 |
CloudWatch 이상 동작 탐지 기능 사용하기 (0) | 2020.01.22 |
AWS EKS 클러스터 구축하기 (0) | 2020.01.17 |
S3에서 pdf파일을 바로 다운로드 되도록 설정하는 방법 (0) | 2018.08.24 |