Networking Review

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/54

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

55 Terms

1
New cards

Ping

Tests if a host is reachable

2
New cards

ifconfig/ip a

Shows IP addresses of network interfaces

3
New cards

ip route

Shows routing table which contains paths to network destinations for IP traffic.

4
New cards

traceroute

Traces path packets take to reach host

5
New cards

netstat/ss

View open ports, connections, and listening services

6
New cards

nslookup/dig

Look up DNS info for a domain

7
New cards

hostname/hostname -I

Show the system’s hostname and IP addresses

8
New cards

curl/wget

Test HTTP requests

9
New cards

telnet

Test connectivity on a port

10
New cards

DCSP (Differentiated Services Code Point)

A field in the IP header used to label packets with priority levels so routers and switches know how to handle different types of network (Part of QoS)

11
New cards

Value 0 in IP packet header

No priority, normal traffic

12
New cards

Value 46 in IP packet header

Expedited Forwarding (EF)

13
New cards

Values 10-40 in IP packet header

Assured Forwarding (AF) prioritized but non-critical traffic

14
New cards

Value 8 in IP packet header

Low priority (CS1) background tasks

15
New cards

3 types of DNS queries

recursive, iterative, and non-recursive

16
New cards

Recursive DNS Query

DNS server (resolver) does all the work for you

If it cant find the IP, it sends back an error

Common in regular web browsing

17
New cards

Iterative DNS Query

If the DNS doesnt know the answer, it replies “Try asking the other server instead”

The client or resolver keeps following referrals until it finds the final answer

18
New cards

Non-recursive DNS query

Happens when a server already has the answer cached

No extra searching → returns the result immediately

19
New cards

DNS “A” Record

Maps a domain to IP

Required

example.com →93.184.216.34

20
New cards

DNS “Cname” Record

Maps domain to another domain

Optional

www.example.com → example.com

21
New cards

DNS (Domain Name System)

Translates human-readable domain names into IP addresses so computers can find each other on the internet.

22
New cards

The 4 DNS servers involved in loading a webpage

DNS Recursor
Rootname Server
TLD Nameserver
Authoritative Nameserver

23
New cards

DNS Recursor

A server that receives a DNS request from a user and does all the lookup steps needed to return the final IP address.

24
New cards

Authoritative Nameserver

holds the actual DNS records (like A and CNAME) for a domain and gives the final answer to DNS queries.

25
New cards

Rootname Server

It looks at the end of the domain name (the top-level domain like .com, .org, .net)
and sends the query to the correct TLD name server that handles that type of domain.

26
New cards

TLD Nameserver

A TLD (Top-Level Domain) name server is responsible for handling domains that end in a specific extension like .com, .org, .net, etc.

It doesn’t have the final IP, but it tells you which authoritative server does.

27
New cards

PXE Boot (Preboot Execution Environment)

Allows computer to boot from a network (rather than hard drive or USB)

28
New cards

Key Components of PXE Boot

PXE Client
DHCP Server
TFTP Server
Boot Image

29
New cards

What is the PXE Client

The computer you want to boot from the network

Can have multiple clients

Must have a Network Interface Card

Sends a DHCP broadcast to start PXE process

30
New cards

What does the DHCP server do in PXE Boot

Assigns IP addresses to the PXE clients

31
New cards

What does the TFTP server do in PXE Boot

Sends the bootloader client to the clinets

32
New cards

What do the boot files do in PXE Boost

Files needed to start and install the operating system

33
New cards

What’s the first step in PXE boot?

Choose a device to be the PXE server (any Linux machine).

34
New cards

What’s the second step in PXE boot?

Install a DHCP server to assign IPs and point to boot files.

35
New cards

What’s the third step in PXE boot?

Install a TFTP server to serve bootfiles (pxelinux.0) and OS files.

36
New cards

What’s the fourth step in PXE boot?

Add OS boot files to the PXE server.

37
New cards

What’s the fifth step in PXE boot?

Connect all clients to the same wired network.

38
New cards

What’s the sixth step in PXE boot?

Ensure every client has a PXE-capable NIC.

39
New cards

What’s the seventh step in PXE boot?

Power on clients — they’ll broadcast DHCP, get boot files, and start OS install.

40
New cards

What’s the first step in a DNS lookup?

You type a website (like example.com) into your browser.

41
New cards

What happens after you type a website into your browser?

The DNS resolver receives the request and prepares to search for the IP address.

42
New cards

What does the DNS resolver do first?

It queries a Root DNS server to figure out which top-level domain (.com, .org, etc.) to ask next.

43
New cards

What does the Root DNS server respond with?

The IP address of the TLD (Top Level Domain) server (like .com)

44
New cards

After getting the TLD server address, what does the resolver do?

It asks the TLD server where to find the nameserver for example.com.

45
New cards

What does the TLD server respond with?

The address of the authoritative nameserver for example.com.

46
New cards

What does the resolver ask the authoritative nameserver?

“What is the IP address for example.com?”

47
New cards

What does the authoritative nameserver reply with?

The correct IP address for the domain (e.g., 93.184.216.34).sdfb

48
New cards

What is Network File System (NFS) used for?

It lets computers share files over a network as if they were on the local machine.

49
New cards

In NFS, what is a "server"?

The machine that hosts (shares) the files or directories.

50
New cards

In NFS, what is a "client"?

A computer that accesses files shared by the NFS server.

51
New cards

What are common use cases for NFS?

Centralized storage, backups, shared home directories, and server clusters.

52
New cards

What is iSCSI (Internet Small Computer Systems Interface) used for ?

To transport block-level storage data over IP networks.

53
New cards

iSCSI vs NFS — what’s the key difference?

iSCSI provides block-level storage, while NFS provides file-level storage.

54
New cards

Is iSCSI storage treated like a local disk?

Yes — the operating system sees it as a local block device.

55
New cards

Why use iSCSI over traditional storage?

It's cheaper and easier to implement because it uses standard Ethernet networks.