Sec. 10: VPC Fundamentals

Sec. 10: VPC Fundamentals

University

8 Qs

quiz-placeholder

Similar activities

Computação em nuvem

Computação em nuvem

University

6 Qs

Prototipado 1

Prototipado 1

University - Professional Development

10 Qs

Test 1 - Tema 1: Intro AWS

Test 1 - Tema 1: Intro AWS

University

3 Qs

Sec. 18: Account Management, Billing & Support [2/2]

Sec. 18: Account Management, Billing & Support [2/2]

University

9 Qs

Sec. 6: EC2 Instance Storage

Sec. 6: EC2 Instance Storage

University

10 Qs

AWS 3 General Quiz

AWS 3 General Quiz

University

12 Qs

Sec. 14: Cloud Monitoring

Sec. 14: Cloud Monitoring

University

8 Qs

QUIZ 1 DMB4112

QUIZ 1 DMB4112

University

10 Qs

Sec. 10: VPC Fundamentals

Sec. 10: VPC Fundamentals

Assessment

Quiz

Instructional Technology

University

Medium

Created by

Renato Biz Martins

Used 3+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Security Groups operate at the ................. level while NACLs operate at the ................. level.

EC2 instance, Subnet

Subnet, EC2 instance

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You have attached an Internet Gateway to your VPC, but your EC2 instances still don't have access to the internet. What is NOT a possible issue?

Route Tables are missing entries

The EC2 instances don't have public IPs

The Security Group does not allow traffic in

The NACL does not allow network traffic out

Answer explanation

Security groups are stateful and if traffic can go out, then it can go back in.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You would like to provide Internet access to your EC2 instances in private subnets with IPv4 while making sure this solution requires the least amount of administration and scales seamlessly. What should you use?

NAT Instances with Source/Destination Check flag off

NAT Gateway

Egress Only Internet Gateway

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When using VPC Endpoints, what are the only two AWS services that have a Gateway Endpoint available?

Amazon S3 & Amazon SQS

Amazon SQS & DynamoDB

Amazon S3 & DynamoDB

Answer explanation

These two services have a VPC Gateway Endpoint (remember it), all the other ones have an Interface endpoint (powered by Private Link - means a private IP).

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You have 3 VPCs A, B, and C. You want to establish a VPC Peering connection between all the 3 VPCs. What should you do?

Establish 3 VPC Peering connections (A-B, A-C, B-C)

As VPC Peering supports Transitive Peering, so you need to establish 2 VPC Peering connections (A-B, B-C)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you capture information about IP traffic inside your VPCs?

Enable VPC Traffic Mirroring

Enable VPC Flow Logs

Enable CloudWatch Traffic Logs

Answer explanation

VPC Flow Logs is a VPC feature that enables you to capture information about the IP traffic going to and from network interfaces in your VPC.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You need to set up a dedicated connection between your on-premises corporate datacenter and AWS Cloud. This connection must be private, consistent, and traffic must not travel through the Internet. Which AWS service should you use?

Site-to-Site VPN

AWS PrivateLink

Amazon EventBridge

AWS Direct Connect

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A web application hosted on a fleet of EC2 instances managed by an Auto Scaling Group. You are exposing this application through an Application Load Balancer. Both the EC2 instances and the ALB are deployed on a VPC with the following CIDR 192.168.0.0/18. How do you configure the EC2 instances' security group to ensure only the ALB can access them on port 80?

Add an Inbound Rule with port 80 and 0.0.0.0/0 as the source

Add an Inbound Rule with port 80 and 192.168.0.0/18 as the source

Add an Inbound Rule with port 80 and ALB's Security Group as the source

Load an SSL certificate on the ALB

Answer explanation

This is the most secure way of ensuring only the ALB can access the EC2 instances. Referencing by security groups in rules is an extremely powerful rule and many questions at the exam rely on it. Make sure you fully master the concepts behind it!