跳至主要內容

[aws] Lab 2-Building your Amazon VPC Infrastructure

Lab overview

As an AWS solutions architect, it is important that you understand the overall functionality and capabilities of Amazon Web Service (AWS) and the relationship between the AWS networking components. In this lab, you create an Amazon Virtual Private Cloud (Amazon VPC), a public and a private subnet in a single Availability Zone, public and private routes, a NAT gateway, and an internet gateway. These services are the foundation of networking architecture inside of AWS. This architecture design covers concepts of infrastructure, design, routing, and security.

The following image shows the final architecture for this lab environment:

Final Architecture Diagram.

OBJECTIVES

After completing this lab, you should know how to do the following:

  • Create an Amazon VPC.
  • Create public and private subnets.
  • Create an internet gateway.
  • Configure a route table and associate it to a subnet.
  • Create an Amazon Elastic Compute Cloud (Amazon EC2) instance and make the instance publicly accessible.
  • Isolate an Amazon EC2 instance in a private subnet.
  • Create and assign security groups to Amazon EC2 instances.
  • Connect to Amazon EC2 instances using Session Manager, a capability of AWS Systems Manager.

ICON KEY

Various icons are used throughout this lab to call attention to different types of instructions and notes. The following list explains the purpose for each icon:

  •  Command: A command that you must run.
  •  Expected output: A sample output that you can use to verify the output of a command or edited file.
  •  Note: A hint, tip, or important guidance.
  •  Learn more: Where to find more information.
  •  Security: An opportunity to incorporate security best practices.
  •  Caution: Information of special interest or importance (not so important to cause problems with the equipment or data if you miss it, but it could result in the need to repeat certain steps).
  •  WARNING: An action that is irreversible and could potentially impact the failure of a command or process (including warnings about configurations that cannot be changed after they are made).

Start lab

  1. To launch the lab, at the top of the page, choose Start lab.

 Caution: You must wait for the provisioned AWS services to be ready before you can continue.

  1. To open the lab, choose Open Console.

You are automatically signed in to the AWS Management Console in a new web browser tab.

 WARNING: Do not change the Region unless instructed.

COMMON SIGN-IN ERRORS

Error: You must first sign out

If you see the message, You must first log out before logging into a different AWS account:

  • Choose the click here link.
  • Close your Amazon Web Services Sign In web browser tab and return to your initial lab page.
  • Choose Open Console again.

Error: Choosing Start Lab has no effect

In some cases, certain pop-up or script blocker web browser extensions might prevent the Start Lab button from working as intended. If you experience an issue starting the lab:

  • Add the lab domain name to your pop-up or script blocker’s allow list or turn it off.
  • Refresh the page and try again.

SCENARIO

Your team has been tasked with prototyping an architecture for a new web-based application. To define your architecture, you need to have a better understanding of public and private subnets, routing, and Amazon EC2 instance options.

AWS SERVICES NOT USED IN THIS LAB

AWS services not used in this lab are deactivated in the lab environment. In addition, the capabilities of the services used in this lab are limited to only what the lab requires. Expect errors when accessing other services or performing actions beyond those provided in this lab guide.


Task 1: Create an Amazon VPC in a Region

In this task, you create a new Amazon VPC in the AWS Cloud.

 Learn more: With Amazon VPC, you can provision a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you define. You have complete control over your virtual networking environment, including selection of your own IP address ranges, creation of subnets, and configuration of route tables and network gateways. You can also use the enhanced security options in Amazon VPC to provide more granular access to and from the Amazon EC2 instances in your virtual network.

VPC Architecture Diagram.
  1. At the top of the AWS Management Console, in the search bar, search for and choose .

 Caution: Verify that the Region displayed in the top-right corner of the console is the same as the Region value on the left side of this lab page.

 Note: The VPC management console offers a VPC Wizard, which can automatically create several VPC architectures. However, in this lab you create the VPC components manually.

  1. In the left navigation pane, choose Your VPCs.

The console displays a list of your currently available VPCs. A default VPC is provided so that you can launch resources as soon as you start using AWS.

  1. Choose Create VPC and configure the following:
  • Resources to create: Choose  VPC only.
  • Name tag – optional: Enter 
  • IPv4 CIDR: Enter 
  1. Choose Create VPC.

A  You successfully created vpc-xxxxxxxxxx / Lab VPC message is displayed on top of the screen.

The VPC Details page is displayed.

  1. Verify the state of the Lab VPC.

 Expected output: It should display the following:

  • State:  Available

 The lab VPC has a Classless Inter-Domain Routing (CIDR) range of 10.0.0.0/16, which includes all IP addresses that start with 10.0.x.x. This range contains over 65,000 addresses. You later divide the addresses into separate subnets.

  1. From the same page, choose Actions  and choose Edit VPC settings.

The Edit VPC settings page is displayed.

  1. From the DNS settings section, select  Enable DNS hostnames.

This option assigns a friendly Domain Name System (DNS) name to Amazon EC2 instances in the VPC, such as the following:

ec2-52-42-133-255.us-west-2.compute.amazonaws.com

  1. Choose Save.

A  You have successfully modified the settings for vpc-xxxxxxxxxx / Lab VPC. message is displayed on top of the screen.

Any Amazon EC2 instances launched into this Amazon VPC now automatically receive a DNS hostname. You can also create a more meaningful DNS name (for example, app.company.com) using records in Amazon Route 53.

 Congratulations! You have successfully created your own VPC and now you can launch the AWS resources in this defined virtual network.


Task 2: Create public subnets and private subnets

In this task, you create a public subnet and a private subnet in the lab VPC. To add a new subnet to your VPC, you must specify an IPv4 CIDR block for the subnet from the range of your VPC. You can specify the Availability Zone in which you want the subnet to reside. You can have multiple subnets in the same Availability Zone.

Subnets Architecture Diagram.

 Note: A subnet is a sub-range of IP addresses within a network. You can launch AWS resources into a specified subnet. Use a public subnet for resources that must be connected to the internet, and use a private subnet for resources that are to remain isolated from the internet.

TASK 2.1: CREATE YOUR PUBLIC SUBNET

The public subnet is for internet-facing resources.

  1. In the left navigation pane, choose Subnets.
  2. Choose Create subnet and configure the following:
  • VPC ID: Select Lab VPC from the dropdown menu.
  • Subnet name: Enter .
  • Availability Zone: Select the first Availability Zone in the list. (Do not choose No Preference.)
  • IPv4 CIDR block: Enter .
  1. Choose Create subnet.

A  You have successfully created 1 subnet: subnet-xxxxxx message is displayed on top of the screen.

  1. Verify the state.

 Expected output: It should display the following:

  • State:  Available

 Note: The VPC has a CIDR range of 10.0.0.0/16, which includes all 10.0.x.x IP addresses. The subnet you just created has a CIDR range of 10.0.0.0/24, which includes all 10.0.0.x IP addresses. These ranges might look similar, but the subnet is smaller than the VPC because of the /24 in the CIDR range.

Now, configure the subnet to automatically assign a public IP address for all instances launched within it.

  1. Select  Public Subnet.
  2. Choose Actions  and choose Edit subnet settings.

The Edit subnet settings page is displayed.

  1. From the Auto-assign IP settings section, select  Enable auto-assign public IPv4 address.
  2. Choose Save.

A  You have successfully changed subnet settings: Enable auto-assign public IPv4 address message is displayed on top of the screen.

 Note: Even though this subnet is named Public Subnet, it is not yet public. A public subnet must have an internet gateway and route to the gateway. You create and attach the internet gateway and route tables in this lab.

TASK 2.2: CREATE YOUR PRIVATE SUBNET

The private subnet is for resources that are to remain isolated from the internet.

  1. Choose Create subnet, and then configure the following:
  • VPC ID: Select Lab VPC from the dropdown menu.
  • Subnet name: Enter .
  • Availability Zone: Select the first Availability Zone in the list. (Do not choose No Preference.)
  • IPv4 CIDR block: Enter .
  1. Choose Create subnet.

A  You have successfully created 1 subnet: subnet-xxxxxx message is displayed on top of the screen.

  1. Verify the state.

 Expected output: It should display the following:

  • State:  Available

 Note: The CIDR block of 10.0.2.0/23 includes all IP addresses that start with 10.0.2.x and 10.0.3.x. This is twice as large as the public subnet because most resources should be kept private, unless they specifically need to be accessible from the internet.

Your VPC now has two subnets. However, these subnets are isolated and cannot communicate with resources outside the VPC. Next, you configure the public subnet to connect to the internet through an internet gateway.

 Congratulations! You have successfully created a public subnet and a private subnet in the lab VPC.


Task 3: Create an internet gateway

In this task, you create an internet gateway so that internet traffic can access the public subnet. To grant access to or from the internet for instances in a subnet in a VPC, you create an internet gateway and attach it to your VPC. Then you add a route to your subnet’s route table that directs internet-bound traffic to the internet gateway.

 Learn more: An internet gateway serves two purposes: To provide a target in your VPC route tables for internet-bound traffic, and to perform network address translation (NAT) for instances that have been assigned public IPv4 addresses.

  1. In the left navigation pane, choose Internet gateways.
  2. Choose Create internet gateway and configure the following:
  • Name tag: Enter .
  1. Choose Create internet gateway.

A  The following internet gateway was created: igw-xxxxxx – Lab IGW. You can now attach to a VPC to enable the VPC to communicate with the internet. message is displayed on top of the screen.

You can now attach the internet gateway to your Lab VPC.

  1. From the same page, choose Actions  and choose Attach to VPC.
  2. For Available VPCs, select Lab VPC from the dropdown menu.
  3. Choose Attach internet gateway.

A  Internet gateway igw-xxxxx successfully attached to vpc-xxxxx message is displayed on top of the screen.

  1. Verify the state.

 Expected output: It should display the following:

  • State:  Attached

The internet gateway is now attached to your Lab VPC. Even though you have created an internet gateway and attached it to your VPC, you must also configure the route table of the public subnet to use the internet gateway.

 Congratulations! You have successfully created an internet gateway so that internet traffic can access the public subnet.


Task 4: Route internet traffic in the public subnet to the internet gateway

In this task, you create a route table and add a route to the route table to direct internet-bound traffic to your internet gateway and associate your public subnets with your route table. Each subnet in your VPC must be associated with a route table; the table controls the routing for the subnet. A subnet can only be associated with one route table at a time, but you can associate multiple subnets with the same route table.

 Learn more: A route table contains a set of rules, called routes, that are used to determine where network traffic is directed. To use an internet gateway, your subnet’s route table must contain a route that directs internet-bound traffic to the internet gateway. You can scope the route to all destinations not explicitly known to the route table (0.0.0.0/0 for IPv4 or ::/0 for IPv6), or you can scope the route to a narrower range of IP addresses. If your subnet is associated with a route table that has a route to an internet gateway, it’s known as a public subnet.

  1. In the left navigation pane, choose Route tables.

There is currently one default route table associated with the VPC, Lab VPC. This routes traffic locally. You now create an additional route table to route public traffic to your internet gateway.

  1. Choose Create route table, and then configure the following:
  • Name – optional: Enter .
  • VPC: Select Lab VPC from the dropdown menu.
  1. Choose Create route table.

A  Route table rtb-xxxxxxx | Public Route Table was created successfully. message is displayed on top of the screen.

  1. Choose the Routes tab in the lower half of the page.

 Note: There is one route in your route table that allows traffic within the 10.0.0.0/16 network to flow within the network, but it does not route traffic outside of the network.

You now add a new route to permit public traffic.

  1. Choose Edit routes.
  2. Choose Add route, and then configure the following:
  • Destination: Enter .
  • Target: Choose Internet Gateway in the dropdown menu, and then choose the displayed internet gateway ID.
  1. Choose Save changes.

A  Updated routes for rtb-xxxxxxx / Public Route Table successfully message is displayed on top of the screen.

  1. Choose the Subnet associations tab.
  2. Choose Edit subnet associations.
  3. Select  Public Subnet
  4. Choose Save associations.

A  You have successfully updated subnet associations for rtb-xxxxxxx / Public Route Table. message is displayed on top of the screen.

 Note: The subnet is now public because it has a route to the internet through the internet gateway.

 Congratulations! You have successfully configured the route table.


Task 5: Create a public security group

In this task, you create a security group so that users can access your Amazon EC2 instance. Security groups in a VPC specify which traffic is allowed to or from an Amazon EC2 instance.

 Learn more: You can use Amazon EC2 security groups to help secure instances within an Amazon VPC. By using security groups in a VPC, you can specify both inbound and outbound network traffic that is allowed to or from each Amazon EC2 instance. Traffic that is not explicitly allowed to or from an instance is automatically denied.

 Security: It is recommended to use HTTPS protocol to improve web traffic security. However, to simplify this lab, only HTTP protocol is used.

  1. In the left navigation pane, choose Security groups.
  2. Choose Create security group, and then configure the following:
  • Security group name: Enter .
  • Description: Enter .
  • VPC: Select Lab VPC from the dropdown menu.
  1. In the Inbound rules section, choose Add rule and configure the following:
  • Type: Select HTTP from the dropdown menu.
  • Source: Select Anywhere-IPv4 from the dropdown menu.
  1. In the Tags – optional section, choose Add new tag and configure the following:
  • Key: Enter .
  • Value: Enter .
  1. Choose Create security group.

A  Security group (sg-xxxxxxx | Public SG) was created successfully message is displayed on top of the screen.

 Congratulations! You have successfully created a security group that allows HTTP traffic. You need this in the next task when you launch an Amazon EC2 instance in the public subnet.


Task 6: Launch an Amazon EC2 instance into a public subnet

In this task, you launch an Amazon EC2 instance into a public subnet. To activate communication over the internet for IPv4, your instance must have a public IPv4 address that’s associated with a private IPv4 address on your instance. By default, your instance is only aware of the private (internal) IP address space defined within the VPC and subnet.

EC2 Instance Architecture Diagram.

 Learn more: The internet gateway that you created logically provides the one-to-one NAT on behalf of your instance. So when traffic leaves your VPC subnet and goes to the internet, the reply address field is set to the public IPv4 address or Elastic IP address of your instance, and not its private IP address.

  1. At the top of the AWS Management Console, in the search bar, search for and choose .

The Amazon EC2 Management Console is displayed.

TASK 6.1: BEGIN THE INSTANCE CONFIGURATION

  1. From the console navigation menu on the left, choose EC2 Dashboard.
  2. From the Launch instances section, choose Launch instances.

The Launch an instance page is displayed.

TASK 6.2: ADD TAGS TO THE INSTANCE

You can use tags to categorize your AWS resources in different ways, such as by purpose, owner, or environment. You can apply tags to most AWS Cloud resources. Each tag consists of a key and a value, both of which you define. One use of tags is for when you must manage many resources of the same type. You can quickly search for and identify a specific resource by the tag you have applied to it.

In this task, you add a tag to the Amazon EC2 instance.

  1. Locate the Name and tags section.
  2. In the Name field, enter .

 Note: No additional instance tags are required for this lab.

TASK 6.3: SELECT AN AMI

In this task, you choose an Amazon Machine Image (AMI). The AMI contains a copy of the disk volume used to launch the instance.

  1. Locate the Application and OS Images (Amazon Machine Image) section.
  2. Ensure that Amazon Linux is selected as the OS.
  3. Ensure that Amazon Linux 2023 AMI is selected in the dropdown menu.

TASK 6.4: CHOOSE THE AMAZON EC2 INSTANCE TYPE

Each instance type allocates a specific combination of virtual CPUs (vCPUs), memory, disk storage, and network performance.

For this lab, use a t3.micro instance type. This instance type has 2 vCPUs and 1 GiB of memory.

  1. Locate the Instance type section.
  2. From the Instance type dropdown menu, choose t3.micro.

TASK 6.5: CONFIGURE KEY PAIR FOR LOGIN

  1. Locate the Key pair (login) section.
  2. From the Key pair name – required dropdown menu, choose Proceed without a key pair (Not recommended) .

TASK 6.6: CONFIGURE INSTANCE NETWORKING

  1. Locate the Network settings section.
  2. Choose Edit.
  3. Configure the following settings from the dropdown menus:
  • VPC – required: Select Lab VPC.
  • Subnet: Select Public Subnet.
  • Auto-assign public IP: Select Enable.

TASK 6.7: CONFIGURE INSTANCE SECURITY GROUPS

You can use security groups to define both the allowed/denied and the inbound/outbound traffic for the elastic network interface. The network interface is attached to an Amazon EC2 instance. Port 80 is the default port for HTTP traffic, and it is necessary for the web server you launch in this lab to work correctly.

  1. For Firewall (security groups), choose  Select existing security group.
  2. From the Common security groups dropdown menu, choose the security group that has a name like Public SG.

TASK 6.8: ADD STORAGE

You can use the Configure storage section to specify or modify the storage options for the instance and add additional Amazon Elastic Block Store (Amazon EBS) disk volumes attached to the instance. The EBS volumes can be configured in both their size and performance.

In this lab, the default storage settings are all that is needed. No changes are required.

TASK 6.9: CONFIGURE USER DATA

  1. Locate and expand the  Advanced details section.
  2. From the IAM instance profile dropdown menu, select the role that has a name like EC2InstProfile.

 Note: To install and configure the new instance as a web server, you provide a user data script that automatically runs when the instance launches.

  1. In the User data – optional section, copy and paste the following:
#!/bin/bash
# To connect to your EC2 instance and install the Apache web server with PHP
yum update -y
yum install -y httpd php8.1
systemctl enable httpd.service
systemctl start httpd
cd /var/www/html
wget  https://us-west-2-tcprod.s3.amazonaws.com/courses/ILT-TF-200-ARCHIT/v7.7.1.prod-4c2a6419/lab-2-VPC/scripts/instanceData.zip
unzip instanceData.zip

The remaining settings on the page can be left at their default values.

TASK 6.10: REVIEW THE INSTANCE LAUNCH

Take a moment to review that the configuration for the Amazon EC2 instance you are about to launch is correct.

  1. Locate the Summary section.
  2. Choose Launch instance.

The Launch an instance page is displayed.

Your Amazon EC2 instance is now launched and configured as you specified.

  1. Choose View all instances.

The Amazon EC2 console is displayed.

  1. Occasionally choose the console refresh button  and wait for Public Instance to display the Instance state as  Running and wait for Status check to pass  2/2 checks passed.

 Note: The Amazon EC2 instance named Public Instance is initially in a Pending state. The instance state then changes to  Running indicating that the instance has finished booting.

 Congratulations! You have successfully launched an Amazon EC2 instance into a public subnet.


Task 7: Connect to a public instance through HTTP

In this task, you connect to the public instance and launch the basic Apache web server page. The inbound rules added earlier that allow HTTP access (port 80) allow you to connect to the web server running Apache.

  1. In the left navigation pane, choose Instances.
  2. Select  Public Instance.
  3. Choose the Networking tab in the lower pane.

 Note: If you need to make any section of the console larger, you can resize the horizontal edges of the containers displayed on the console.

  1. Locate the Public IPv4 DNS value.
  2. Copy  the public DNS value. Do not choose the open address  option, because HTTPS is not set up for this lab environment.
  3. Open a new browser tab and paste the public DNS value for Public Instance in the URL address bar.

The web page hosted on the Amazon EC2 instance is displayed. The page displays the instance ID and the AWS Availability Zone where the Amazon EC2 instance is located.

  1. Close the browser tab and return to the console.

 Congratulations! You have successfully launched an Apache web server in the public subnet and tested the HTTP connection. You can safely close the tab and return to the console.


Task 8: Connect to the Amazon EC2 instance in the public subnet through Session Manager

In this task, you connect to your Amazon EC2 instance in the public subnet using Session Manager.

 Learn more: Session Manager is a fully managed AWS Systems Manager capability that you use to manage your Amazon EC2 instances through an interactive one-click browser-based shell or through the AWS Command Line Interface (AWS CLI). You can use Session Manager to start a session with an Amazon EC2 instance in your account. After starting the session, you can run bash commands as you would through any other connection type.

  1. At the top of the AWS Management Console, in the search bar, search for and choose .
  2. In the left navigation pane, choose Instances.
  3. Select  Public Instance and choose Connect.

The Connect to instance page is displayed.

  1. Choose the Session Manager tab.

 Learn more: With Session Manager, you can connect to Amazon EC2 instances without needing to expose the SSH port on your firewall or Amazon VPC security group. For more information, see AWS Systems Manager Session Manager.

  1. Choose Connect.

A new browser tab or window opens with a connection to the Public Instance.

 Note: The Session Manager service is not updated in real time. If you experience errors with Session Manager connecting to an Amazon EC2 instance you just launched, ensure that you have given the instance a few minutes to launch, pass health checks, and communicate with the Session Manager service before trying to open a session connection again.

  1.  Command: Enter the following command to change to the home directory (/home/ssm-user/) and test web connectivity using the cURL command:
cd ~
curl -I https://aws.amazon.com/training/

 Expected output:

HTTP/2 200
content-type: text/html;charset=UTF-8
server: Server
date: Wed, 19 Apr 2023 14:43:47 GMT
x-amz-rid: 6HVPS1JY1XW2S1K34Q3Z
set-cookie: aws-priv=eyJ2IjoxLCJldSI6MCwic3QiOjB9; Version=1; Comment="Anonymous cookie for privacy regulations"; Domain=.aws.amazon.com; Max-Age=31536000; Expires=Thu, 18-Apr-2024 14:43:47 GMT; Path=/; Secure
set-cookie: aws_lang=en; Domain=.amazon.com; Path=/
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
strict-transport-security: max-age=63072000
x-content-type-options: nosniff
x-amz-id-1: 6HVPS1JY1XW2S1K34Q3Z
last-modified: Thu, 30 Mar 2023 15:58:02 GMT
content-security-policy-report-only: default-src *; connect-src *; font-src * data:; frame-src *; img-src * data:; media-src *; object-src *; script-src *; style-src 'unsafe-inline' *; report-uri https://prod-us-west-2.csp-report.marketing.aws.dev/submit
vary: accept-encoding,Content-Type,Accept-Encoding,User-Agent
x-cache: Miss from cloudfront
via: 1.1 88c333921d5c405e037b84bb8c2dc33e.cloudfront.net (CloudFront)
x-amz-cf-pop: GRU3-P1
x-amz-cf-id: 89R1wtM9vYV0kIQXrEVkcoNzg_C3UfQJIEVkC5BA3xiIH3FD0nVnYw==

 Congratulations! You have successfully connected to your public instance using Session Manager. You can safely close the tab and return to the console.


Task 9: Create a NAT gateway and configuring routing in the private subnet

In this task, you create a NAT gateway and then create a route table to route non-local traffic to the NAT gateway. You then attach the route table to the private subnet. You can use a NAT gateway to allow instances in a private subnet to connect to the internet or other AWS services, but prevent the internet from initiating a connection with those instances.

 Note: To create a NAT gateway, you must specify the public subnet in which the NAT gateway should reside. You must also specify an Elastic IP address to associate with the NAT gateway when you create it. You cannot change the Elastic IP address after you associate it with the NAT gateway. After you’ve created a NAT gateway, you must update the route table associated with one or more of your private subnets to point internet-bound traffic to the NAT gateway. This allows instances in your private subnets to communicate with the internet.

  1. Return to the AWS Management Console browser tab.
  2. At the top of the AWS Management Console, in the search box, search for and choose .
  3. In the left navigation pane, choose NAT gateways.
  4. Choose Create NAT gateway and configure the following:
  • Name – optional: Enter .
  • Subnet: Select Public Subnet from the dropdown menu.
  • For Elastic IP allocation ID, choose Allocate Elastic IP.
  1. Choose Create NAT gateway.

A  NAT gateway nat-xxxxxxx | Lab NGW was created successfully. message is displayed on top of the screen.

In the next step, you create a new route table for a private subnet that redirects non-local traffic to the NAT gateway.

  1. In the left navigation pane, choose Route tables.
  2. Choose Create route table and configure the following:
  • Name – optional: Enter .
  • VPC: Select Lab VPC from the dropdown menu.
  1. Choose Create route table.

A  Route table rtb-xxxxxxx | Private Route Table was created successfully. message is displayed on top of the screen.

The private route table is created and the details page for the private route table is displayed.

  1. Choose the Routes tab.

There is currently one route that directs all traffic locally.

You now add a route to send internet-bound traffic through the NAT gateway.

  1. Choose Edit routes.
  2. Choose Add route and then configure the following:
  • Destination: Enter .
  • Target: Choose NAT Gateway in the dropdown menu, and then choose the displayed NAT Gateway ID.
  1. Choose Save changes.

A  Updated routes for rtb-xxxxxxx / Private Route Table successfully message is displayed on top of the screen.

  1. Choose the Subnet associations tab.
  2. Choose Edit subnet associations.
  3. Select  Private Subnet.
  4. Choose Save associations.

A  You have successfully updated subnet associations for rtb-xxxxxxx / Private Route Table. message is displayed on top of the screen.

This route sends internet-bound traffic from the private subnet to the NAT gateway that is in the same Availability Zone.

 Congratulations! You have successfully created the NAT gateway and configured the private route table.


Task 10: Create a security group for private resources

In this task, you create a security group that allows incoming HTTP traffic from resources assigned to the public security group. In a multi-tiered architecture, resources in a private subnet are should not directly accessible from the internet, however their is a common use case to route web traffic from publicly accessible resources to private resources.

 Learn more: When you specify a security group as the source for a rule, traffic is allowed from the network interfaces that are associated with the source security group for the specified port and protocol. Incoming traffic is allowed based on the private IP addresses of the network interfaces that are associated with the source security group (and not the public IP or Elastic IP addresses). Adding a security group as a source does not add rules from the source security group.

  1. In the left navigation pane, choose Security groups.
  2. Choose Create security group, and then configure the following:
  • Security group name: Enter .
  • Description: Enter .
  • VPC: Select Lab VPC from the dropdown menu.
  1. In the Inbound rules section, choose Add rule and configure the following:
  • Type: Select HTTP.
  • Source: Select Custom.
    • In the box to the right of Custom, type .
    • Choose Public SG from the list.
  1. In the Tags – optional section, choose Add new tag and configure the following:
  • Key: Enter .
  • Value: Enter .
  1. Choose Create security group.

A  Security group (sg-xxxxxxx | Private SG) was created successfully message is displayed on top of the screen.

 Congratulations! You have successfully created the private security group.


Task 11: Launch an Amazon EC2 instance into a private subnet

In this task, you launch an Amazon EC2 instance into a private subnet.

 Learn more: Private instances can route their traffic through a NAT gateway or a NAT instance to access the internet. Private instances use the public IP address of the NAT gateway or NAT instance to traverse the internet. The NAT gateway or NAT instance allows outbound communication but doesn’t allow machines on the internet to initiate a connection to the privately addressed instances.

  1. At the top of the AWS Management Console, in the search bar, search for and choose .

The Amazon EC2 console is displayed.

TASK 11.1: BEGIN THE INSTANCE CONFIGURATION

  1. Choose EC2 Dashboard from the console navigation menu on the left.
  2. Choose Launch instance from the Launch instance section.

The Launch an instance page is displayed. In this task, you add a tag to the Amazon EC2 instance.

  1. Locate the Name and tags section.
  2. Enter  in the Name field.

 Note: No additional instance tags are required for this lab.

TASK 11.3: SELECT AN AMI

In this task, you choose an AMI. The AMI contains a copy of the disk volume used to launch the instance.

  1. Locate the Application and OS Images (Amazon Machine Image) section.
  2. Ensure that Amazon Linux is selected as the OS.
  3. Ensure that Amazon Linux 2023 AMI is selected in the dropdown menu.

TASK 11.4: CHOOSE THE AMAZON EC2 INSTANCE TYPE

Each instance type allocates a specific combination of vCPUs, memory, disk storage, and network performance.

For this lab, use a t3.micro instance type. This instance type has 2 vCPUs and 1 GiB of memory.

  1. Locate the Instance type section.
  2. Choose t3.micro from the Instance type dropdown menu.

TASK 11.5: CONFIGURE KEY PAIR FOR LOGIN

  1. Locate the Key pair (login) section.
  2. Choose Proceed without a key pair (Not recommended)  from the Key pair name – required dropdown menu.

TASK 11.6: CONFIGURE INSTANCE NETWORKING

  1. Locate the Network settings section.
  2. Choose Edit and configure the following settings from the dropdown menus:
  • VPC – required: Select Lab VPC.
  • Subnet: Select Private Subnet.
  • Auto-assign public IP: Select Disable.

TASK 11.7: CONFIGURE INSTANCE SECURITY GROUPS

  1. For Firewall (security groups), choose  Select existing security group
  2. Choose the security group that has a name like Private SG from the Common security groups dropdown menu.

TASK 11.8: ADD STORAGE

You can use the Configure storage section to specify or modify the storage options for the instance and add additional Amazon Elastic Block Store (Amazon EBS) disk volumes attached to the instance. The EBS volumes can be configured in both their size and performance.

In this lab, the default storage settings are all that is needed. No changes are required.

TASK 11.9: CONFIGURE THE IAM INSTANCE PROFILE

  1. Locate and expand the  Advanced details section.
  2. Choose the EC2InstProfile role from the IAM instance profile dropdown menu.

The remaining settings on the page can be left at their default values.

TASK 11.10: CONFIGURE USER DATA

  1. Locate and expand the  Advanced details section.
  2. From the IAM instance profile dropdown menu, select the role that has a name like EC2InstProfile.

 Note: To install and configure the new instance as a web server, you provide a user data script that automatically runs when the instance launches.

  1. In the User data – optional section, copy and paste the following:
#!/bin/bash
# To connect to your EC2 instance and install the Apache web server with PHP
yum update -y
yum install -y httpd php8.1
systemctl enable httpd.service
systemctl start httpd
cd /var/www/html
wget  https://us-west-2-tcprod.s3.amazonaws.com/courses/ILT-TF-200-ARCHIT/v7.7.1.prod-4c2a6419/lab-2-VPC/scripts/instanceData.zip
unzip instanceData.zip

The remaining settings on the page can be left at their default values.

TASK 11.11: REVIEW THE INSTANCE LAUNCH

Take a moment to review that the configuration for the Amazon EC2 instance you are about to launch is correct.

  1. Locate the Summary section.
  2. Choose Launch instance.

The Launch an instance page is displayed.

Your Amazon EC2 instance is now launched and configured as you specified.

  1. Choose View all instances.

The Amazon EC2 console is displayed.

The Amazon EC2 instance name Private Instance is initially in a Pending state. The state then changes to Running, indicating that the instance has finished booting.

  1. Occasionally choose the console refresh button  and wait for the Instance state to change to  Running.

 Congratulations! You have successfully launched an Amazon EC2 instance into a private subnet.


Task 12: Connect to the Amazon EC2 instance in the private subnet

In this task, you connect to the Amazon EC2 instance in the private subnet using Session Manager.

  1. In the left navigation pane, choose Instances.
  2. Select  Private Instance and choose Connect.

The Connect to instance page is displayed.

  1. Choose the Session Manager tab.
  2. Choose Connect.

A new browser tab or window opens with a connection to the Private Instance.

 Note: The Session Manager service is not updated in real time. If you experience errors with Session Manager connecting to an Amazon EC2 instance you just launched, ensure that you have given the instance a few minutes to launch, pass health checks, and communicate with the Session Manager service before trying to open a session connection again.

  1.  Command: Enter the following command to change to the home directory (/home/ssm-user/) and test web connectivity using the cURL command:
cd ~
curl -I https://aws.amazon.com/training/

 Expected output:

HTTP/2 200
content-type: text/html;charset=UTF-8
server: Server
date: Wed, 19 Apr 2023 14:59:09 GMT
x-amz-rid: AZPXJ57K93ERATZV588Z
set-cookie: aws-priv=eyJ2IjoxLCJldSI6MCwic3QiOjB9; Version=1; Comment="Anonymous cookie for privacy regulations"; Domain=.aws.amazon.com; Max-Age=31536000; Expires=Thu, 18-Apr-2024 14:59:08 GMT; Path=/; Secure
set-cookie: aws_lang=en; Domain=.amazon.com; Path=/
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
strict-transport-security: max-age=63072000
x-content-type-options: nosniff
x-amz-id-1: AZPXJ57K93ERATZV588Z
last-modified: Thu, 30 Mar 2023 15:58:02 GMT
content-security-policy-report-only: default-src *; connect-src *; font-src * data:; frame-src *; img-src * data:; media-src *; object-src *; script-src *; style-src 'unsafe-inline' *; report-uri https://prod-us-west-2.csp-report.marketing.aws.dev/submit
vary: accept-encoding,Content-Type,Accept-Encoding,User-Agent
x-cache: Miss from cloudfront
via: 1.1 fb6a4eca9caced7b791557c24b8c6606.cloudfront.net (CloudFront)
x-amz-cf-pop: GRU3-P1
x-amz-cf-id: Tjphb1UhSXmtyHvybuq4QIFwzTurEI0g_saLB2nLjlYRiBbHbqn85Q==
  1. Close the Session Manager tab and return to the console.

 Congratulations! You have successfully connected to a private instance using Session Manager.


(Optional) Task 1: Troubleshooting connectivity between the private instance and the public instance

In this optional task, you use the Internet Control Message Protocol (ICMP) to validate a private instance’s network reachability from the public instance.

 Note: This task is optional and is provided in case you have lab time remaining. You can complete this task or skip to the end of the lab.

  1. Return to the AWS Management Console browser tab.
  2. In the left navigation pane, choose Instances.
  3. Select  Private Instance.
  4. On the Details tab, copy the value of Private IPv4 addresses to your clipboard.

 Note: To copy the private IPv4 address, hover over it and choose the copy  icon.

  1. Unselect  Private Instance.
  2. Select  Public Instance.
  3. Choose Connect.

The Connect to instance page is displayed.

  1. Choose the Session Manager tab.
  2. Choose Connect.

A new browser tab or window opens with a connection to the Public Instance.

First, use a curl command to retrieve a header file and confirm is the web app hosted on the private instance is reachable from the public instance.

  1.  Command: Copy the following command to your notepad. Replace PRIVATE_IP with the value of the Private IPv4 address for the Private Instance:
curl PRIVATE_IP

 Expected output:

<html><body><h1>It works!</h1></body></html>
  1.  Command: Copy the following command to your notepad. Replace PRIVATE_IP with the value of the Private IPv4 address for the Private Instance:
ping PRIVATE_IP
  1.  Command: Copy and paste the updated command in your terminal and press Enter.

 This is a sample command only. Do not use the following command.

ping 10.0.2.131
  1. After a few seconds, stop the ICMP ping request by pressing CTRL+C.

The ping request to the private instance fails. Your challenge is to use the console and figure out the correct inbound rule required in the Private SG to be able to successfully ping the private instance.

If you have trouble completing the optional task, refer to the Optional Task Solution section at the end of the lab.


(Optional) Task 2: Retrieving instance metadata

In this optional task, you run instance metadata commands on AWS CLI using a tool such as cURL. Instance metadata is available from your running Amazon EC2 instance. This can be helpful when you write scripts to run from your Amazon EC2 instance.

 Note: This task is optional and is provided in case you have lab time remaining. You can complete this task or skip to the end of the lab .

  1. Return to the browser tab with the AWS Management Console open.
  2. In the left navigation pane, choose Instances.
  3. Select  Public Instance.
  4. Choose Connect.

The Connect to instance page is displayed.

  1. Choose the Session Manager tab.
  2. Choose Connect.

A new browser tab or window opens with a connection to the Public Instance.

  1.  Command: To view all categories of instance metadata from within a running instance, run the following command:
TOKEN=`curl -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 21600"` \
&& curl -H "X-aws-ec2-metadata-token: $TOKEN" -v http://169.254.169.254/latest/meta-data/
  1.  Command: Run the following command to retrieve the public-hostname (one of the top-level metadata items that were obtained in the preceding command):
curl -H "X-aws-ec2-metadata-token: $TOKEN" -v http://169.254.169.254/latest/meta-data/public-hostname

 Note: The IP address 169.254.169.254 is a link-local address and is valid only from the instance.

You have successfully learned how to retrieve instance metadata from your running Amazon EC2 instance.


Conclusion

Creating a VPC with both public and private subnets provides you the flexibility to launch tasks and services in either a public or private subnet. Tasks and services in the private subnets can access the internet through a NAT gateway.

 Congratulations! You now have successfully:

  • Created an Amazon VPC.
  • Created public and private subnets.
  • Created an internet gateway.
  • Configured a route table and associated it to a subnet.
  • Created an Amazon EC2 instance and made the instance publicly accessible.
  • Isolated an Amazon EC2 instance in a private subnet.
  • Created and assigned security groups to Amazon EC2 instances.
  • Connected to Amazon EC2 instances using Session Manager.

End lab

分類:aws
由 Compete Themes 設計的 Author 佈景主題