ЁЯТ╗
тМия╕П
ЁЯЦ▒я╕П
ЁЯЦея╕П
ЁЯТ╛
тЖР Back to Dashboard
Font Size:

1. Introduction

Computer networks form the backbone of modern communication. A network is a collection of computers, servers, printers, and other devices connected together so that they can share data and resources. When two or more devices are linked through a communication medium such as cables, optical fibres, or wireless signals, they are said to form a computer network. The primary goal of networking is resource sharing, which includes sharing hardware, software, files, and internet connections, thereby reducing cost and improving efficiency.

In this chapter, we will study the basic concepts of networking including its need and advantages, types of networks based on size and geographical spread, network topologies, and the essential hardware components that make networking possible. We will also learn about the Internet, the World Wide Web, and various communication protocols such as TCP/IP and HTTP. Understanding these fundamentals is essential because almost every modern device, from a mobile phone to a cloud server, depends on networking concepts.

The study of networking also introduces important terminology such as nodes, servers, clients, NIC (Network Interface Card), switches, routers, and modems. By the end of this chapter, you will be able to classify networks as LAN, MAN, and WAN, describe the different network topologies such as star, bus, ring, and mesh, and appreciate how data travels across the Internet using the TCP/IP protocol suite. This knowledge forms the foundation for advanced topics like web services, cloud computing, and artificial intelligence which are covered in later chapters.

2. Need and Advantages of Networking

Networking is not an option today but a necessity. Organisations and individuals need to share information instantly, access common databases, and communicate efficiently. Some of the key advantages of networking are listed below.

A network works on the client-server model where a central computer called the server provides services, and the computers that request services are called clients. Alternatively, in a peer-to-peer model, all computers have equal status and can both request and provide services. This flexibility makes networks suitable for both small homes and large enterprises.

3. Types of Networks

Based on the geographical area covered, networks are classified into three main categories.

LAN (Local Area Network)

A LAN connects computers within a limited physical area such as a school, office building, or home. It typically covers a range of a few metres to a few kilometres. LANs are privately owned, have high data transfer speeds, and use cables such as twisted pair or Ethernet. Examples include the computer lab network of a school and a home Wi-Fi network.

MAN (Metropolitan Area Network)

A MAN covers a larger area than a LAN, typically a city or a town. It is used by government agencies, cable television networks, and large organisations to connect multiple LANs spread across a metropolitan region. MANs use high-speed optical fibre links and have moderate data transfer rates.

WAN (Wide Area Network)

A WAN spans very large geographical areas such as a country, a continent, or the entire world. The Internet is the largest example of a WAN. WANs are created by connecting multiple LANs and MANs through leased lines, satellites, and optical fibres. Data transfer rates are lower compared to LANs because signals must travel longer distances.

PAN (Personal Area Network)

A PAN is the smallest type of network, used to connect personal devices such as a smartphone, tablet, laptop, and smartwatch within a range of about ten metres. Bluetooth and infrared technologies are commonly used to create PANs.

4. Network Topologies

The physical arrangement in which computers and other devices are connected in a network is called the network topology. The choice of topology affects cost, speed, and reliability of the network.

Star Topology

In a star topology, all nodes are connected to a central device such as a hub or a switch. Every node communicates with other nodes only through the central device. If one node fails, the rest of the network continues to function. However, if the central device fails, the entire network stops working.

Bus Topology

In a bus topology, all nodes are connected to a single common backbone cable. Data travels in both directions along the cable and each node listens for data meant for it. A bus topology uses the least amount of cable and is easy to install, but if the main cable breaks, the whole network fails. The ends of the cable are terminated with terminators to prevent signal reflection.

Ring Topology

In a ring topology, each node is connected to exactly two neighbouring nodes, forming a closed loop. Data travels in one direction around the ring, passing through each node until it reaches the destination. A token passing mechanism is often used to avoid collisions. Failure of a single node can break the ring and disrupt communication.

Mesh Topology

In a mesh topology, every node is connected to every other node through a dedicated link. This provides high reliability because there are multiple redundant paths for data. However, it requires a large amount of cable and is expensive, so it is usually used in critical applications such as banking networks and military systems.

5. Networking Devices

Several hardware devices are used to build and manage networks. Understanding each device is important for both theory and practical examinations.

6. Communication Media

Communication media are the physical or wireless channels through which data travels from one device to another. They are broadly divided into guided (wired) and unguided (wireless) media.

Guided media include twisted pair cables (used in telephone lines and LANs), coaxial cables (used in cable television), and optical fibre cables (used for long-distance high-speed communication). Optical fibres transmit data as pulses of light and are immune to electromagnetic interference.

Unguided media use electromagnetic waves to transmit data without any physical cable. Examples include radio waves, microwaves, and infrared waves. Wi-Fi, Bluetooth, and satellite communication all depend on unguided media. Wireless communication is convenient but can be affected by obstacles, weather, and interference.

7. Internet and Protocols

The Internet is a global network of networks that connects billions of devices worldwide using the TCP/IP protocol suite. Each device connected to the Internet is identified by a unique IP address, which can be IPv4 (32-bit) or IPv6 (128-bit). Domain names such as www.example.com are easier to remember than numeric IP addresses, and the Domain Name System (DNS) translates domain names into IP addresses.

A protocol is a set of rules that govern how data is exchanged between devices. Important protocols include:

8. World Wide Web

The World Wide Web (WWW) is an information system on the Internet where documents and other web resources are identified by URLs and can be accessed using web browsers. A website is a collection of related web pages, and a web server is a computer that hosts these pages and delivers them to clients. Web pages are written in HTML (HyperText Markup Language) and can contain text, images, videos, and links. Search engines such as Google index web pages and help users find the information they need.

Quick Revision Tables

Term Full Form Meaning
LAN Local Area Network Connects devices within a small area such as a building
MAN Metropolitan Area Network Covers a city or town
WAN Wide Area Network Covers a country, continent, or the whole world
PAN Personal Area Network Connects personal devices within about 10 metres
NIC Network Interface Card Hardware that connects a computer to a network
TCP Transmission Control Protocol Ensures reliable delivery of data packets
IP Internet Protocol Handles addressing and routing of packets
HTTP HyperText Transfer Protocol Used to transfer web pages
FTP File Transfer Protocol Transfers files between client and server
DNS Domain Name System Converts domain names to IP addresses
Topology Description Advantage Disadvantage
Star All nodes connected to a central hub or switch Easy to install and troubleshoot Fails if central device fails
Bus All nodes on a single backbone cable Uses least cable Fails if main cable breaks
Ring Nodes form a closed loop Data travels in an organised way Failure of one node breaks the ring
Mesh Every node connected to every other node Highly reliable Very expensive

Mind Map

graph TD A["Networking Concepts"] --> B["Types of Networks"] A --> C["Topologies"] A --> D["Networking Devices"] A --> E["Communication Media"] A --> F["Internet & Protocols"] B --> B1["LAN - Small Area"] B --> B2["MAN - City"] B --> B3["WAN - Worldwide"] B --> B4["PAN - Personal"] C --> C1["Star"] C --> C2["Bus"] C --> C3["Ring"] C --> C4["Mesh"] D --> D1["NIC, Modem, Hub"] D --> D2["Switch, Router, Repeater"] E --> E1["Wired - Twisted Pair, Coaxial, Fibre"] E --> E2["Wireless - Radio, Microwave, Infrared"] F --> F1["TCP/IP, HTTP, FTP"] F --> F2["DNS, WWW, IP Address"]

Important Diagrams (SVG)

Diagram 1: Star Topology

Hub / Switch Node A Node B Node C Node D Golden Rule: In star topology, failure of the central device disconnects all nodes.

Diagram 2: Bus Topology

Backbone Cable T1 T2 Node 1 Node 2 Node 3 Terminators (T1, T2) absorb signals to prevent reflection Golden Rule: If the backbone cable of a bus topology breaks, the entire network fails.

Common Mistakes

  1. Confusing a hub with a switch. A hub broadcasts data to all devices, while a switch sends data only to the intended recipient.
  2. Believing that MAN is larger than WAN. Actually, MAN covers a city, whereas WAN covers a country or the whole world.
  3. Stating that the Internet and the World Wide Web are the same. The Internet is the physical network infrastructure, while the WWW is a service running on it.
  4. Thinking that IP address and MAC address are the same. An IP address can change and is assigned by the network, whereas a MAC address is permanently fixed on the NIC.
  5. Forgetting that routers connect different networks, whereas switches and hubs operate within a single network.
  6. Assuming that an IPv4 address has 64 bits. IPv4 is 32 bits and IPv6 is 128 bits.

Exam Tips

  1. Learn the full forms of LAN, MAN, WAN, PAN, TCP, IP, HTTP, FTP, DNS, and NIC, as one-mark questions are commonly asked from these.
  2. Always mention that the Internet uses the TCP/IP protocol suite when describing data transfer.
  3. Remember that DNS translates domain names into IP addresses, a frequently repeated exam concept.
  4. Draw the star and bus topology diagrams neatly and label the central device and backbone cable clearly to score full marks.
  5. Compare topologies in a table format in descriptive answers, giving one advantage and one disadvantage for each.
  6. Practise the order of network size: PAN smaller than LAN smaller than MAN smaller than WAN.

Conclusion

Networking is a core concept of computer science that connects devices and people across the world. We learned that networks are classified into PAN, LAN, MAN, and WAN based on their size, and that the choice of topology such as star, bus, ring, or mesh affects cost, speed, and reliability. Networking devices like the NIC, modem, hub, switch, router, and repeater perform specific roles in building a network, while guided and unguided media carry data between devices. The Internet, built on the TCP/IP protocol suite, enables services such as the World Wide Web, email, and file transfer. Mastery of these fundamentals prepares students for advanced topics such as web services, cloud computing, and artificial intelligence discussed in later chapters.