CSE 5344 – Computer Networks: Quiz 4 Key Concepts

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

1/19

flashcard set

Earn XP

Description and Tags

20 vocabulary flashcards covering scheduling, IP addressing, subnetting, routing, and related concepts from the Quiz 4 solution notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

20 Terms

1
New cards

Round Robin (RR) Scheduling

Packet scheduling discipline where every queue receives an equal share of service time in cyclic order.

2
New cards

Weighted Fair Queuing (WFQ)

Scheduling algorithm that allocates bandwidth proportionally to assigned weights for each packet class, giving unequal but fair service.

3
New cards

MTU (Maximum Transmission Unit)

The largest number of bytes a layer can transmit in a single frame; common Ethernet MTU is 1500 bytes.

4
New cards

IP Fragmentation

Process of breaking a large IP datagram into smaller fragments so each fits within the MTU of the underlying network.

5
New cards

Network ID

Portion of an IP address where all host bits are 0, uniquely identifying a network segment.

6
New cards

Broadcast ID

IP address where all host bits are 1, used to send a packet to every host on the subnet.

7
New cards

Class A IP Address Range

1.0.0.0 to 126.0.0.0, providing few networks but up to ~16 million hosts each.

8
New cards

Class B IP Address Range

128.0.0.0 to 191.255.0.0, balancing number of networks and hosts (~65 k hosts per network).

9
New cards

Class C IP Address Range

192.0.0.0 to 223.255.255.0, offering many networks with up to 254 hosts each.

10
New cards

Host Capacity of IP Classes

Class A supports the maximum hosts per network; Class C supports the minimum.

11
New cards

Network Capacity of IP Classes

Class C provides the largest number of networks; Class A the smallest.

12
New cards

Subnet Mask

32-bit value of contiguous 1s followed by 0s that separates network/subnet bits from host bits in an IP address.

13
New cards

/26 Prefix Length

A subnet mask with 26 leading 1s (255.255.255.192) leaving 6 host bits.

14
New cards

Number of Subnets with /26

Using /26 on a Class C block yields 2^2 = 4 subnets.

15
New cards

Hosts per /26 Subnet

2^6 − 2 = 62 usable host addresses.

16
New cards

Broadcast Address (Subnet)

Highest address in a subnet (all host bits 1); e.g., 192.168.10.63 for the first /26 subnet.

17
New cards

Longest Prefix Matching

Routing rule where the router chooses the forwarding entry with the most specific (longest) matching prefix.

18
New cards

Forwarding Table

Router data structure mapping prefix patterns to output interfaces for packet delivery.

19
New cards

Bellman–Ford Equation

dx(y) = minv { c(x,v) + d_v(y) }, computing least-cost paths in distance-vector routing.

20
New cards

Next Hop

Neighbor router chosen as the first step toward a destination based on lowest computed path cost.