Lesson 3 - Chapter 1: Network Basics Flashcards

1
Q

what is the local host?

A

your computer

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

what is a remote host?

A

not your local computer

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

what is a host?

A

any computing device connected to a network

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

what happens when you access a website?

A

your web browser asks the web server to share the web page files (and then your computer displays them)

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

what is a client?

A

the computer requesting data

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

what is a server?

A

the computer that serves the information

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

for YouTube, what servers do you connect to to watch a video?

A

you connect to the web server that connects to massive video databases that use special software to send video fast without you waiting to watch it

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

youtube’s video storage system is a type of?

A

storage area network (SAN)

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

what is a print server?

A

a computer on a network with a USB-connected printer with Windows’ print-sharing feature enabled

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

what you can share and access is limited by what? (2)

A
  • finding a server app capable of sharing it
  • a client app that can access it
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

whats a file server?

A

a networked host that enables you to access many files/folders

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

what is a mail server?

A

a networked host you use to access email messages

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

what are legacy and embedded systems?

A

they perform very specific, non-modern tasks (old machining process sent over a network)

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

what is a resource?

A

anything that one computer might share with another

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

One way to differentiate networks is by their scope. What is that?

A

how close together are the computers involved

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

What’s the scope of a PAN?

A

Personal Area Network involves only one person/computer

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

How would you use a PAN?

A

Bluetooth, wireless connection of peripherals

18
Q

What is the scope of a LAN?

A

a local area network is a group of computers located physically close to each other (few hundred meters)

(single room, single floor, single building, etc)

19
Q

All computers in a LAN share a common broadcast domain. What is that?

A

When a broadcast message is sent out, each computer is able to receive it

20
Q

What is a wireless LAN called?

A

WLAN (wireless local area network)

21
Q

What’s the next network scope after LAN and what does it stand for?

A

MAN

metropolitan area network (city, owned by local gov or utility company)

22
Q

What does WAN stand for? What is it?

A

Wide Area Network (WAN)

connects a widespread group of computers (LANs) using long-distance technology

23
Q

What does CAN stand for and what is it?

A

Corporate/Campus Area Network (CAN)

A collection of LANs that belong to the same company/campus, are a step above LAN but smaller than WAN/MAN

24
Q

What does SAN stand for and what does it do?

A

Storage Area Network (SAN)

provides block-level storage (shared network storage, cloud storage) that makes the user think it’s attached to their local PC

25
Q

a router lets you talk to computers that are what?

A

outside your network

26
Q

What is a router? It has at least 2 what?

A

a device that has at least 2 IP addresses:
1 that connects to your LAN switch
1 that connects to the “next network” (ISP, another router at the company)

27
Q

What’s the difference between a switch and a router?

A

a switch moves traffic within the same LAN, routers move traffic between LANs

28
Q

How does a host sending a packet make the decision to send it to either the switch or the router?

A

It looks at the subnet mask (IPv4) or prefix length (IPv6) of the destination IP address to determine whether they are both on the same LAN

same LAN = switch
different network = router

(looking at that determines where the network address ends and host address begins)

29
Q

Each client or server needs what 4 things?

A
  1. Network Interface Controller (NIC) - circuit board or chip
  2. Unique Address - MAC and IP address
  3. Communication medium - way to send/receive data (cable, radio waves)
  4. OS support (talk to its own network hardware)
30
Q

What does NIC stand for? What is it?

A

Network Interface Controller

it’s the hardware connection that manages the connection to a network (between the OS and network)

31
Q

What is a NIC’s unique hardware address called?

A

Media Access Control (MAC) address

(never changes, like a physical home address)

32
Q

Each network will have what 2 addresses?

A
  1. MAC (Media Access Control) address
  2. IP (Internet Protocol) address
33
Q

What does a MAC address look like?

A

a string of binary numbers (1s and 0s) that is 48 bits long

(bits, binary digits)

34
Q

What’s the difference between binary and hexadecimal numbering?

A

hexadecimal is base 16 and binary is base 2

35
Q

Hexadecimal numbers are normally written in what 2 ways? (MAC address)

A

With spaces/colons between every 2 digits OR every 4 digits

C0 3E BA 3F 11 4A
OR
C03E BA3F 114A

36
Q

What makes MAC addresses permanent?

A

they’re burned into the NIC

37
Q

How is data moved from one device to another? What is it called?

A

in chunks called frames

(frame = envelope for data to be sent)

38
Q

Are packets and frames the same thing?

A

No, packets are part of a frame

39
Q

What 4 things does a frame contain?

A
  1. Destination MAC address
  2. Source MAC address
  3. Data
  4. Frame Check Sequence (FCS)
40
Q

What is FCS?

A

Frame Check Sequence is error-detecting code