1回答
- 新しい順
- 投票が多い順
- コメントが多い順
3
Yes, you can use a bastion host to connect to an external server through a private hosted zone in Route 53. Here are the high-level steps to set this up:
- Set up a private hosted zone in Route 53 for your domain.
- Set up your DNS records in the private hosted zone to point to your external server's IP address.
- Configure your VPC to use the private hosted zone for DNS resolution.
- Set up a bastion host in your VPC and configure it to allow SSH or RDP access to your external server.
- Connect to the bastion host using SSH or RDP, and then connect to the external server from there.
By using the private hosted zone, the DNS resolution for your domain will be handled within your VPC, so the requests won't leave your network. The bastion host will act as a jump server to allow you to connect securely to the external server without exposing it to the internet directly.
関連するコンテンツ
- 質問済み 1ヶ月前
- 質問済み 5年前
- AWS公式更新しました 2年前
- AWS公式更新しました 7ヶ月前
Thank you for detail description!