반응형

aws cli 6

[AWS/CLI] describe-security-groups

Describes the specified security groups or all of your security groups.모든 보안그룹 상세정보 조회 aws ec2 describe-security-groups --profile {PROFILE_NAME}vpc-id로 필터링 aws ec2 describe-security-groups --profile {PROFILE_NAME} \ --filters "Name=vpc-id, Values=vpc-00000000000000000"VPC별 보안그룹에서 SSH(TCP 22) 룰이 있는 보안그룹 조회 aws ec2 describe-security-groups --profile {PROFILE_NAME} \ --filters "Name=vpc-id, Va..

📂 AWS 2021.11.15

[AWS/CLI] create-route

Creates a route in a route table within a VPC.VPC 내의 라우팅 테이블에 라우팅을 생성합니다.라우팅 대상으로 아래의 대상 중 1개를 지정해야합니다.Internet GatewayVirtual Private WatewayTransit GatewayNAT GatewayNAT instanceVPC Peering ConnectionNetwork InterfaceEgress-only Internet Gateway라우팅 경로가 결정되는 방법라우팅 경로는 가장 구체적인 경로를 따릅니다.예를 들어 192.0.2.3에 대하여 라우팅 경로를 결정하는데 1)192.0.2.0/24와 2)192.0.0.2.0/28이 있다면 2)가 더 적은 IP 주소 대역을 가지고 있으므로 더 구체적이라고 할..

📂 AWS 2021.10.27

[AWS/CLI] authorize-security-group-ingress

Adds the specified inbound (ingress) rules to a security group.보안 그룹에 지정한 인바운드룰을 추가합니다.출발지가 172.16.1.0/24인 SSH(TCP 22) 트래픽 허용하는 인바운드 룰을 추가한다. aws ec2 authorize-security-group-ingress \ --profile {PROFILE_NAME} \ --group-id {Security-Group-ID} \ --protocol tcp --port 22 --cidr 172.16.1.0/24출발지가 172.16.2.0/24인 ICMP 트래픽을 허용하는 인바운드 룰을 추가한다.-1은 모든 ICMP 유형에 대한 ICMP 코드를 의미합니다. aws ec2 authorize-se..

📂 AWS 2021.10.20

[AWS/CLI] describe-route-tables

Describes one or more of your route tables.모든 라우팅 테이블 ID 조회 aws ec2 describe-route-tables \ --profile {PROFILE_NAME} --output=json \ --query "RouteTables[*].RouteTableId[]"특정 VPC에 할당되어 있는 모든 라우팅 테이블 ID 조회 aws ec2 describe-route-tables \ --profile {PROFILE_NAME} --output=json \ --query "RouteTables[*].RouteTableId[]" \ --filters "Name=vpc-id,Values={VPC_ID}"특정 VPC에 할당되어 있는 라우팅 테이블 ID 조회(기본..

📂 AWS 2021.10.07

[AWS] AWS Cli 설정하기

액세스 키 ID, 비밀 액세스키IAM → 사용자 → 사용자 선택 → 보안 자격 증명 → 액세스키 만들기 → 액세스 키 ID, 비밀 액세스 키 기록비밀 액세스 키는 생성 시에만 보거나 다운로드 할 수 있습니다. 기존 비밀 액세스 키를 잘못 보관한 경우 새 액세스 키를 생성해야합니다.AWS CLI 설치 확인 (aws) aws --versionAWS CLI 등록 (aws configure) aws configure --profile {profile_name} AWS Access Key ID [None]: {액세스 키 ID} AWS Secret Access Key [None]: {비밀 액세스 키 기록} Default region name [None]: {리전 코드} Default output format [No..

📂 AWS 2021.09.03
반응형