AWS Bastion Host

·

4 min read

Bastion Host is a server that provide access to private network from an external network such as the internet. Bastion Host acts as a secure gateway to access servers in private network.

Bastion Host is placed in public subnet that allows to access servers in private subnets which do not have public IP address.

In this article, we will create a bastion host in public subnet and access the server in private subnet which do not have public IP.

This article covers the following flow,

  1. Go to AWS console -> search VPC and select create VPC.

  2. Specify the VPC name and choose the required CIDR block range and select create VPC.

  3. List of VPC will be show here,

  4. Now we have to create a internet gateway to communicate with the internet.

    Select create Internet gateway.

  5. Provide the Internet gateway name and click create.

  6. Now we need to attach the Internet gateway to VPC.

    Open Internet Gateway -> Actions -> Attach to VPC.

  7. Select the VPC to attach the internet gatway.

  8. Now we need to create subnets for the VPC. We need one private subnet and public subnet. Go to subnets -> List of subnets will be displayed and select create subnet.

  9. Specify the subnet name and Select the CIDR block for subnet

  10. Select add new subnet to add private subnet and Specify the CIDR block.

  11. Created subnets will be displayed here,

  12. Now we need to create route table for public and private subnets.

    Go to Route table section -> Create route table.

  13. Specify the name and select VPC.

  14. Now the route table is created but we haven't associated them with subnets.

  15. Go to subnet associations and select the subnet to assciate with route table.

  16. Now we have successfully associated the subnet with route table. We need to assign the route from internet gateway to the route table.

  17. Go to routes -> Edit routes and add the destionation and Target.

    Target - In Target add the internet gateway that we created.

  18. Now the routing is created for our project,

  19. Create a new route table for private subnet.

  20. We have created route table for public and private subnets.

  21. Create a EC2 which will acts as bastion Host. Go to Ec2 -> Launch Instance.

    Give name to the instance and choose the OS Image.

  22. Select key pair for it and choose the vpc and public subnet we created. Also, Enable the Auto-assign public IP.

  23. Create a security group and assign a name to it allow ssh and source type anywhere.

    SSH - We are going to ssh into the EC2

    Source Type - Anywhere (Request can come from anywhere, we need to allow them to access public subnet).

  24. Now our public instance is created,

  25. Create a private Instance,

  26. Select the same key-pair we choose for public EC2.

    Select the VPC and private subnet.

  27. Modify the security Group

    In the security group, allow only source from public subnet.

  28. Now both Instance is created.

  29. Open the public Instance(Bastion Host) and copy the public IP address.

  30. Follow the process in connect option to connect to Ec2 using ssh.

  31. Enter into the instance

  32. If you are successfully entered into the ec2, it will looks like this,

  33. Now we need to copy the key-pair from local system to EC2(Bastion host)

    Copy the content of key-pair from local computer.

  34. Create a folder in ec2 instance.

  35. Use Vi command and paste the copied content from local computer to Ec2 Insatnce.

    After pasting the content, give :wq will is to specify save and quit.

  36. Change key permission and try ssh to connect to private instance

    Specify the private Ip of the EC2 in ssh command.

  37. Private instance Ip will be visible if connected successfully.

  38. We can verify this by opening the private Ec2 console and checking it private IP is same as our IP in terminal.

Conclusion :

In conclusion, Bastion host acts as a security gateway for the private resources.It helps to protect the sensitive internal resources from external threads and it is essential component for well designed network security stratergy.

Did you find this article valuable?

Support Gopinath J by becoming a sponsor. Any amount is appreciated!