1. git ssh 설정
2. ec2 접속
- bastion 우회접속
- ec2 유동 사설 IP 가져오기 ( aws cli )
- 위의 두개 결합후 하나의 .sh 파일에서 bastion 우회후 콘솔접속 없이 ip 주소 가져와서 접속
#!/bin/bash
# 변수로 받아온후
privateIpAddress=$(aws ec2 describe-instances --filter "Name=tag:Name,Values=인스턴스태그네임" --query "Reservations[*].Instances[*].[PrivateIpAddress]")
ssh -J myungsworld -i ~/.ssh/ec2.pem ec2-user@$privateIpAddress
위 스크립트를 아래와 같이 한번더 고도화 함
# vi ~/.ssh/config
Host bastion-myungsworld
HostName {IP주소}
User ec2-user
IdentitiesOnly yes
IdentityFile ~/.ssh/myungsworld-bastion.pem
Host myPrivateEC2
HostName {Ip주소}
User ec2-use
IdentitiesOnly yes
IdentityFile ~/.ssh/myungsworld-ec2.pem
ProxyJump bastion-myungsworld
# 이후에 아래 명령어로 접근
ssh myPrivateEC2
'AWS' 카테고리의 다른 글
Mysql Aurora 네이티브 함수로 - Lambda 호출 ( feat. golang) (1) | 2023.03.09 |
---|---|
VPC 피어링 (0) | 2022.11.03 |
aws ec2 ssh 접속 오류 (0) | 2022.10.23 |
AWS Cognito 소셜로그인 인증 구현 (golang) (2) | 2022.06.17 |
S3 영상이 재생이 안되고 다운로드가 된다? (0) | 2022.04.27 |