Skip to main content

Command Palette

Search for a command to run...

Network Devices: The Components That Make Networks Work

A simple explanation of the network devices behind modern computer networks

Updated
•5 min read
Network Devices: The Components That Make Networks Work
Y
I am aspiring web & software developer. Currently learning web development and core programming fundamentals with a focus on clear concepts and practical understanding. Curious about how software works and committed to continuous learning and improvement.

In daily life we all use internet whether it is computer or mobile. Some uses mobile internet and some uses home wi-fi network. But ever have you wonder how internet work?, How all the devices are interconnected Does fairiesđź§š working behind it ?

In this article, we going to learn and understand about network devices which are responsible behind to make internet work.

Before jumping to the network devices, first understand what network is ?

Network đź–§

A network is a group of two or more interconnected devices, like computers, printers, or phones, that can communicate and share resource(data, media file) with each other using wire cable or wireless (like wi-fi).

Real-life example:- A connection of two or more aunties of your colony who communicate with each other and share resources like clothes, recipes etc., can be describe as a network.

In similar way two or more interconnected computers which share data and file with each other, is called a network.

Type of Network

A network can be many types according to their size (number of devices connected in a network).

  1. LAN(Local Area Network): connects computers in a small area like a home, office, or building (e.g., an office Ethernet).

  2. WAN (Wide Area Network): Covers large geographical areas, connecting cities, countries, or the world (e.g., the Internet).

  3. MAN (Metropolitan Area Network): Spans a city, connecting multiple LANs or CANs.

  4. PAN (Personal Area Network): Connects devices within an individual's personal space (e.g., Bluetooth headphones to a phone).

đź’ˇ
Internet is the largest public Wide Area Network(WAN).

Network Devices

Network devices are those hardware which manage and supporting networking functions, and required for communication and interaction between computers on a computer network.

They act as the "plumbing" of the internet, directing data traffic, amplifying signals, and securing connections. To understand how they work, we must categorize them by the layer of the OSI Model they operate on.

Layer 1 Devices: Physical layer

Physical layer devices work with raw electrical or optical signals (bits). These devices do not understand IP addresses & MAC addresses.

  1. HUB: Hub is used to connect devices( like computer, phone, and printers etc.) within a network. Because this does not understand MAC addresses , hub broadcast ( or sent) data to all connected device in the network instead of required one. Because of this blind broadcasting, data collisions are common (if two devices talk simultaneously, packets interfere).

    That’s why in present time, HUB replaced by switches.

  2. Repeater: Repeater is used to extend the range of a network by regenerates weak signals. Ethernet and Wi-Fi signals weaken over distance, it receives weak signals, amplifies it and retransmits it. It works with raw bits, not data packets, so it can't filter traffic or provide security.

  3. Modem: A modem connects your home or office network to the Internet Service Provider (ISP).Work of modem is to converts (modulates) the digital data from your computer or router into analog signals and transmission over phone or cable lines, and then vice-versa (demodulates).

    Modem acts as a bridge between your network and your Internet Service Provider (ISP).

These Data link layer devices work with physical addresses(MAC Addresses).Data Link devices forward data within a local network using hardware addresses.

  1. Switch: We can say that, switch is advance version of hub. switches connect together all the devices (computers, printers, servers) in a small network so they can share information. Unlike hubs when frames arrive at a switch port, the switch examines the destination MAC address and forwards the frame only to the port where that device is connected. This reduces collisions and increases speed compared to a hub.

  2. Access Point(AP): A wireless access point creates a Wi-Fi LAN by bridging it to a wired Ethernet network. It transmits and receives wireless signals from devices (phones, laptops) and forwards the data to the Ethernet switch. Unlike a router, a pure AP does not route IP packets or assign addresses – it simply provides wireless access to the wired network.

    Many people confused that Wi-fi is internet, but it is not right , wi-fi is a WLAN( wireless local area network) like LAN, the only difference is that wi-fi connects different devices wirelessly through radio waves.

    It Converts wired Ethernet data into radio waves.

Layer 3 Devices: Network Layer

  1. Router: A router directs IP packets between networks. For example, it connects your home LAN to the ISP’s network and beyond. A router maintains a routing table that tells it the best path for each destination IP. we can say that router acts like a traffic dispatcher, it “directs traffic and chooses the most efficient route for information” across networks.

    Many routers implement Network Address Translation (NAT), allowing all devices on a home LAN to share one public IP address. Routers also often include simple firewall features (using access control lists) to block or permit traffic.

    ISP send or transmit data in analog signals through fiber cable, Modem convert these signals in digital signals(bits), and then Router shares internet(in digital signals) with connected devices via ethernet cable and transmit wirelessly through radio waves in wi-fi.

Layer 4-7 Devices: Advanced Processing

  1. Firewall: A firewall is like a security guard for your network. It can be a hardware appliance or software on a router/server. A firewall enforces rules that allow or block traffic based on IP addresses, ports, and other factors. Simple firewalls do packet filtering (examining header information), while stateful firewalls track active connection states. For example, a firewall can block all incoming traffic except for responses to requests you initiated. Many home routers include built-in firewalls to protect the LAN.

Summary

The article explores how the internet functions and the network devices that make it possible. It explains what a network is, using both real-life and technical examples, and describes different types of networks, such as LAN, WAN, MAN, and PAN. The discussion then shifts to network devices categorized by the OSI model layers they operate on. These devices include hubs, repeaters, modems, switches, access points, routers, and firewalls, each with specific roles in facilitating data transmission, connectivity, and network security.