Skip to the content.

Lesson 1: How Big Is a Network?


🧱 Fundamentals

🌍 Network Size

A network’s size can be defined by two main factors:

  1. Number of Nodes / Users
    • In hardware terms → nodes or devices.
    • In software terms → clients or users (e.g., computers, phones, servers).
  2. Geographical Coverage
    • The physical area the network spans.

These two characteristics together determine the network’s topology — the structural layout of how devices are connected and how data travels among them.


🔗 Network Topologies Overview

Topology defines how a network is physically or logically arranged — the pattern of connections between nodes.

Topologies can be classified based on network size and coverage area:

Type Full Name Description Typical Area
LAN Local Area Network Small area like a home, office, or campus. Up to a few kilometers
MAN Metropolitan Area Network Connects multiple LANs within a city. City-wide
WAN Wide Area Network Connects multiple MANs and LANs over large distances. Country or global scale

🧩 WANs are often hybrids, combining multiple smaller networks with different topologies (LANs, MANs, etc.).


⚙️ Network Lines and Channels

Data in networks travels through communication lines or channels.
These can be classified into:

Each type affects speed, cost, and security.


🔄 System Types (Symmetrical vs. Asymmetrical)

Network systems can be categorized by how devices communicate:

  1. Symmetrical Systems
    • All nodes can both send and receive requests.
    • Example: Peer-to-peer (P2P) networks — each node is equal.
  2. Asymmetrical Systems
    • Roles are divided: clients send requests, servers respond.
    • Example: The web — browsers (clients) talk to servers (e.g., Google).

📡 Signal Strength and Hops

As data travels, signal strength decays over distance due to attenuation.
To maintain quality:

Without hops, communication fails beyond a certain length of cable or distance.


🖧 LAN Topologies

Local Area Networks (LANs) can be physically arranged in several common topologies.
Each affects performance, reliability, and cost.


🚌 Bus Topology

Structure

A ---- B ---- C ---- D

All devices share a single communication line (bus) — a common cable where data flows in both directions.

How It Works

Problems

Collision Handling

Methods to avoid or manage collisions:

  1. Time Division Multiplexing (TDM) – devices take turns sending data based on time slots.
  2. Frequency Division Multiplexing (FDM) – each device transmits on a unique frequency band.
  3. Carrier Sense Multiple Access (CSMA/CD) – used in early Ethernet; devices listen before sending.

Summary

✅ Simple, cheap, easy to set up.
❌ Poor performance, collision-prone, not used in modern LANs.


🌟 Star Topology

Structure

graph TD
    Hub((Hub / Switch))
    A --- Hub
    B --- Hub
    C --- Hub
    D --- Hub

All devices connect to a central device (Hub or Switch).

How It Works

Devices

Pros

Cons


💫 Ring Topology

Structure

graph LR
    A --> B --> C --> D --> A

Devices are connected in a closed loop — each with two links: one to send, one to receive.

How It Works

Pros

Cons

Improvements


🔺 Mesh Topology

Structure

graph TD
    A --- B
    A --- C
    A --- D
    B --- C
    B --- D
    C --- D

Every device is directly connected to every other device.

Characteristics

Formula

For n devices, total links = n × (n − 1) / 2

Pros

Cons

Mesh networks are often used partially (hybrid mesh) — not every device connects to every other, only key nodes.


🌐 WAN (Wide Area Network)

A WAN connects multiple smaller networks (LANs and MANs) across vast geographic areas — even countries or continents.

WANs are more about interconnection and scalability than strict structure.