Instiq
Chapter 1 · Network Fundamentals·v1.0.0·Updated 7/17/2026·~17 min

What's changed: Initial version

1.5IPv6, wireless, and virtualization

Key points

Covers 128-bit IPv6 address notation and types (GUA/ULA/link-local/multicast/anycast) and EUI-64, wireless fundamentals (2.4/5 GHz, non-overlapping channels 1/6/11, SSID, encryption), and virtualization (VM/container/VRF), framed as design and troubleshooting judgment.

As the capstone of Network Fundamentals, this section covers three modern essentials—IPv6 addressing, wireless principles, and virtualization. For each, merely "knowing the term" is not enough; the goal is the ability to judge which IPv6 address type to use, how to avoid RF interference, and how to choose among VMs, containers, and VRFs.

1.5.1IPv6 notation and address types

  • An IPv6 address is 128 bits, written as eight groups of 16 bits in colon-separated hex (e.g., 2001:0db8:0000:0000:0000:0000:0000:0001). Leading zeros in each group can be dropped, and a run of 0 groups can be abbreviated once with :: (2001:db8::1). IPv6 has no broadcast, using multicast instead.
  • Main types: GUA (global unicast, 2000::/3)—uniquely reachable on the internet; ULA (unique local, fc00::/7, in practice fd00::/8)—internal to an organization and not sent onto the internet; link-local (fe80::/10)—confined to the same link, never crossing a router, auto-assigned to each interface as the basis for neighbor discovery; multicast (ff00::/8)—group-destined; anycast—the same address assigned to multiple nodes and delivered to the nearest one.
  • EUI-64 generates a 64-bit interface ID from a 48-bit MAC address: split the MAC into upper and lower 24-bit halves, insert FFFE in the middle, and flip the 7th bit (the U/L bit) of the first octet. Example: MAC 00:1A:2B:3C:4D:5E -> 021A:2BFF:FE3C:4D5E (leading 00 -> 02).

1.5.2Wireless fundamentals

  • Wireless LAN mainly uses the 2.4 GHz and 5 GHz bands. 2.4 GHz reaches farther and penetrates obstacles well but has narrow available spectrum with only three non-overlapping channels, 1/6/11, making it interference-prone. 5 GHz has many non-overlapping channels and is faster but reaches shorter distances. Channel planning for nearby APs (placing 1/6/11 so they do not overlap) is key to avoiding interference.
  • An SSID is a wireless network's identifier name. Because RF (radio frequency) is a shared medium, the airwaves are shared in a half-duplex-like manner and quality varies with distance, obstacles, and interference. Encryption is essential to protect traffic; the weak WEP is discouraged in favor of WPA2 and the stronger WPA3.

1.5.3Virtualization (VM, container, VRF)

  • A VM (virtual machine) runs on a hypervisor with each VM having its own guest OS; isolation is strong but each OS consumes resources and boots heavily. A container shares the host OS kernel for a lightweight, fast start but with weaker isolation than a VM. Choose by use (VM when strong isolation is required, containers for density and agility).
  • VRF (Virtual Routing and Forwarding) lets a single router/L3 switch hold multiple independent routing tables. On one device it fully separates, say, customer A's and customer B's routes, so even overlapping IP addresses do not interfere. It realizes network-layer "multi-tenancy."
Exam point

Most-tested: IPv6 has no broadcast and :: is used only once; GUA = 2000::/3, ULA = fc00::/7 (fd00::/8), link-local = fe80::/10 never crosses a router, anycast goes to the nearest; EUI-64 inserts FFFE and flips the U/L bit; 2.4 GHz non-overlapping channels are 1/6/11; a VM has its own OS, a container shares the kernel, and VRF holds multiple routing tables.

Suppose you are investigating a complaint that the office Wi-Fi "becomes extremely slow in a specific area around midday." On site you find three APs clustered in that area, all operating on 2.4 GHz and all set to the same channel 6. Concluding "the signal must be weak" and raising AP transmit power would be a counterproductive call—APs on the same channel contend for the same frequency, and raising power only worsens mutual RF interference (co-channel interference), dropping effective throughput. Since 2.4 GHz has only three mutually non-overlapping channels, 1, 6, and 11, the correct fix is to assign the three clustered APs to 1, 6, and 11 respectively. This eliminates co-channel interference so each AP uses independent spectrum even at the midday peak. Additionally, steering capable clients to the 5 GHz band, with its many non-overlapping channels, relieves congestion more fundamentally. The key is the judgment to suspect interference and isolate from the principle that wireless is a shared medium (RF) and channel planning governs performance, rather than the short-circuit of "slow = weak signal = raise power." If encryption were still WEP, you should also propose remediating security (moving to WPA2/WPA3) alongside performance.

TypePrefixScopeTypical use
Global unicast (GUA)2000::/3The whole internetUnique address for external communication
Unique local (ULA)fc00::/7 (in practice fd00::/8)Within an organizationInternal, not sent onto the internet
Link-localfe80::/10Same link onlyNeighbor discovery, auto-assigned (no routing)
Multicastff00::/8A groupGroup-destined (replaces broadcast)
Warning

Trap: "Slow Wi-Fi means a weak signal, so raising AP power fixes it" is wrong—if clustered APs are on the same channel, boosting power actually worsens co-channel interference. On 2.4 GHz, the fix is to distribute them across non-overlapping channels 1/6/11. Also wrong: "you can reach the internet with a link-local address (fe80::/10)"—link-local never crosses a router, and the internet requires a GUA.

IPv6 address types, wireless channel design, VM/container/VRF.
Three foundations of modern networking

1.5.4Section summary

  • IPv6 is 128-bit with :: used once and no broadcast: GUA = 2000::/3, ULA = fc00::/7, link-local = fe80::/10 (no routing), anycast to the nearest. EUI-64 inserts FFFE and flips the U/L bit
  • 2.4 GHz non-overlapping channels are 1/6/11; clustered-AP slowness is fixed by channel planning, not more power. For encryption, avoid WEP in favor of WPA2/WPA3
  • A VM has its own OS with strong isolation, a container shares the kernel for lightness, and VRF holds multiple routing tables in one device to separate routes

Sign in to track progress — Log in.

Quick check

(just a quick review)

Q1. Wi-Fi in a specific area is extremely slow around midday. On site, three clustered APs are all on 2.4 GHz and all set to the same channel 6. What is the most appropriate remedy for this symptom?

Q2. An internal server operates with only a link-local address (fe80::/10) on its IPv6 interface. You want it reachable from an external site over the internet. What is the most appropriate response?

Q3. On a single router, you must accommodate the traffic of two customers with overlapping IP address space while keeping it fully separated. Which technology best fits this requirement?

Check your understandingPractice questions for Chapter 1: Network Fundamentals