Computer Networks, Topologies & Connecting Devices
A Computer Network is an interconnected collection of autonomous computing devices that exchange data and share hardware/software resources through wired or wireless communication channels.
1. Network Classifications by Geographical Scale
| Network Type | Full Form | Geographical Span | Typical Data Rate | Real-World Example |
|---|---|---|---|---|
| PAN | Personal Area Network | Up to | High ( | Bluetooth earphones, Smartwatch sync |
| LAN | Local Area Network | Room, Building, Campus ( | Very High ( | School computer lab, Office floor |
| MAN | Metropolitan Area Network | City / Metropolitan Area ( | Moderate to High | Cable TV network, City police grid |
| WAN | Wide Area Network | Country, Continent, Worldwide | Variable ( | The Global Internet, Banking ATM network |
2. Transmission Media
Transmission media are the physical pathways across which data signals travel. They are divided into Guided (Wired) and Unguided (Wireless) media.
mermaid
graph TD
TM["Transmission Media"] --> Guided["Guided Media (Wired)"]
TM --> Unguided["Unguided Media (Wireless)"]
Guided --> TP["Twisted Pair (UTP / STP)<br><i>Low cost, short distance</i>"]
Guided --> Coax["Coaxial Cable<br><i>Moderate bandwidth, TV feeds</i>"]
Guided --> Fiber["Optical Fiber<br><i>Light pulses, ultra-fast, EMI immune</i>"]
Unguided --> Radio["Radio Waves<br><i>Omnidirectional, penetrates walls</i>"]
Unguided --> Micro["Micro Waves<br><i>Line-of-sight, tower-to-tower</i>"]
Unguided --> Infra["Infrared<br><i>Short range, TV remotes</i>"]
Unguided --> Sat["Satellite<br><i>Global coverage, long latency</i>"]2.1 Guided (Wired) Media Deep Dive
| Media Type | Signal Mechanism | Speed / Bandwidth | Max Distance w/o Repeater | Key Advantages & Use Cases |
|---|---|---|---|---|
| Twisted Pair (UTP/STP) | Electrical signals | Inexpensive, flexible, easy to install. Standard for indoor LANs using RJ-45. | ||
| Coaxial Cable | Electrical signals (shielded) | Higher noise immunity than twisted pair. Used in cable TV distribution. | ||
| Optical Fiber | Light pulses via Total Internal Reflection (TIR) | Zero Electromagnetic Interference (EMI), highest bandwidth, ultra-secure. Ideal for campus backbones. |
3. Network Topologies
A Topology refers to the geometric arrangement of nodes (computers, printers) and connecting links in a network.
mermaid
graph TD
subgraph Star Topology
S_Hub((Switch))
S_A[Node A] --- S_Hub
S_B[Node B] --- S_Hub
S_C[Node C] --- S_Hub
S_D[Node D] --- S_Hub
end3.1 Star Topology (Most Recommended in CBSE 5-Mark Questions)
- Design: Every node connects directly to a central connecting hub/switch via dedicated point-to-point cables.
- Advantages:
- Failure of a single node or single cable does not affect the rest of the network.
- Easy to add new devices and isolate faults.
- Disadvantages:
- High cable length requirement compared to Bus.
- If the central switch fails, the entire network shuts down.
3.2 Bus Topology (Linear Backbone)
- Design: All nodes share a single common transmission backbone cable terminated at both ends.
- Advantages:
- Minimum cable requirement; simple and low cost.
- Disadvantages:
- If the main backbone cable breaks, the whole network collapses.
- Heavy collision rates under high traffic; difficult fault isolation.
3.3 Tree Topology (Hierarchical)
- Design: Combines multiple Star topologies connected to a linear Bus backbone (hierarchical root and branches).
- Advantages: Highly scalable for multi-floor and multi-department institutions.
- Disadvantages: If root backbone fails, entire sub-branches are severed.
4. Connecting Devices & Hardware
4.1 Modem (Modulator - Demodulator)
Converts digital computer data to analog signals for transmission over telephone lines (Modulation) and vice versa (Demodulation).
4.2 RJ-45 Connector & Ethernet Card (NIC)
- RJ-45 (Registered Jack 45): 8-pin physical modular connector used with UTP/STP cables.
- NIC (Network Interface Card): Hardware circuit board containing the physical 48-bit MAC address uniquely identifying the device.
4.3 Hub vs Switch
IMPORTANT
- Hub (Non-Intelligent): Broadcasts incoming data packets to all connected ports, creating high collision rates and bandwidth waste.
- Switch (Intelligent): Reads the destination MAC address and forwards data packets only to the intended recipient port, preventing collisions and optimizing throughput.
4.4 Repeater
An analog/digital amplifier device that regenerates weak, attenuated signals over long distances.
- Rule of Thumb for CBSE Exams: Install a Repeater when the distance between two blocks exceeds
.
4.5 Router vs Gateway
- Router: Directs data packets between similar network architectures (e.g., LAN to LAN) based on IP addresses.
- Gateway: A protocol converter that interconnects two completely dissimilar network architectures running different communication protocols.
5. Comparative Device Reference Table
| Device | OSI Layer | Intelligence Level | Primary Function | Rule for CBSE Case Study |
|---|---|---|---|---|
| Hub | Layer 1 (Physical) | Dumb (Broadcasts to all) | Multi-port repeater | Avoid in modern setups |
| Switch | Layer 2 (Data Link) | Intelligent (Unicast by MAC) | Connects nodes in a block | Required in EVERY block |
| Repeater | Layer 1 (Physical) | Signal regenerator | Overcomes attenuation | Place when distance |
| Router | Layer 3 (Network) | Intelligent (Routes by IP) | Forwards between LANs/WAN | Connects campus to ISP |
| Gateway | Layers 4-7 | Protocol Translator | Interconnects dissimilar networks | Used at organizational boundary |