In modern computer science, wireless technologies have become the foundation for data transmission, and the most recognizable standard is Wi-Fi. When users or students wonder what type of network a Wi-Fi network is, they often look for a simple definition, but technically, it's a complex system that integrates numerous standards and protocols. It's primarily a local area network, but with unique transmission medium characteristics that differ from their wired counterparts.
Understanding Wi-Fi classification is essential not only for passing exams, but also for properly setting up home equipment or corporate infrastructure. Wireless local area network (WLAN) is based on the IEEE 802.11 family of standards, which define the physical and logical parameters for information exchange. Unlike global area networks (WANs) spanning cities or Bluetooth personal area networks (PANs), Wi-Fi occupies a niche for high-speed coverage within buildings and adjacent areas.
It's important to note that network typology is determined not only by range but also by the way nodes are organized. In the context of computer science, Wi-Fi is most often viewed as an infrastructure network with a central access point, although direct communication between devices is also possible. These nuances determine the throughput, security, and scalability of the entire system.
Classification by scale: LAN and WLAN
In terms of geographic coverage, Wi-Fi clearly belongs to the class of local area networks, or Local Area Network (LAN). However, since the connection is established without the use of physical cables, the prefix "W" is added to the name, meaning "Wireless." Therefore, the full and accurate classification is WLAN—wireless local area network. The range of such a network is typically limited to several tens or hundreds of meters, allowing it to cover individual floors of buildings, apartments, or office spaces.
Unlike wide area networks (WANs), which connect continents via satellites and backbone cables, a local Wi-Fi network is designed to connect devices within a single organization or household. Access point The Access Point acts as a hub, managing traffic within this limited space. Data transfer rates in such networks are significantly higher than in WANs, allowing for 4K video streaming and lag-free online gaming.
There's also the concept of a PAN (Personal Area Network), which is often confused with WLAN. Personal area networks, such as Bluetooth or ZigBee, have a much shorter range and are designed to connect devices around a single user. Wi-Fi, on the other hand, can serve dozens of clients simultaneously, providing access to server resources or the internet, which extends its reach beyond the personal segment.
⚠️ Note: The boundaries between network types are blurring with the advent of mesh technologies. In these systems, multiple routers are combined into a single logical network, technically remaining local but covering areas comparable to small city blocks.
Wi-Fi buffer sizes and routing algorithms are optimized specifically for the local segment. This means that protocols here are less resilient to packet loss over long distances, but ensure minimal latency within the coverage area.
Network Topology: Star and its Features
If we consider the physical and logical structure of connections, then the classic Wi-Fi network belongs to the type topology "Star" (Star Topology). At the center of this star is the active networking device—a wireless access point or router. All other devices, called clients (laptops, smartphones, IoT sensors), connect directly to the central node, not to each other.
This arrangement has its advantages and disadvantages. On the one hand, the failure of a single client device does not affect the operation of the entire network. On the other hand, if the central access point fails, the entire local network ceases functioning. This makes the reliability of the central node critical to connection stability.
In some specific scenarios, such as using Wi-Fi Direct technology or ad-hoc mode, the topology may change to a mesh or fully meshed topology, where devices communicate directly. However, in the vast majority of cases encountered by the average user and system administrator, a centralized traffic management structure is required.
☑️ Checking network topology
The logical topology is also often described as a bus topology, since the radio channel is a shared medium. All devices within earshot receive signals, but only process packets addressed specifically to them. This imposes bandwidth limitations: the more active clients, the less bandwidth each receives.
IEEE 802.11 standards and physical layer
The technical basis of Wi-Fi is a family of standards developed by the IEEE under the general name 802.11These standards define how exactly the signal is encoded, the frequencies it is transmitted on, and how devices negotiate the start of data transmission. Without these rules, interoperability between equipment from different manufacturers would be impossible.
At the physical level, Wi-Fi uses radio waves in unlicensed bands. The primary frequencies are 2.4 GHz and 5 GHz, with the latest standards adding a 6 GHz band. The choice of frequency affects the signal's penetration and maximum transmission speed. For example, lower frequencies are better at bypassing obstacles but have lower throughput.
The evolution of standards has been toward increasing speed and spectrum efficiency. While 802.11b/g standards provided speeds in the tens of megabits, modern Wi-Fi 6 (802.11ax) enables gigabit speeds. Each new standard introduces changes to signal modulation and multiple access methods.
| Standard | Year of adoption | Frequency range | Max. speed (theoret.) |
|---|---|---|---|
| 802.11b | 1999 | 2.4 GHz | 11 Mbps |
| 802.11g | 2003 | 2.4 GHz | 54 Mbps |
| 802.11n (Wi-Fi 4) | 2009 | 2.4 / 5 GHz | 600 Mbps |
| 802.11ac (Wi-Fi 5) | 2013 | 5 GHz | 6.9 Gbps |
| 802.11ax (Wi-Fi 6) | 2019 | 2.4 / 5 / 6 GHz | 9.6 Gbps |
It's important to understand that actual speeds are always lower than theoretical ones due to protocol overhead, interference, and distance to the access point. Newer protocols are backward compatible with older standards, ensuring a smooth transition to new equipment without the need to immediately replace all your devices.
Why is the actual speed lower than stated?
In wireless networks, a significant portion of throughput is consumed by packet overhead, delivery acknowledgements (ACKs), and waiting for the channel to become available. Furthermore, retransmission of lost packets due to interference also reduces useful throughput.
Operating modes: Infrastructure and Ad-Hoc
In computer science, two main wireless network operating modes are clearly distinguished, which determine their interaction type. The first and most common is infrastructure mode. In this mode, all wireless clients connect through an access point (AP), which serves as a bridge between the wireless segment and the wired network (Ethernet). This is the type used in homes, offices, and public spaces.
The second type is Ad-Hoc mode (Independent Basic Service, IBSS). This type of network has no central control unit. Computers and laptops connect directly to each other, forming a peer-to-peer (P2P) network. This type is used for fast file transfers between two laptops or in situations where deploying an access point is not feasible.
There's also a hybrid mode known as Wi-Fi Direct, which allows devices to discover and connect without a router, but with a higher level of security and convenience than classic ad-hoc. However, from a strict network classification perspective, Wi-Fi Direct is often considered an add-on to the basic protocols.
⚠️ Warning: When using Ad-Hoc mode, network security is significantly lower due to the lack of centralized enterprise-level authorization mechanisms. Do not transmit sensitive data over open, independent networks.
The choice of mode depends on the tasks. For continuous access to the internet and shared resources, only the infrastructure mode is suitable. For temporary tasks, such as screen sharing or LAN gaming in the field, the ad-hoc mode can be useful.
Environment access methods and collisions
One of the key characteristics of a Wi-Fi network type is its media access method. Unlike wired Ethernet networks, which can use collision detection (CSMA/CD), this method is not possible in wireless networks. A device cannot simultaneously transmit and listen on the same frequency to detect signal collisions.
That's why Wi-Fi uses the protocol CSMA/CA (Carrier Sense Multiple Access with Collision Avoidance) is carrier-sense multiple access with collision avoidance. Before transmitting, a device "listens" to the air. If the channel is free, it waits a random amount of time and then transmits the data. If the channel is busy, the device waits.
This mechanism makes Wi-Fi a half-duplex medium: only one device can speak at a time. This fundamental limitation impacts network performance when there are many clients. The virtual channel reservation (RTS/CTS) mechanism helps solve hidden node problems, where two clients cannot hear each other but interfere with the access point.
The efficiency of CSMA/CA decreases as the number of devices increases. While in a wired network a switch can organize parallel transmission for different pairs of ports, in Wi-Fi the entire bandwidth is divided equally between all active participants in the data exchange.
Security and encryption in wireless networks
Because radio waves travel beyond physical walls, Wi-Fi networks require special security measures compared to their wired counterparts. For a long time, the basic security standard remained WPA2, which uses robust AES encryption. However, with advances in computing power and the emergence of quantum threats, the industry has transitioned to the WPA3 standard.
WPA3 introduces Simultaneous Authentication of Equals (SAE), which protects against brute-force attacks even on weak passwords. In the corporate sector, the 802.1X standard is used, which requires an authentication server (RADIUS). In this case, each user logs into the network using their own username and password, rather than a shared key.
Open networks, such as those found in cafes and airports, are also technically considered Wi-Fi, but they don't encrypt traffic between the client and the access point. Data on these networks is transmitted in cleartext, making interception trivial for an attacker.
| Protocol | Encryption | Status | Risks |
|---|---|---|---|
| WEP | RC4 | Outdated (hacked) | Critical |
| WPA | TKIP | Outdated | Tall |
| WPA2 | AES-CCMP | Relevant | Low (KRACK) |
| WPA3 | GCMP-256 | We recommend | Minimum |
⚠️ Please note: Encryption protocols and password requirements are subject to change. Regularly check your router's security settings and update your firmware to receive the latest security patches.
Using a Guest Network allows you to isolate visitors from the main infrastructure, which is a best practice for maintaining the privacy of the network owner's data.
Frequently Asked Questions (FAQ)
Is Wi-Fi a type of internet?
No, that's a common misconception. Wi-Fi is a wireless local area network technology, a way to transfer data between devices. The internet is a global network of networks. Wi-Fi can provide internet access, but it can also function independently, connecting a printer to a computer or streaming video from a phone to a TV without access to the internet.
What is the difference between Wi-Fi Direct and regular Wi-Fi?
Regular Wi-Fi (infrastructure mode) requires an access point (router) to coordinate connections. Wi-Fi Direct allows devices to connect directly to each other, without intermediary equipment, creating a temporary peer-to-peer network. This is convenient for quick printing or file transfers, but less convenient for constant internet access for multiple devices.
Can a Wi-Fi network be a wide area network (WAN)?
Wi-Fi technology itself is designed for local area networks (LANs). However, by connecting multiple Wi-Fi access points via wired or point-to-point radio links, it's possible to build a network covering an entire city. Technically, however, each individual Wi-Fi segment remains local, while global coverage is achieved through the backbone infrastructure.
What is SSID in network classification?
An SSID (Service Set Identifier) is the name of a wireless network, visible to the user when searching for available connections. It's not a network type, but rather an identifier. A single physical access point can broadcast multiple SSIDs, creating virtual networks (VLANs) with different security and access settings for different user groups.