5.2 Networking Basics (LAN, WAN, IP Addressing, DHCP)

Key Takeaways

  • LANs connect devices within a localized area (hospital building) with high speed and low latency, while WANs link geographically separated facilities using leased telecom lines.
  • The OSI model Layer 1 (Physical), Layer 2 (Data Link - MAC frames), and Layer 3 (Network - IP packets) represent the primary zones of network troubleshooting for BMETs.
  • IPv4 addresses are 32-bit dotted-decimals, whereas IPv6 addresses are 128-bit hexadecimals designed to resolve IPv4 address space exhaustion.
  • DHCP automates network configuration through the four-step DORA (Discover, Offer, Request, Acknowledge) lease process.
  • The default gateway is the IP address of the local router interface; an incorrect gateway prevents a device from routing packets to other subnets.
Last updated: July 2026

Networking Basics

Modern healthcare delivery is entirely dependent on computer networks. Network connectivity allows vital signs to flow from a bedside monitor to a central telemetry station, diagnostic images to travel from a CT scanner to the PACS archive, and clinicians to document care in the Electronic Health Record (EHR). For biomedical equipment technicians (BMETs), understanding networking fundamentals is essential for troubleshooting connected medical devices and ensuring uninterrupted data transmission.

LAN vs. WAN

Computer networks are categorized based on their geographical scope and management structure.

  • Local Area Network (LAN): A LAN covers a restricted geographic area, such as a single hospital building, clinic office, or laboratory. LANs are typically owned and operated by the healthcare organization itself. They use high-speed media—such as copper Ethernet cabling (Cat6) or enterprise Wi-Fi—to deliver high throughput (typically 1 Gbps to 10 Gbps) and very low latency.
  • Wide Area Network (WAN): A WAN connects geographically dispersed locations. It is used to link multiple hospitals within a regional healthcare system, or to connect remote clinics to a centralized, cloud-hosted EHR database. WANs cross public right-of-ways, requiring the leasing of telecommunications lines from internet service providers (ISPs). Compared to LANs, WANs typically exhibit lower transmission speeds, higher latency, and higher operational costs.

The OSI Reference Model

The Open Systems Interconnection (OSI) model is a conceptual framework that standardizes network communication into seven distinct layers. For BMETs troubleshooting device connectivity, the physical, data link, and network layers (Layers 1, 2, and 3) are the most critical.

Layer NumberLayer NameProtocol Data Unit (PDU)Core FunctionHardware / Protocols
Layer 3NetworkPacketLogical addressing and routing between different subnetsRouters, Layer 3 switches, IP (IPv4/IPv6), ICMP
Layer 2Data LinkFramePhysical addressing (MAC) and media access control on a local networkSwitches, NICs, MAC addresses, Ethernet, ARP
Layer 1PhysicalBitsTransmission of raw unstructured bit streams over physical mediaCables (Cat6, Fiber), Hubs, RJ-45, Repeaters, Wireless transceivers
  • Physical Layer (Layer 1): Responsible for transmitting raw bit streams over a physical medium (copper cables, fiber optics, or radio waves). Troubleshooting at this layer involves checking for broken RJ-45 clips, faulty ethernet cables, or wireless interference.
  • Data Link Layer (Layer 2): Formats packets into frames and handles local delivery on the same network segment. It utilizes Media Access Control (MAC) addresses—unique 48-bit physical addresses burned into the network interface card (NIC) by the manufacturer. Network switches operate at Layer 2, reading MAC addresses to forward frames to specific ports.
  • Network Layer (Layer 3): Manages logical addressing and routing of packets across different networks. It relies on IP addresses to determine the path data must take to reach its destination. Routers operate at Layer 3, forwarding packets between different subnets.

IP Addressing

An Internet Protocol (IP) address is a logical identifier assigned to each device on a network.

IPv4 vs. IPv6

  • IPv4: The dominant protocol, utilizing 32-bit addresses formatted as four decimal octets separated by dots (e.g., 192.168.10.45). The 32-bit length limits the total address pool to approximately 4.3 billion addresses. Because of the explosion of internet-connected medical devices (IoT), this address space has been exhausted.
  • IPv6: Developed to replace IPv4, utilizing 128-bit addresses formatted in hexadecimal colon-separated notation (e.g., 2001:0db8:85a3:0000:0000:8a2e:0370:7334). IPv6 provides a virtually limitless address space (3.4 × 10^38 addresses), integrated security (IPSec), and simplified routing.
FeatureIPv4IPv6
Address Length32 bits128 bits
NotationDotted-decimal (e.g., 192.168.1.1)Hexadecimal colon-separated (e.g., 2001:db8::1)
Address Space~4.3 billion addresses~3.4 × 10^38 addresses (virtually unlimited)
ConfigurationManual (Static) or DHCPv4Stateless Address Autoconfiguration (SLAAC) or DHCPv6
SecurityOptional IPSec integrationBuilt-in native IPSec support

Static vs. Dynamic IP Addressing

  • Static IP Address: An IP address that is manually configured on a device and remains permanent. In healthcare, static IPs are assigned to critical, permanent infrastructure that must always be reachable at a known address. Examples include PACS servers, EHR database hosts, networked physiological monitors, and central telemetry stations.
  • Dynamic IP Address: An IP address that is temporarily leased to a device by a server. When the device disconnects or the lease expires, the address returns to a pool. Dynamic addressing is used for client devices like clinician laptops, mobile tablets, and guest network users.

Wireless and Identification Technologies

Beyond wired Ethernet, healthcare networks rely on several wireless and identification technologies that CABT technicians must understand:

Bluetooth

Bluetooth is a short-range (typically 1–100 m) wireless protocol operating in the 2.4 GHz ISM band. Medical applications include connecting wireless pulse oximeters, Bluetooth-enabled thermometers, and hearing assistive devices to patient monitors and smartphones. Bluetooth Low Energy (BLE) is common in battery-powered medical sensors because of its minimal power consumption.

Radio Frequency Identification (RFID)

Radio Frequency Identification (RFID) uses radio waves to track and identify tagged assets. Hospitals use RFID tags on infusion pumps, defibrillators, and wheelchairs for real-time asset tracking and inventory management. Passive RFID tags (no battery) are energized by the reader's signal, while active RFID tags (battery-powered) broadcast their own signal at regular intervals. BMETs may encounter RFID readers integrated into facility management systems that log equipment maintenance schedules.

Data Closets and Server Racks

A data closet (also called a telecom closet or IDF — Intermediate Distribution Frame) is a small enclosed room on each hospital floor that houses network switches, patch panels, and UPS units for that area's network connections. A server rack is a standardized metal frame (19-inch wide) that organizes and mounts networking hardware, servers, and patch panels vertically in units called "U" (1U = 1.75 inches). BMETs must locate the correct data closet when troubleshooting a networked medical device and verify that the switch port and patch panel connections are properly labeled and seated.

Dynamic Host Configuration Protocol (DHCP)

Dynamic Host Configuration Protocol (DHCP) is a network management protocol used to automate the assignment of IP addresses, subnet masks, default gateways, and DNS servers. The lease process follows a four-step sequence known by the acronym DORA:

  1. Discover: The client device broadcasts a message on the local network searching for a DHCP server.
  2. Offer: The DHCP server receives the request and offers a temporary IP address to the client.
  3. Request: The client responds by requesting the offered IP address.
  4. Acknowledge: The DHCP server confirms the lease, providing the subnet mask, default gateway, and lease duration.

Subnet Mask and Default Gateway

To communicate, a device must understand the boundary of its local network and how to reach external systems.

  • Subnet Mask: A 32-bit number (often written in dotted-decimal format, such as 255.255.255.0) that divides an IP address into its network portion and host portion. This division allows a device to determine if a destination IP is local (within its own subnet) or remote (on a different subnet).
  • Default Gateway: The IP address of the router interface that connects the local subnet to other subnets or the internet. If a medical device determines that a destination IP address is not on its local subnet, it forwards the data packets to the default gateway to be routed to the external network. If the default gateway is misconfigured on a device, that device will only be able to communicate with other systems on its local subnet and will be unable to access servers across the hospital network.
Test Your Knowledge

In the DHCP lease process, what is the correct sequence of messages exchanged between a client and a DHCP server?

A
B
C
D
Test Your Knowledge

A biomedical technician is configuring a networked physiological monitor and needs to ensure that the device's IP address remains permanent and never changes. Which IP configuration method must be used?

A
B
C
D
Test Your Knowledge

A medical device can communicate with other systems in the same ICU room, but it cannot send diagnostic data to the central PACS server located in another wing of the hospital on a different subnet. Which configuration parameter is most likely missing or incorrect on the medical device?

A
B
C
D