Network Protocols Flashcards

(55 cards)

1
Q

What is a protocol?

A

A protocol is a set of rules for how devices communicate and how data is transmitted across a network.

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

What do protocols cover in network communication?

A
  • How communication between two devices should start and end
  • How the data should be organized
  • What the devices should do if data goes missing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the purpose of MAC addresses?

A

MAC addresses are used to uniquely identify devices on a single network.

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

Who assigns MAC addresses to devices?

A

MAC addresses are assigned to all network-enabled devices by the manufacturer.

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

Can MAC addresses be changed?

A

No, MAC addresses are unique to the device and cannot be changed.

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

What are MAC addresses made of?

A

MAC addresses are 48 or 64-bit binary numbers.

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

How are MAC addresses represented for ease of use?

A

MAC addresses are converted into hexadecimals.

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

What is an example of a hexadecimal representation of a MAC address?

A

98-81-55-CD-F2-2F

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

What protocol mainly uses MAC addresses?

A

MAC addresses are mainly used by the Ethernet protocol on LANs.

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

How do LAN switches utilize MAC addresses?

A

LAN switches read the MAC addresses and use them to direct data to the right device.

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

What are IP addresses used for?

A

IP addresses are used when sending data between different networks, such as over the Internet between TCP/IP networks

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

How are IP addresses assigned?

A

IP addresses can be assigned manually (static) or automatically (dynamic).

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

What is a static IP address?

A

A static IP address is a permanent address used to connect devices like printers on a LAN and for hosting websites.

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

Why can static IP addresses be expensive?

A

Static IP addresses on the Internet can be very expensive because businesses pay big money for them.

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

What is a dynamic IP address?

A

A dynamic IP address is assigned to a device by a network server and may change every time the device logs on to the network.

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

Who commonly uses dynamic IP addresses?

A

Internet Service Providers (ISPs) commonly use dynamic IP addresses.

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

What are the two versions of IP addresses based on their length?

A
  • 32-bit
  • 128-bit
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

How is a 32-bit binary IP address translated?

A

A 32-bit binary IP address is translated into four decimal numbers.

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

What is an example of a 32-bit binary IP address?

A

00100101.10011001.00111110.10001000

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

What is the decimal representation of the example IP address 00100101.10011001.00111110.10001000?

A

37.153.62.136

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

What is the primary method of data transmission within a LAN?

A

Data is sent in frames and directed by switches using MAC addresses.

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

How is data sent between networks, such as over the Internet?

A

Data is sent in packets and directed by routers using IP addresses.

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

What are data packets split into when sent over networks using TCP/IP?

A

Equal-sized packets.

24
Q

What information does the header of a data packet contain?

A

The packet’s destination address, source address, and packet number.

25
What is the payload of a data packet?
The actual data being sent, such as part of an email, document, web page, or streamed video.
26
What is the purpose of a checksum in a data packet?
To validate that the payload data hasn't been corrupted during transit.
27
What is packet switching?
A method used by routers to direct data packets on the Internet and other IP networks.
28
What happens when a sending device splits data into packets?
Each packet is given a packet number to show the order of the data.
29
How do routers determine the next destination for a packet?
Each router reads the packet header and decides according to IP rules.
30
What can affect the route that packets take across the network?
Network traffic.
31
What may happen if a router receives too many packets at once?
It may prioritize some packets over others.
32
What issue can arise with packet delivery order?
Packets can arrive in the wrong order.
33
How does the receiving device reassemble packets?
By using the packet numbers.
34
What does the receiving device do if it detects missing packets?
It sends a timeout message back to the sending device.
35
What happens when all data packets are received and checksums match?
A receipt confirmation is sent to the sending device.
36
Why is packet switching considered efficient?
Because there are many possible routes that data can take, allowing packets to reach their destination even in heavy traffic.
37
What is the most important network protocol?
TCP/IP ## Footnote TCP/IP dictates how data is sent between networks, such as over the Internet.
38
What does TCP stand for?
Transmission Control Protocol ## Footnote TCP sets the rules for how devices connect on the network.
39
What is the function of TCP?
Splitting data into packets and reassembling them at the receiving device ## Footnote TCP also checks that data is correctly sent and delivered.
40
What does IP stand for?
Internet Protocol ## Footnote IP is responsible for packet switching.
41
What is the purpose of HTTP?
Used by web browsers to access websites and communicate with web servers ## Footnote HTTP stands for Hyper Text Transfer Protocol.
42
What does HTTPS provide?
A more secure version of HTTP that encrypts all information sent and received ## Footnote HTTPS stands for HTTP Secure.
43
What is FTP used for?
Accessing, editing, and moving files between devices on a network ## Footnote FTP stands for File Transfer Protocol.
44
What is POP3 used for?
POP3 is used to retrieve emails from a server. ## Footnote The server holds the email until you download it and then it is deleted from the server
45
What is the main difference between POP3 and IMAP?
POP3 deletes emails from the server after downloading, while IMAP keeps emails on the server ## Footnote IMAP stands for Internet Message Access Protocol.
46
What does SMTP stand for?
Simple Mail Transfer Protocol ## Footnote SMTP is used to send emails and transfer emails between servers.
47
What is a layer in network protocols?
A group of protocols with similar functions ## Footnote Layers are self-contained and only pass data between adjacent layers.
48
How do layers interact with each other?
Data can only be passed between adjacent layers ## Footnote E.g., Layer 2 can pass data to Layers 1 and 3.
49
What is the function of the Application Layer?
Turning data into websites and applications and vice versa ## Footnote This is Layer 4 in the network protocol model.
50
What does the Transport Layer do?
Controls data flow, splits data into packets, and checks packet delivery ## Footnote This is Layer 3 in the network protocol model.
51
What is the purpose of the Network Layer?
Makes connections between networks, directs data packets, and handles traffic ## Footnote This is Layer 2 in the network protocol model.
52
What does the Data Link Layer do?
Passes data over the physical network and is responsible for bit transmission ## Footnote This is Layer 1 in the network protocol model.
53
What is one advantage of using layers in network protocols?
It breaks network communication into manageable pieces ## Footnote This allows developers to concentrate on one area without worrying about others.
54
True or False: Layers in network protocols can be changed without affecting other layers.
True ## Footnote Layers are self-contained.
55
What is a benefit of having set rules for each layer?
Forces companies to make compatible, universal hardware and software ## Footnote This ensures different brands will work with each other.