Skip to main content
Tech Radar TechRadar the technology experts
Sign in
  • View Profile
  • Sign out
RSS
Asia
flag of Singapore
Singapore
Europe
flag of Danmark
Danmark
flag of Suomi
Suomi
flag of Norge
Norge
flag of Sverige
Sverige
flag of UK
UK
flag of Italia
Italia
flag of Nederland
Nederland
flag of België (Nederlands)
België (Nederlands)
flag of France
France
flag of Deutschland
Deutschland
flag of España
España
North America
flag of US (English)
US (English)
flag of Canada
Canada
flag of México
México
Australasia
flag of Australia
Australia
flag of New Zealand
New Zealand
  • Phones
  • Computing
  • TVs
  • AI
  • Streaming
  • Health
  • Audio
  • VPN
  • More
    • Cameras
    • Home
    • News
    • Reviews
    • Opinion
    • How to
    • Versus
    • Deals
    • Coupons
    • Best
Tech Radar Pro
Tech Radar Gaming
Trending
  • Nintendo Switch 2
  • WWDC
  • Best laptop
  • Best VPN
  • ChatGPT
  • Best web hosting
  • NYT Wordle today

Recommended reading

Man using smartphone to control various smart lights in his home
Smart Lights Smart lights 101: everything you need to know to level up your lighting
How to host a website
Website Hosting How to host a website
Domain names
Website Hosting What is a domain name?
The text web hosting glossary on a radar background
Website Hosting Web hosting jargon explained
Father and son using a tablet to control a smart light in a kitchen
Smart Home Not ready for a full smart home refit? Here are three simple smart home hacks to make every day easier
An image of network security icons for a network encircling a digital blue earth.
Pro Sustainability Week: Driving energy efficiency through the network
Netgear
Home Save up to $600 on the Netgear Orbi 970 Series with our exclusive code
  1. Computing
  2. Computing Components
  3. Servers & Network Devices

The basics of home networking

News
By Nathan Taylor published 24 July 2015

A guide to the fundamentals of home networking

When you purchase through links on our site, we may earn an affiliate commission. Here’s how it works.

The basics of home networking

The basics of home networking

In this article we're going to look at how your home networking technologies actually function. We'll look at the basic technologies that drive it and how they work together. It may be a little dry – but we guarantee that just a little understanding of the fundamentals will help you a lot when it comes to setting up your own home network.

Page 1 of 6
Page 1 of 6
Ethernet

Ethernet

Although it's now almost synonymous with wired local area networking (LAN), that wasn't always the case for Ethernet. There were once a variety of LAN technologies available, but Ethernet has become absolutely dominant thanks largely to its flexibility. It's very easy to add and remove devices from the network: you pretty much just plug them in and the Ethernet standard itself takes care of the rest.

It works over a variety of different media – coaxial, copper, optical fibre – but most home users will only ever use copper, in the form of "twisted pairs," which are copper wires intertwined with each other.

Each Ethernet device has a unique identifier, known as its MAC (media access control) address. It's a string of six groups of two characters, like something like 01:23:45:67:89:ab. You'll often see the MAC address of a network device on a sticker attached to it.

The funny thing about MAC addresses is that they don't tell data how to get from point A to point B. It's like writing a letter with a name but no delivery address. But that's where Ethernet switches come in.

Back in the olden days, we used passive hubs, which simply broadcasted every bit of data on the network to every device, which is how they guaranteed that data got to its destination. As you can imagine, that's pretty inefficient, which is why we now use switches.

A switch remembers which MAC address is attached to which physical port, so it only sends the data to the device that it's intended for. And if it gets a chunk of data that's supposed to go to a MAC address that it has no record for? Then it just broadcasts it on every port and waits for the reply, at which point it will make a note and send future packets of data directly to the device.

One of the clever things about Ethernet is that a switch can associate more than one MAC address with a given physical port. That's why you can daisy chain switches. It's OK to plug a switch into another switch.

All the devices attached to each should be able to communicate with each other seamlessly – although there is a caveat in that the link between the two switches may end up having a lot of traffic carried over it, which may reduce performance.

Page 2 of 6
Page 2 of 6
Ethernet: Cables

Ethernet: Cables

Ethernet twisted pair cables come in a variety of flavours. Different categories of cable were designed for different speeds. Cat 5 and 5e cables were designed for 100mbit (but 5e will work for gigabit); Cat 6 for gigabit and Cat 6a for 10-gigabit.

There are also shielded/foiled twisted pair (S/FTP) and unshielded (UTP) cables. The former are used in instances where there might be interference – if you're running cables near electrical lines or in bundles, use S/FTP.

Finally, there are crossover cables. It's possible to connect Ethernet devices directly to each other, without a switch in between, but if you do that the upstream and downstream cables in the pair will be backwards. That's where you need a crossover cable, which reverses them and lets you connect devices directly.

Page 3 of 6
Page 3 of 6
Wireless

Wireless

The thing to understand about Wi-Fi is that it's really just a version of Ethernet that uses the airwaves as the physical medium. It deals with the same issues: how to share the medium between multiple devices and how to specify the target (it also uses MAC addresses).

Of course, Wi-Fi has a few things layered on top. First of all, the airwaves are a much messier medium than physical cables, so it has to deal a lot more with error correction, contention (multiple users competing for airtime) and noise reduction.

It also has to deal with security issues -- when something transmits over Wi-Fi it's really just throwing data out into the ether, hoping that it gets to its destination. Anybody nearby could also grab that data, which is why Wi-Fi data needs to be encrypted and password protected using Wi-Fi Protected Access (WPA) so that only authorised devices can understand the data.

Wi-Fi devices can talk directly to each other, but more commonly use a hub called a Wi-Fi access point, that operates very much like a switch, relaying data between devices.

Page 4 of 6
Page 4 of 6
Routers

Routers

MAC addresses work pretty well for local networks, but they're no good for the internet. Switches can't remember the MAC address of every single device on the internet. That's why the Internet Protocol (IP) was invented.

Where a MAC address is like an envelope with a name but no delivery address, an IP address includes information on how to get to the destination. It may look like just a series of four 8-bit numbers (like 123.123.123.123), but the way it breaks down is actually a template for understanding the hierarchy of networks of the internet. You could look at it like a physical address: the first number is the country, the second the postcode, the third the street name and the fourth the street number.

Of course, it doesn't actually break down geographically, but by network. The first number might be your ISP, the second is the city, the third the exchange, the fourth your number on that exchange. (Obviously that's a big simplification of how the address breaks down, but we'll spare you a dissertation on IP address classes and subnet masks).

While the IP address contains the information on where the target is, you still need devices that figure out how to cross the collection of connected networks that is the internet. That's what a router does – it's the postman of the internet. As the name says, it figures out a route to get the data from point a to point b.

Page 5 of 6
Page 5 of 6
TCP

TCP

You may also be wondering about the "TCP" that always seems to be attached to "IP". TCP stands for Transmission Control Protocol, and it's a system for managing sessions and ensuring that data reaches its destination intact.

Connecting to another computer is like making a phone call, and TCP manages the pick-up and hang-up, and checks to see whether anything was lost on the way (which is called "packet loss") and, if so, asks for it to be sent again.

There's a counterpart to TCP called User Datagram Protocol (UDP) which is also known as "send-and-pray" networking – instead of a managed connection with retransmission like TCP, UDP just sends data across the internet and hopes it gets there. It's most commonly used in instances like streaming media or voice where, even if something is lost, it's not worth going back and waiting for it to be resent.

Page 6 of 6
Page 6 of 6
Nathan Taylor
See more Computing News
Read more
Man using smartphone to control various smart lights in his home
Smart lights 101: everything you need to know to level up your lighting
How to host a website
How to host a website
Domain names
What is a domain name?
The text web hosting glossary on a radar background
Web hosting jargon explained
Father and son using a tablet to control a smart light in a kitchen
Not ready for a full smart home refit? Here are three simple smart home hacks to make every day easier
An image of network security icons for a network encircling a digital blue earth.
Sustainability Week: Driving energy efficiency through the network
Latest in Servers & Network Devices
Asus ZenWiFi AX (XT8) vs Asus RT-AX55 on a TechRadar background
Asus ZenWiFi AX (XT8) vs Asus RT-AX55: What's the best budget router for your setup?
Asus ZenWiFi BT10 from the front on a wooden table wide image
Asus ZenWiFi BT10 review: sleek and super fast Wi-Fi 7 mesh, but you'll pay for it
Racks of servers inside a data center.
UK data centers ready for expansion
Netgear Nighthawk RS300 router sitting on a table next to its box
Netgear Nighthawk RS300 review: high-speed Wi-Fi 7 at a competitive price
TP-Link Deco BE63 - 3 devices showing ports
TP-Link Deco BE63 review: impressive Wi-Fi 7 mesh router system at a competitive price
Linksys Velop Pro 7
Linksys Velop Pro 7: A high-speed Wi-Fi 7 router at a more competitive price
Latest in News
Pixel Watch 3
Your Wear OS smartwatch can now warn you about imminent earthquakes
A still from the Prime Video movie Deep Cover showing Bryce Dallas Howard, Orlando Bloom and Nick Mohammed
Prime Video's new crime comedy caper with 95% on Rotten Tomatoes is being called 'one of the most surprisingly funny films of 2025'
The Journal app in iPadOS 26
iPadOS 26 adds the iPhone's Journal app to iPad – and I think it makes total sense
AMD CEO Lisa Su
AI chip war heats up as AMD unveils its Nvidia Blackwell competitor
A hospital room with a bed and two lights hanging above it. The room is dark.
NHS recruitment firm had major security bugs which could have exposed entire systems
Gemini on a smartphone.
Google is using Gemini to solve one of your most annoying PDF problems
LATEST ARTICLES
  1. 1
    Mario Kart World review: sublime driving, questionable design
  2. 2
    AI chip war heats up as AMD unveils its Nvidia Blackwell competitor
  3. 3
    LG xboom Grab review: the JBL Flip 7 has finally met its match in this excellent strappy (no, we don't 'strapping' – with straps!) Bluetooth speaker
  4. 4
    iPadOS 26 adds the iPhone's Journal app to iPad – and I think it makes total sense
  5. 5
    Prime Video's new crime comedy caper with 95% on Rotten Tomatoes is being called 'one of the most surprisingly funny films of 2025'

TechRadar is part of Future US Inc, an international media group and leading digital publisher. Visit our corporate site.

  • About Us
  • Contact Future's experts
  • Contact Us
  • Terms and conditions
  • Privacy policy
  • Cookies policy
  • Advertise with us
  • Web notifications
  • Accessibility Statement
  • Careers

© Future US, Inc. Full 7th Floor, 130 West 42nd Street, New York, NY 10036.

Please login or signup to comment

Please wait...