1.2 Network Topologies, Infrastructure, and Protocols

Key Takeaways

  • Network scopes span distinct physical dimensions: Personal Area Networks (PANs), Local Area Networks (LANs), Metropolitan Area Networks (MANs), and Wide Area Networks (WANs).
  • Modern campus networks implement hierarchical star-tree physical topologies, providing fault isolation and straightforward scalability compared to legacy bus or ring topologies.
  • Layer 2 switches isolate collision domains and forward traffic using 48-bit physical MAC addresses, whereas Layer 3 routers route packets across distinct subnets using IP addresses.
  • Core infrastructure services automate connectivity: DHCP leases dynamic IP configuration parameters (DORA process), and DNS hierarchically resolves human-readable hostnames to numeric IP addresses.
  • Transport protocols trade off reliability and overhead: TCP utilizes a three-way handshake with error correction for reliable transfers, while UDP offers lightweight, low-latency transmission for real-time media.
Last updated: September 2026

1.2 Network Topologies, Infrastructure, and Protocols

Modern educational technology relies on robust, interconnected networking infrastructure. From delivering online state assessments and streaming instructional media to managing campus-wide administrative databases, educators and technology specialists must master the architectural principles, transmission media, hardware devices, and communication protocols that underpin local and enterprise networks.


Network Scopes, Geographic Boundaries, and Architectural Domains

Computer networks are classified by their geographic reach, physical transmission media, and administrative access boundaries.

Classifications by Geographic Scope

[ PAN: ~10 m ] --> [ LAN: Single Building/Room ] --> [ MAN: City / District-Wide Fiber ] --> [ WAN: Regional / Global ]
  • Personal Area Network (PAN): Encompasses the immediate physical space surrounding an individual user, typically extending up to 10 meters (33 feet). PANs interconnect personal peripheral devices such as wireless styluses, presentation clickers, headsets, and mobile tablets. Primary technologies include Bluetooth (IEEE 802.15.1, operating in the 2.4 GHz ISM band) and Near Field Communication (NFC) (operating at 13.56 MHz over distances under 10 centimeters for secure identification badges and contactless payments).
  • Local Area Network (LAN): Connects computing devices within a localized physical area—such as a single classroom, computer lab, library, or entire school building. LANs provide high-speed data transmission (typically 1 Gbps to 10 Gbps) over district-owned twisted-pair copper Ethernet cabling (Cat6 / Cat6a) and multi-mode fiber-optic links. LANs are privately owned, configured, and administered by local school district technical staff.
  • Wireless Local Area Network (WLAN): Extends LAN connectivity via radio frequency (RF) signals using the IEEE 802.11 family of standards:
    • 802.11ac (Wi-Fi 5): Operates exclusively in the 5 GHz radio band, supporting channel bonding (up to 160 MHz) and Multi-User Multiple-Input Multiple-Output (MU-MIMO) to achieve theoretical data rates up to 3.5 Gbps.
    • 802.11ax (Wi-Fi 6): Operates across both 2.4 GHz and 5 GHz bands. Introduces Orthogonal Frequency Division Multiple Access (OFDMA), which subdivides radio channels into microscopic Resource Units (RUs). This allows a single wireless access point to communicate with dozens of student devices simultaneously, dramatically mitigating wireless congestion in dense classroom environments.
    • Wi-Fi 6E: Extends Wi-Fi 6 capabilities into the 6 GHz band. In the United States, the full allocation spans 5.925 GHz to 7.125 GHz, although available channels and power rules vary by country. The band avoids contention from legacy 2.4/5 GHz Wi-Fi devices, but it is not interference-free and still requires channel planning.
  • Metropolitan Area Network (MAN): Spans an entire municipality, town, or large consolidated independent school district (ISD). A MAN interconnects multiple distinct school campuses, central administration complexes, and auxiliary athletic or transportation facilities using dedicated leased dark fiber-optic lines or high-speed microwave links.
  • Wide Area Network (WAN): Spans broad regional, national, or international geographic distances. WANs interconnect dispersed school districts, state education agency repositories, regional educational service centers, and the global internet backbone. Because WANs traverse public right-of-ways, they rely on commercial telecommunication carriers, leased multi-protocol label switching (MPLS) circuits, and fiber-optic transport networks.

Architectural Domains & Access Boundaries

  • Intranet: A strictly private network deployment accessible exclusively to authenticated internal users (students, teachers, campus staff). An intranet hosts internal learning resources, local student information systems (SIS), and network file shares, fully shielded from the public internet behind border firewalls.
  • Extranet: A secured, controlled extension of the private network that allows authenticated external stakeholders—such as parents accessing student grade portals, contracted curriculum vendors, or state compliance monitors—to access designated internal resources via secure tunnels (Virtual Private Networks - VPNs) or encrypted Transport Layer Security (TLS) web sessions.
  • Internet: The globally interconnected public network of networks operating on standardized TCP/IP communication protocols, facilitating open web access, cloud-based educational platforms, and external research repositories.

Network Topologies: Physical vs. Logical Architecture

A network's topology describes the geometric arrangement of its physical nodes and cabling (physical topology) or the pathway that data signals travel through the network (logical topology).

Topologies in Comparative Perspective

Star:           Bus:                 Ring:              Mesh:
    [Host]         [Term]               [Host]--[Host]      [Host]=== [Host]
      |              |                    |        |         | |   |  |
[Host]-[SW]-[Host] ==[Host]==[Host]==     [Host]--[Host]      | |   |  |
      |              |                                        | |   |  |
    [Host]         [Term]                                   [Host]=== [Host]

1. Star Topology

In a physical star topology, every individual endpoint (workstation, printer, document camera) connects directly to a central networking device (a network switch) via a dedicated, point-to-point twisted-pair Ethernet cable.

  • Advantages: Superior fault isolation. If a single network cable is damaged, or if an individual workstation experiences a hardware failure, only that specific node loses connectivity; the remainder of the campus network continues operating without interruption. Network expansion is straightforward—new endpoints are simply patched into available switch ports.
  • Failure Point: The central network switch represents a single point of failure. If the switch's internal power supply fails, all endpoints patched into that switch lose network access.
  • Classroom Standard: The physical star topology is the universal, industry-standard deployment model for modern wired educational LANs.

2. Bus Topology

In a physical bus topology, all network nodes connect sequentially in a linear chain along a single shared central transmission medium—historically a coaxial backbone cable (e.g., 10BASE2 Thinnet or 10BASE5 Thicknet).

  • Characteristics: Both physical ends of the central backbone cable must be terminated with a resistive terminator (typically 50 ohms) to absorb electrical signals and prevent signal reflection, which corrupts in-flight packets.
  • Disadvantages: A single break or loose connector anywhere along the backbone collapses the entire network segment. All nodes share a single collision domain, creating severe performance degradation under moderate classroom traffic. Troubleshooting an intermittent physical break requires tedious step-by-step continuity testing along the entire physical run.
  • Status: Obsolete in modern campus installations; retained in technical curricula to illustrate shared-medium collision dynamics.

3. Ring Topology

In a physical ring topology, every device connects to two adjacent devices, forming a continuous closed loop. Data travels unidirectionally (or bidirectionally in dual counter-rotating configurations) from node to node around the circle.

  • Characteristics: Pioneered in IBM Token Ring (IEEE 802.5) and FDDI (Fiber Distributed Data Interface) networks. Workstations pass a specialized digital bit pattern called a token. A workstation can transmit data only when it captures the free token, eliminating data collisions entirely and providing deterministic, predictable transmission timing.
  • Disadvantages: A physical break in the ring or the failure of any non-bypassed node halts all token circulation, collapsing the entire network. Reconfiguring or expanding the network requires breaking the physical loop, temporarily disrupting all active communication.

4. Mesh Topology

In a mesh topology, redundant physical or wireless links interconnect nodes:

  • Full Mesh: Every single node maintains a direct physical link to every other node in the network. For n nodes, the network requires n(n - 1) / 2 individual physical connections. A 10-node full mesh requires 45 individual cables and multi-port interfaces.
  • Partial Mesh: Critical core nodes maintain redundant interconnections, while peripheral nodes connect to only one or two distribution points.
  • Advantages: Supreme fault tolerance and redundancy. If a primary transmission line is severed, dynamic routing protocols instantaneously reroute data packets along alternate physical paths without user disruption.
  • Applications: Deployed in enterprise data center cores, regional school district fiber backbones, and self-healing classroom wireless mesh access points (where access points dynamically route traffic around interference).

5. Tree (Hierarchical) Topology

A tree topology combines multiple physical star topologies into a structured, tiered hierarchy. This is the official architectural model recommended for enterprise educational campuses (the Cisco Three-Layer Hierarchical Model):

  • Access Layer: Local switches stationed in classroom wiring closets connecting end-user student laptops, teacher desktops, network printers, and WAPs.
  • Distribution (Aggregation) Layer: Aggregates the uplinks from multiple classroom access switches, enforcing security access control lists (ACLs) and inter-VLAN routing.
  • Core Layer: High-speed, high-throughput fiber switching backbone linking separate campus buildings back to the central district data center and internet gateway.

Networking Hardware and Layered Infrastructure

Building a campus network requires purpose-built hardware operating across distinct layers of the Open Systems Interconnection (OSI) model.

Network Interface Card (NIC) & Physical Addressing

The Network Interface Card (NIC) provides the physical and electrical interface between a computing device and the transmission medium. Every NIC contains a factory-assigned, globally unique hardware identifier known as the Media Access Control (MAC) address:

  • Format: A 48-bit (6-byte) binary address represented as twelve hexadecimal digits grouped into pairs or quartets (e.g., 00:1A:2B:3C:4D:5E or 001a.2b3c.4d5e).
  • Structure: The first 24 bits represent the Organizationally Unique Identifier (OUI) assigned to the hardware manufacturer by the IEEE. The remaining 24 bits represent the manufacturer's unique device serial number.
  • Layer: Operates at the Data Link Layer (OSI Layer 2). MAC addresses govern delivery between physical devices residing within the same local broadcast domain.

Network Switches (Layer 2 Switching)

A network switch is an intelligent multiport Data Link layer device that inspects incoming Ethernet data frames:

  • Frame Forwarding & CAM Tables: The switch inspects the source MAC address of every arriving frame, recording the physical port and MAC association into its internal Content Addressable Memory (CAM) table (MAC address table). When a frame arrives destined for a specific MAC address, the switch consults its CAM table and forwards the frame exclusively to the designated destination port.
  • Collision Domain Isolation: Unlike obsolete network hubs that broadcast incoming signals out of every port (creating a single large collision domain), a switch allocates a dedicated, collision-free segment to every port, enabling full-duplex communication (simultaneous transmitting and receiving at wire speed).

Network Routers (Layer 3 Routing)

A router is an intelligent Network layer device that interconnects distinct logical subnets and disparate physical networks:

  • Packet Routing: Routers inspect the destination IP address contained in Layer 3 packets. By consulting internal routing tables (populated via static routes or dynamic routing protocols like OSPF and BGP), the router determines the optimal next-hop pathway across networks.
  • Default Gateway: The router serves as the default gateway for a local subnet. Any network traffic destined for an IP address outside the local subnet mask is forwarded to the router's interface for inter-network transmission.
  • Broadcast Containment: Routers do not forward Layer 2 broadcast frames (FF:FF:FF:FF:FF:FF), establishing boundaries that contain broadcast storms within individual local subnets.

Modems and Optical Network Terminals (ONT)

  • Modem (Modulator/Demodulator): Converts digital computer data into analog carrier signals for transmission over analog telephone lines or coaxial broadband cable (DOCSIS), and demodulates incoming analog signals back into digital data.
  • Optical Network Terminal (ONT): In fiber-to-the-premises (FTTP) school deployments, the ONT converts inbound optical light pulses traveling over single-mode fiber-optic lines into standard electrical Ethernet signals for campus firewalls and core switches.

Wireless Access Points (WAPs)

A Wireless Access Point (WAP) bridges IEEE 802.11 radio frequency frames onto the wired IEEE 802.3 Ethernet campus backbone. Modern enterprise WAPs broadcast multiple Service Set Identifiers (SSIDs) mapped to distinct Virtual Local Area Networks (VLANs). For example, a single physical WAP in a classroom can simultaneously broadcast an encrypted District-Staff SSID (routed to internal administrative servers), a filtered Student-1to1 SSID (routed to educational resources), and an isolated Campus-Guest SSID (restricted strictly to outbound internet access).

Gateways and Firewalls

A gateway serves as a protocol converter or boundary control device connecting networks with fundamentally different architectures. Modern school districts deploy Next-Generation Firewalls (NGFW) and Unified Threat Management (UTM) appliances at their perimeter. These devices combine stateful packet inspection, deep packet inspection (DPI), web content filtering (mandated by the federal Children's Internet Protection Act - CIPA), intrusion prevention systems (IPS), and anti-malware scanning.


Network Protocols and the Layered Communication Models

Network communication is organized into modular abstraction layers, ensuring that hardware manufacturers and software developers can innovate independently.

The OSI 7-Layer vs. TCP/IP 4-Layer Reference Models

OSI 7-LAYER MODEL             TCP/IP 4-LAYER MODEL      DATA UNIT (PDU)     SAMPLE PROTOCOLS
[7] Application      |
[6] Presentation     +------->  [4] Application         Data / Payload      HTTP, HTTPS, DNS, DHCP, SSH, FTP
[5] Session          |
[4] Transport        -------->  [3] Transport           Segments/Datagrams  TCP, UDP
[3] Network          -------->  [2] Internet            Packets             IPv4, IPv6, ICMP, ARP
[2] Data Link        |
[1] Physical         +------->  [1] Network Access      Frames / Bits       Ethernet (802.3), Wi-Fi (802.11)
  • OSI Layer 7 (Application): Directly interfaces with end-user software applications (browsers, email clients). Protocols: HTTP, HTTPS, FTP, DNS, DHCP.
  • OSI Layer 6 (Presentation): Formats, compresses, and encrypts data. Handles character encoding (ASCII, UTF-8) and cryptographic handshakes (SSL/TLS).
  • OSI Layer 5 (Session): Establishes, maintains, coordinates, and terminates communication sessions between distributed applications.
  • OSI Layer 4 (Transport): Manages end-to-end host-to-host delivery, flow control, error checking, and multiplexing via port numbers. Protocols: TCP, UDP. Protocol Data Unit (PDU): Segment (TCP) or Datagram (UDP).
  • OSI Layer 3 (Network): Handles logical addressing, packet fragmentation, and path routing across multiple networks. Protocols: IPv4, IPv6, ICMP. PDU: Packet.
  • OSI Layer 2 (Data Link): Provides node-to-node data transfer across the physical medium, physical MAC addressing, and frame check sequence (FCS) error detection. Protocols: Ethernet (IEEE 802.3), Wi-Fi (IEEE 802.11). PDU: Frame.
  • OSI Layer 1 (Physical): Transmits raw, unstructured binary bit streams across physical copper cables, fiber strands, or radio waves. PDU: Bits.

IP Addressing and Subnetting Architecture

IPv4 (Internet Protocol Version 4)

An IPv4 address is a 32-bit binary number represented in dotted-decimal notation, consisting of four 8-bit octets separated by periods (e.g., 192.168.10.45). Each octet ranges from 0 to 255.

  • Network ID vs. Host ID: An IP address is logically divided into a Network portion and a Host portion by a Subnet Mask. For example, a subnet mask of 255.255.255.0 (written in Classless Inter-Domain Routing / CIDR notation as /24) indicates that the first 24 bits identify the network, leaving 8 bits to identify up to 254 unique physical hosts (2^8 - 2 = 254; subtracting the network wire address and the broadcast address).
  • Private IP Address Spaces (RFC 1918): To conserve global IPv4 space, specific address ranges are reserved strictly for internal enterprise/campus networks and cannot be routed across the public internet:
    • Class A: 10.0.0.0 to 10.255.255.255 (10.0.0.0/8, providing 16,777,214 host addresses; widely used in large school districts).
    • Class B: 172.16.0.0 to 172.31.255.255 (172.16.0.0/12, providing 1,048,574 host addresses).
    • Class C: 192.168.0.0 to 192.168.255.255 (192.168.0.0/16, providing 65,534 host addresses; common in smaller schools or residential setups).
  • Network Address Translation (NAT): Because RFC 1918 private IP addresses cannot route across the public internet, school district border firewalls utilize NAT / PAT (Port Address Translation). NAT translates thousands of internal private IP addresses to a single publicly routable IP address by mapping unique source port numbers, shielding internal student devices from direct inbound internet attacks.

IPv6 (Internet Protocol Version 6)

To resolve the global exhaustion of 32-bit IPv4 addresses, IPv6 utilizes a 128-bit address space, yielding 2^128 ≈ 3.4 × 10^38 unique addresses.

  • Notation: Written as eight groups of four hexadecimal digits (hextets) separated by colons (e.g., 2001:0db8:85a3:0000:0000:8a2e:0370:7334).
  • Compression Rules: Leading zeros within a hextet can be omitted (0db8 becomes db8). A single contiguous sequence of all-zero hextets can be replaced once per address with a double colon (::), simplifying 2001:0db8:85a3:0000:0000:8a2e:0370:7334 to 2001:db8:85a3::8a2e:370:7334.
  • Features: Eliminates the need for NAT, provides built-in IPsec security, and features Stateless Address Autoconfiguration (SLAAC).

Core Infrastructure Protocols

Dynamic Host Configuration Protocol (DHCP)

DHCP automates the assignment of network configuration parameters to client devices, preventing manual IP address collision errors. When a student powers on a Chromebook, the client executes the DORA four-step handshake:

  1. Discover: The client broadcasts a DHCPDISCOVER packet across the local subnet searching for available DHCP servers (UDP destination port 67, source port 68, destination IP 255.255.255.255).
  2. Offer: A listening DHCP server responds with a DHCPOFFER unicast or broadcast packet proposing an unassigned IP address, subnet mask, lease duration, default gateway IP, and DNS server addresses.
  3. Request: The client broadcasts a DHCPREQUEST packet formally notifying all servers that it accepts the offered IP lease.
  4. Acknowledge: The DHCP server commits the lease to its database and transmits a DHCPACK packet, finalizing client network configuration.

Domain Name System (DNS)

DNS operates as the distributed hierarchical database of the internet, resolving human-friendly Fully Qualified Domain Names (FQDNs) (e.g., school.district.edu) into machine-routable IP addresses (e.g., 198.51.100.25).

  • Resolution Hierarchy: Queries flow from local DNS caches to Recursive Resolvers, then to Root Name Servers (.), to Top-Level Domain (TLD) Servers (.edu, .gov, .org), and finally to the Authoritative Name Server hosting the official zone file.
  • Key Resource Record Types:
    • A Record: Maps an IPv4 address to a hostname.
    • AAAA Record: Maps an IPv6 address to a hostname.
    • CNAME (Canonical Name): Creates an alias pointing one hostname to another.
    • MX (Mail Exchange): Identifies mail servers responsible for accepting email for the domain.

Transport Layer: TCP vs. UDP

Transport layer protocols govern how applications exchange data across networks:

  • Transmission Control Protocol (TCP): A connection-oriented, reliable transport protocol. Before transmitting data, TCP establishes a session via the Three-Way Handshake:
    1. Client sends a SYN (Synchronize) packet containing an initial sequence number x.
    2. Server returns a SYN-ACK (Synchronize-Acknowledge) packet acknowledging x + 1 and providing its own sequence number y.
    3. Client returns an ACK (Acknowledge) packet with y + 1. TCP assigns sequential numbers to all segments, tracks receipt, enforces flow control via sliding windows, and automatically retransmits dropped segments. Used where data loss is unacceptable: web browsing (HTTP/HTTPS), file transfers (FTP/SFTP), email (SMTP/IMAP), and secure terminal sessions (SSH).
  • User Datagram Protocol (UDP): A connectionless, lightweight, unreliable transport protocol. UDP executes no handshake, maintains no sequence numbers, performs no error retransmission, and adds a minimal 8-byte header (compared to TCP's 20-to-60-byte header). UDP prioritizes low latency over guaranteed delivery. If a datagram drops in transit, it is ignored. Used where real-time timeliness is critical: video conferencing (Zoom, Google Meet), VoIP phone systems, online streaming, and lightweight lookup queries (DNS, DHCP).

Network Protocol Comparison

Protocol NameAcronymOSI LayerDefault PortTransport ProtocolPrimary Function in Education
Hypertext Transfer ProtocolHTTPLayer 780TCPUnencrypted transmission of web page content and web assets
Hypertext Transfer Protocol SecureHTTPSLayer 7443TCPEncrypted web communication utilizing TLS cryptographic tunneling
Domain Name SystemDNSLayer 753UDP / TCPResolves human-readable hostnames to numeric IP addresses
Dynamic Host Configuration ProtocolDHCPLayer 767 (server) / 68 (client)UDPAutomatically assigns IP addresses and configuration leases to clients
Secure ShellSSHLayer 722TCPEncrypted terminal access for remote administrative server management
Simple Mail Transfer ProtocolSMTPLayer 725 / 587TCPRoutes outbound email between mail servers
Internet ProtocolIPv4 / IPv6Layer 3N/AN/ALogical host addressing and packet routing across network boundaries
Address Resolution ProtocolARPLayer 2/3N/AN/AResolves known Layer 3 IP addresses to physical Layer 2 MAC addresses
Loading diagram...
Hierarchical Campus Star-Tree Network Infrastructure
Test Your Knowledge

A classroom computer lab experiences an issue where a single student's workstation loses network connectivity, but all other workstations in the lab continue accessing online instructional tools normally. Which network topology is currently deployed in the lab?

A
B
C
D
Test Your Knowledge

Which statement correctly distinguishes the operational behavior of a Layer 2 network switch from a Layer 3 network router?

A
B
C
D
Test Your Knowledge

During the startup of a student laptop, which initial packet is broadcast across the local subnet to initiate automatic IP address assignment?

A
B
C
D