Learning Question
How does a LAN relate to local delivery on a network?
A LAN, or Local Area Network, is a network for a limited local site such as a home, office, building, campus, or facility. It is a scope category. It is not the same thing as Wi-Fi, Ethernet, a router, an IP range, or internet access.
The useful role of the LAN concept is that it marks the local operating area where nearby devices are connected so they can communicate.
What LAN Does Not Mean
LAN is often confused with the technology used to build it.
LAN = local-site network scope
Ethernet = common wired link technology
Wi-Fi = common wireless access technology
router = device that may connect the LAN to other networks
internet = global network of networksA home LAN can include a desktop connected by Ethernet and a phone connected by Wi-Fi. They use different access technologies, but they may still participate in the same local network environment.
Layer 2 Reachability
For host reachability, the more precise local question is often about Layer 2 reachability:
Can this host deliver a frame directly to the next device on this local link?Layer 2 delivery uses link-layer addressing, such as MAC addresses in Ethernet-like networks. A host that treats a destination as on-link tries to discover the destination’s link-layer address directly.
In IPv4, that discovery is commonly ARP:
Who has 192.168.1.20?
Tell 192.168.1.10.The answer gives the MAC address that should receive the local frame.
LAN Scope Is Not a Perfect Routing Rule
LAN, subnet, and Layer 2 link often line up in simple home or office networks, but they are not the same concept.
A LAN is a local-site category. An IP subnet is an address prefix. A Layer 2 link is the local delivery scope where frames can be sent directly. Network configuration can split one physical environment into multiple VLANs, guest networks, firewall zones, or isolated segments.
So the practical host question is not just:
Are these devices nearby?It is:
Does this host have a route that treats the destination or next hop as on-link?
Can it resolve a link-layer address for that on-link target?Core Mental Model
LAN tells you the local-site scale of a network. Layer 2 reachability tells you whether a host can deliver a frame directly on the current link.
They often appear together, but host reachability depends on configured interfaces, routes, and local link delivery, not on the word “LAN” alone.