Network Concepts Flashcards

1
Q

What networking concepts should you already be familiar with?

A

The physical layout of AZs and Regions
VPCs and how to create them
How to create a private and public subnet
What a NAT is and how to disable Source/Dest checks
Route tables and routing terminology (default routes,
local routes, etc.
IPv4 Addressing and subnet mask notation
Intermediate Networking Terminology (MAC address. port, gateway vs router)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is OSI Layer 1?

A

Physical layer. Think CAT5, fiber optics, 5GHz carrier

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is OSI Layer 2?

A

Data Link. Think MAC (lookup MAC if you don’t know what it is).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is OSI Layer 3?

A

Network. Think IP, ARP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is OSI Layer 4?

A

Transport. Think TCP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is OSI Layer 5?

A

Session. Think Setup, Negotiation, teardown.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is OSI Layer 6?

A

Presentation. Think TLS/SSL, compression

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is OSI Layer 7?

A

Application. Think web browser

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a mnemonic for the OSI layers?

A

Please do not throw sausage pizza away

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which layers in the OSI stack fall under AWS’s responsibility in the shared service model?

A

Physical

Data link

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which layers in the OSI stack fall under the customer’s responsibility in the shared service model?

A

Network, transport, session, presentation, application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

True or false: AWS doesn’t allow multicast communication?

A

True. This prevents one customer’s data from interacting with another customer’s resources.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which three network protocols should you definitely know for the exam?

A

TCP
UDP
ICMP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the reliability characteristic of TCP?

A

Connection-based, stateful, acknowledges receipt.

This means that after each communication, the receiving device must acknowledge receipt.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the reliability characteristic of UDP?

A

Connectionless, stateless, simple, no retransmission delay.

This means the receiving device does not acknowledge receipt.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What types of use cases use TCP?

A

Web, email, file transfer. Use cases that require 100% reliable transmission of data.

17
Q

What types of use cases use UDP?

A

Streaming media, DNS. Use cases where it’s ok if data is is not reliably transmitted. Streaming media will result in a hiccup in the video, for example. No big deal.

18
Q

What is the purpose of the ICMP?

A

It is used by network devices to exchange information.

19
Q

What services are used by ICMP?

A

traceroute, ping.