Networking, HTTP, and IP Fundamentals

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/22

flashcard set

Earn XP

Description and Tags

Comprehensive practice questions covering HTTP protocols, IP version 4 addressing, subnets, routing hardware, and network diagnostic tools based on the lecture transcript.

Last updated 12:39 AM on 6/18/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

23 Terms

1
New cards

What does the acronym HTTP stand for and who invented it?

HTTP stands for Hypertext Transfer Protocol and it was invented by Tim Berners Lee at CERN.

2
New cards

What is the primary difference between HTTP and HTML according to the transcript?

HTTP is an application layer protocol used for transmission, while HTML is a markup language used to describe web pages.

3
New cards

Which transport layer protocol does HTTP version 1 usually run on top of, and what does version 3 use?

HTTP version 1 runs on top of TCP, while version 3 runs on top of UDP.

4
New cards

What are the default ports for HTTP and HTTPS?

The default port for HTTP is 8080, and the default port for HTTPS is 443443.

5
New cards

What is the function of the 'Host' header in a HTTP 1.1 request?

It is compulsory because a single server may serve requests for multiple different domains or hosts on a single port.

6
New cards

In HTTP, what does a status code in the 200 series, specifically 200 OK, indicate?

It indicates that the request was successful, the URL was found, and data was returned.

7
New cards

What do HTTP status codes in the 300 series represent?

Redirections, indicating the web server is telling the client to go to another location (e.g., 301 Moved Permanently).

8
New cards

What is indicated by HTTP status codes in the 400 versus 500 series?

The 400 series indicates a problem with the client request (e.g., 404 Page Not Found), while the 500 series indicates a server error.

9
New cards

What is the specific meaning of the HTTP status code 418?

418 I'm a teapot, which was added as part of the Hypertext coffee pot control protocol.

10
New cards

How many bits are in an IP version 4 address compared to an IP version 6 address?

IP version 4 addresses are 3232 bits, while IP version 6 addresses are 128128 bits.

11
New cards

How is the maximum number of usable host addresses on a subnet calculated?

It is calculated as 2n22^{n} - 2, where nn is the number of bits for the host part; two addresses are subtracted for the network and broadcast addresses.

12
New cards

What are the two 'special' bit combinations reserved in an IP network that cannot be assigned to hosts?

The all zeros case (Network Address) and the all ones case (Broadcast Address).

13
New cards

What is CIDR notation and what does a example like '/24' represent?

CIDR (Classless Inter-Domain Routing) notation specifies the size of the network part; /24/24 means the first 2424 bits identify the network/subnet.

14
New cards

What is a loopback address and what is its standard range?

A loopback address connects to the local host and includes any address in the range 127.x.x.x127.\text{x.x.x}, such as 127.0.0.1127.0.0.1.

15
New cards

What are the three common private (non-routable) IP address ranges?

10.0.0.0/810.0.0.0/8, 172.16.0.0172.16.0.0 through 172.31.255.255172.31.255.255, and 192.168.0.0/16192.168.0.0/16.

16
New cards

What is the purpose of the ARP (Address Resolution Protocol)?

ARP is used to discover the link layer address (MAC address) associated with a specific IP address on a local network.

17
New cards

At which OSI layers do switches and routers primarily operate?

Switches operate at the link layer (Layer 2) using MAC addresses, while routers operate at the network layer (Layer 3) using IP addresses.

18
New cards

What is NAT (Network Address Translation) and why is it necessary for IPv4?

NAT maps private IP addresses to a public IP address; it is necessary because there are not enough public IPv4 addresses for every device.

19
New cards

What is ICMP and what diagnostic tool uses its 'Echo Request' and 'Echo Response'?

ICMP is the Internet Control Message Protocol, and it is the protocol behind the 'ping' command.

20
New cards

How does the 'traceroute' command work?

It sends packets with an increasing Time to Live (TTLTTL) value; every time a packet hits a router, the TTLTTL decrements, and if it reaches zero, the router sends back an ICMP 'time exceeded' message.

21
New cards

What is the primary function of DNS (Domain Name System)?

DNS is responsible for converting human-readable host names (domain names) into IP addresses.

22
New cards

Define the DNS record types: A, CNAME, and MX.

A records map to an IP version 4 address, CNAME records are aliases for canonical names, and MX records specify mail exchange servers.

23
New cards

According to the HTTP standard, what is the safest line terminator to use for requests?

The carriage return new line, represented as \r\n\backslash r \backslash n.