AP Networking Unit 2单词卡 | Quizlet

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

1/155

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.

156 Terms

1
New cards

ARP: Reply destination MAC

The requestor's MAC (unicast to you).

2
New cards

Front

Back

3
New cards

Core truth: Frames vs packets

Frames (L2) are local hop-by-hop; packets (L3) go end-to-end. First hop to Internet uses gateway's MAC.

4
New cards

Core truth: Presentation layer duty

OSI Layer 6 (Presentation) handles encryption, compression, and data formatting.

5
New cards

Core truth: Which layer adds IP? Which adds MAC+FCS?

Network (L3) adds IP addresses; Data Link (L2) adds MAC addresses and FCS.

6
New cards

Core truth: TCP/IP to OSI mapping (Internet, Network Access)

TCP/IP Internet ≈ OSI Network (L3); TCP/IP Network Access (Link) ≈ OSI L2/L1.

7
New cards

Core truth: Hex and MAC quick facts

1 hex digit = 4 bits; MAC address = 48 bits (OUI 24 + NIC 24).

8
New cards

Core truth: ARP request vs reply

ARP Request is broadcast; ARP Reply is unicast; replies populate the ARP cache.

9
New cards

Wireshark: 6-step workflow (summary)

1) Find NIC/IP/MAC 2) Start capture 3) Filter (arp or icmp) 4) ping 5) Stop 6) Inspect Ethernet II → IPv4 → ICMP.

10
New cards

Wireshark: display filter for ARP only

arp

11
New cards

Wireshark: display filter for only pings

icmp

12
New cards

Wireshark: display filter for a specific IP address

ip.addr == x.x.x.x (or ip.src / ip.dst)

13
New cards

Wireshark: display filter for a MAC address

eth.addr == aa:bb:cc:dd:ee:ff (or eth.src / eth.dst)

14
New cards

Wireshark: display filter for a TCP/UDP port

tcp.port == 443 (or udp.port == 53)

15
New cards

Wireshark: What are the three panes called?

Packet List (top), Packet Details (middle), Packet Bytes (bottom).

16
New cards

Wireshark: Why do Internet pings use the gateway's MAC as destination?

Frames are L2 and hop-by-hop. Your host frames to the default gateway's MAC; routers re-frame per hop.

17
New cards

ARP: Purpose

Map a Layer 3 IPv4 address to a Layer 2 MAC address.

18
New cards

ARP: Request destination MAC

ff:ff:ff:ff:ff:ff (broadcast).

19
New cards

ARP: Windows command to view cache

arp -a

20
New cards

ARP: Windows command to delete one entry

arp -d

21
New cards

ARP: Windows command to delete all dynamic entries

arp -d * (requires admin)

22
New cards

ARP cache: Why keep entries?

Avoids repeated broadcasts and speeds delivery to frequent peers.

23
New cards

Ethernet II: fields and sizes (in order)

Preamble+SFD (8B) | Destination MAC (6B) | Source MAC (6B) | Type (2B) | Data (46-1500B) | FCS (4B).

24
New cards

Ethernet II: EtherType for IPv4

0x0800

25
New cards

Ethernet II: EtherType for ARP

0x0806

26
New cards

Ethernet II: broadcast MAC address

ff:ff:ff:ff:ff:ff

27
New cards

Ethernet II: Which fields are often hidden in captures?

Preamble/SFD and FCS are handled by NICs and may not appear in capture.

28
New cards

OSI vs TCP/IP: layer correspondence

OSI L7-L5 ↔ TCP/IP Application; OSI L4 ↔ TCP/IP Transport; OSI L3 ↔ TCP/IP Internet; OSI L2/L1 ↔ TCP/IP Network Access.

29
New cards

Which OSI layer adds IP addresses?

Network (Layer 3).

30
New cards

Which OSI layer adds MAC + FCS?

Data Link (Layer 2).

31
New cards

Which OSI layer does reliable delivery with ACKs?

Transport (Layer 4) via TCP.

32
New cards

OSI mnemonic (L7→L1)

All People Seem To Need Data Processing.

33
New cards

Windows: show IP, MAC, gateway

ipconfig /all

34
New cards

Windows: ping

ping

35
New cards

Windows: traceroute

tracert

36
New cards

Windows: routing table

route print

37
New cards

Windows: ARP cache view

arp -a

38
New cards

Windows: ARP help

arp /?

39
New cards

Linux: show IP and MAC

ip addr (legacy: ifconfig)

40
New cards

Linux: show routes/default gateway

ip route (or netstat -rn)

41
New cards

Linux: ping

ping (Ctrl-C to stop)

42
New cards

Linux: traceroute

traceroute

43
New cards

Linux: neighbor/ARP table

ip neigh show (or arp -a)

44
New cards

macOS: show IP and MAC

ifconfig

45
New cards

macOS: routing table

netstat -rn

46
New cards

macOS: traceroute

traceroute

47
New cards

macOS: ARP table

arp -a

48
New cards

Hex fact: bits per hex digit

4 bits (a nibble).

49
New cards

Hex fact: why hex in networking

Compact shorthand for binary; maps 1:1 to nibbles; great for MACs and headers.

50
New cards

Binary anchors (byte weights)

128, 64, 32, 16, 8, 4, 2, 1.

51
New cards

Hex place values

..., 4096 (16^3), 256 (16^2), 16 (16^1), 1 (16^0).

52
New cards

Nibble map (hex→binary)

0=0000 1=0001 2=0010 3=0011 4=0100 5=0101 6=0110 7=0111 8=1000 9=1001 A=1010 B=1011 C=1100 D=1101 E=1110 F=1111

53
New cards

Convert 168₁₀ to hex and binary

0xA8; 1010 1000₂.

54
New cards

Convert 0x3A to decimal and binary

58₁₀; 0011 1010₂.

55
New cards

Hex shift trick

Shift left one hex digit = ×16; right one hex digit = ÷16.

56
New cards

ASCII anchors (for payload reading)

'0'=48, 'A'=65, 'a'=97.

57
New cards

Define: 802.11

IEEE Wi‑Fi standards at PHY/MAC layers.

58
New cards

Define: Access Point (AP)

Bridges wireless clients to wired LAN; manages channel/security/associations.

59
New cards

Define: Ad-hoc

Peer-to-peer Wi‑Fi (no AP).

60
New cards

Define: Bandwidth

Max theoretical capacity of a link/channel.

61
New cards

Define: Beamforming

AP steers RF energy toward client to improve SNR/throughput.

62
New cards

Define: BSSID

AP radio's MAC address (BSS identifier).

63
New cards

Define: Channel

Specific RF sub‑band used by Wi‑Fi (e.g., 1/6/11 in 2.4 GHz).

64
New cards

Define: Frequency Bands

2.4 GHz, 5 GHz, 6 GHz (Wi‑Fi 6E/7).

65
New cards

Define: Hotspot

Public AP offering Internet access.

66
New cards

Define: Interference

Unwanted RF energy degrading Wi‑Fi (microwaves, BT, neighbor APs).

67
New cards

Define: Latency

Delay (often measured as RTT).

68
New cards

Define: MAC Filtering

Allow/deny clients by MAC; weak (MACs can be spoofed).

69
New cards

Define: Mesh (Wi‑Fi)

APs relay/backhaul wirelessly for coverage/redundancy.

70
New cards

Define: MIMO

Multiple antennas/streams for higher capacity/robustness.

71
New cards

Define: Roaming

Client moves between APs within one ESS.

72
New cards

Define: Router

Layer‑3 device forwarding between IP networks/subnets.

73
New cards

Define: SSID

Wi‑Fi network name.

74
New cards

Define: Throughput

Actual measured data rate (lower than bandwidth).

75
New cards

Define: WEP

Legacy encryption; insecure—do not use.

76
New cards

Define: WPA/WPA2/WPA3

Wi‑Fi security suites; WPA3 is current best practice.

77
New cards

Define: Wi‑Fi

WLAN technology based on IEEE 802.11.

78
New cards

Define: Frame (Ethernet II)

L2 PDU: Dst MAC | Src MAC | EtherType | Payload | FCS (CRC-32).

79
New cards

Define: CAM (MAC Address Table)

Switch mapping MAC→port, learned from SOURCE MACs.

80
New cards

Define: Broadcast

One-to-all in a VLAN/broadcast domain (ff:ff:ff:ff:ff:ff).

81
New cards

Define: Multicast

One-to-many to a subscribed group.

82
New cards

Define: Unicast

One-to-one delivery.

83
New cards

Define: STP (Spanning Tree Protocol)

Prevents L2 loops by blocking redundant paths.

84
New cards

Define: VLAN

L2 segmentation: separate broadcast domains on one switch fabric.

85
New cards

Define: LACP

Link aggregation; bundles links for more bandwidth and redundancy.

86
New cards

Define: QoS

Prioritize traffic classes (voice/video) to control delay/jitter/loss.

87
New cards

Define: Hub

Physical-layer repeater; floods bits to all ports (legacy).

88
New cards

Define: Layer 2 Switch

Forwards using CAM table; no routing between subnets.

89
New cards

Define: Layer 3 Switch

Adds routing (e.g., inter‑VLAN routing).

90
New cards

Define: ACL

Per-interface rules permitting/denying traffic.

91
New cards

Define: PoE

Power over Ethernet to APs/phones/cameras.

92
New cards

Define: Port

Physical interface on a switch.

93
New cards

Define: Preamble

Sync pattern before frame; not shown in captures.

94
New cards

Define: Segmentation

Dividing a network into smaller domains (e.g., via VLANs).

95
New cards

Define: Topology

Physical/logical arrangement of links and nodes.

96
New cards

Define: PAN

Personal Area Network (very short range; e.g., Bluetooth headphones).

97
New cards

Define: LAN

Local Area Network (single site like home/office).

98
New cards

Define: CAN

Campus Area Network (multiple buildings).

99
New cards

Define: MAN

Metropolitan Area Network (city/metro).

100
New cards

Define: WAN

Wide Area Network (connects multiple LANs across distance).