Networking for SBI PO — LAN, WAN, OSI Model, Protocols & Topologies

intermediate 18 min read

Concept

Networking is the practice of connecting two or more computing devices so they can share resources and exchange data. In the context of SBI PO Computer Awareness, "networking" is not about memorising every technical RFC — it is about knowing which layer does what, which device lives where, and which protocol serves which purpose.

Think of a network like a postal system. Every device has an address (IP address). The postal worker who decides the best route for your letter is the router. The local post office that knows every address on your street is the switch. The person who just shouts the message to the entire neighbourhood without caring who needs it is the hub. The rules that define how letters must be formatted, addressed, and stamped are the protocols.

Networks are classified by their geographic span:

The two dominant reference models you must know cold are the OSI model (7 layers, theoretical reference) and the TCP/IP model (4 layers, practical implementation). SBI PO questions pivot between both — and they love asking which layer maps to which layer across the two models.


Deep Dive

Network Types in Detail

| Type | Range | Speed | Example | |------|-------|-------|---------| | PAN | ~10 m | Low | Bluetooth, USB | | LAN | Building | High | Office Ethernet | | MAN | City | Medium-High | City Wi-Fi grid | | WAN | Global | Variable | Internet, MPLS |

The OSI Model — 7 Layers

The OSI (Open Systems Interconnection) model is a conceptual framework. Layer numbers matter: questions ask "which layer does X?" and the answer is always a specific number and name.

| Layer | Number | Key Function | Devices/Protocols | |-------|--------|-------------|-------------------| | Physical | 1 | Transmits raw bits over physical medium | Hub, Repeater, Cables | | Data Link | 2 | Error detection, MAC addressing, frames | Switch, Bridge, NIC | | Network | 3 | Logical addressing, routing | Router, IP | | Transport | 4 | End-to-end communication, segmentation | TCP, UDP | | Session | 5 | Establishes, manages, terminates sessions | NetBIOS, PPTP | | Presentation | 6 | Data translation, encryption, compression | SSL/TLS, JPEG, ASCII | | Application | 7 | User-facing services | HTTP, FTP, SMTP, DNS |

Memory anchor: "Please Do Not Throw Sausage Pizza Away" — Physical, Data Link, Network, Transport, Session, Presentation, Application.

TCP/IP Model — 4 Layers

The TCP/IP model is what the actual internet runs on. Exam questions frequently ask which OSI layer maps to which TCP/IP layer.

| TCP/IP Layer | Maps to OSI Layers | |-------------|-------------------| | Network Interface (Link) | Physical + Data Link (1 & 2) | | Internet | Network (3) | | Transport | Transport (4) | | Application | Session + Presentation + Application (5, 6, 7) |

Look — the critical mapping for SBI PO is: Internet Layer (TCP/IP) = Network Layer (OSI). This appears verbatim in PYQs.

Network Topologies

Bus: All devices share a single backbone cable. Failure of the backbone kills the entire network. Cheap but not fault-tolerant.

Star: All devices connect to a central hub or switch. Most common in modern LANs. A single device failure doesn't affect others — only the central device failure takes down the network. Easy to troubleshoot.

Ring: Each device connects to exactly two others, forming a loop. Data travels in one direction (or both in dual-ring). Token Ring is the classic protocol. One break in the ring disrupts communication.

Mesh: Every device connects to every other device. Highly fault-tolerant. Used in WANs and critical infrastructure. Expensive — number of links = n(n-1)/2 for a full mesh.

Tree (Hierarchical): A hybrid of star and bus. Nodes are arranged in a hierarchy. Used in large corporate networks.

Hybrid: Combination of two or more topologies.

Key Networking Devices — Layer Mapping

| Device | OSI Layer | Function | |--------|-----------|----------| | Hub | Layer 1 — Physical | Broadcasts signals to all ports, no intelligence | | Switch | Layer 2 — Data Link | Forwards frames based on MAC address table | | Router | Layer 3 — Network | Routes packets based on IP address; connects different networks | | Gateway | Layer 4–7 | Protocol translation between different network architectures | | Bridge | Layer 2 — Data Link | Connects two LAN segments, filters by MAC | | Repeater | Layer 1 — Physical | Amplifies/regenerates signal over long distances |

Protocols You Must Know

File Transfer:

Web & Email:

Network Support:

Subnetting and IP Classes

| Class | First Octet Range | Default Subnet Mask | Typical Use | |-------|-------------------|---------------------|-------------| | A | 1–126 | 255.0.0.0 (/8) | Very large networks | | B | 128–191 | 255.255.0.0 (/16) | Medium networks | | C | 192–223 | 255.255.255.0 (/24) | Small networks | | D | 224–239 | — | Multicasting | | E | 240–255 | — | Reserved/Research |

Class C gives you 256 addresses per network (0–255), with the first 24 bits for network identification.

Wireless Security Protocols

From weakest to strongest: WEP → WPA → WPA2 → WPA3

Ethernet Cable Limits

Cat 5e cable: 100 metres maximum for standard Ethernet (10BASE-T, 100BASE-TX, 1000BASE-T). Beyond this, signal attenuation degrades performance. Repeaters or switches extend range.


Memory Tricks & Shortcuts

patternOSI Layer Device Lock-In

Lock three device-layer pairs in 10 seconds with this pattern: Hub=1, Switch=2, Router=3. Remember "HSR" → "Half Speed Runner" — Hub (slowest, dumbest), Switch (smarter), Router (routes, smartest of the three). Standard method: reading all 7 layers and scanning = 40s. Pattern recall: under 5s. These three pairs account for ~80% of SBI PO device-layer questions.

patternTCP/IP vs OSI — The 4-to-7 Collapse

TCP/IP has 4 layers; OSI has 7. The collapse pattern: TCP/IP Network Interface = OSI layers 1+2; TCP/IP Internet = OSI layer 3; TCP/IP Transport = OSI layer 4; TCP/IP Application = OSI layers 5+6+7. Write it as fractions: NI=1+2, I=3, T=4, A=5+6+7. When asked "which TCP/IP layer is equivalent to OSI Network Layer?" — I=3, answer is Internet Layer. Standard cross-reference scan: 30s. This mapping recall: 4s.

patternWireless Security — Weakest to Strongest by Letter Count

WEP (3 letters) → WPA (3 letters) → WPA2 (4 chars) → WPA3 (4 chars). The number suffix tells you the generation: no number is older, 2 is second-gen, 3 is current. "Higher number = safer" applies perfectly here. When any option shows WPA3, it is the most secure answer — zero exceptions in current exam context. Eliminates 3 wrong options in 3 seconds.

patternIP Class Subnet Mask — Octet Count Rule

Class A: 1 octet is 255, rest are 0 → 255.0.0.0. Class B: 2 octets are 255 → 255.255.0.0. Class C: 3 octets are 255 → 255.255.255.0. "Class letter number = number of 255 octets." A=1, B=2, C=3. Applying this: Class C subnet mask in 2 seconds flat vs. trying to recall it cold (8–12 seconds with uncertainty).

eliminationFTP vs SFTP vs TFTP — One-Line Discriminator

FTP = basic transfer (plaintext), SFTP = SSH-secured transfer, TFTP = Trivial (UDP, no auth). Any question asking "secure file transfer" → eliminate FTP (plaintext) and TFTP (no authentication) immediately. SFTP is the only option with SSH encryption. Two-step elimination in under 5 seconds replaces needing to recall port numbers or protocol details. Note: HTTP is not a file-transfer protocol — eliminate it first if it appears.


Fast-Solving Framework

When you see a networking question in SBI PO, run this mental decision tree in under 10 seconds:

Step 1 — Identify the question type:

Step 2 — Apply elimination: If the correct answer is not immediately clear, eliminate the obviously wrong options first. In most networking MCQs, two options are from different categories entirely — they can be cut in 3 seconds.

Step 3 — Confirm with one anchor fact: Each correct answer should trigger one verifiable fact. If it doesn't feel anchored, re-check. Don't second-guess a confident recall.

Target: networking questions solved in 30–45 seconds each.


Solved PYQs

Why this question: IP class subnet masks appear regularly and students confuse Class A with Class C.

Previous Year Questionपिछले वर्ष का प्रश्न
What is the subnet mask for a Class C network with default subnetting?
डिफ़ॉल्ट सबनेटिंग के साथ Class C नेटवर्क का सबनेट मास्क क्या होता है?
  1. 255.0.0.0
  2. 255.255.0.0
  3. 255.255.255.0
  4. 255.255.255.255
  1. 255.0.0.0
  2. 255.255.0.0
  3. 255.255.255.0
  4. 255.255.255.255
Solutionसमाधान
The default subnet mask for a Class C network is 255.255.255.0 or /24 in CIDR notation. This allows for 256 host addresses (0-255) with the first 24 bits used for network identification.
क्लास C नेटवर्क के लिए डिफ़ॉल्ट सबनेट मास्क 255.255.255.0 या CIDR नोटेशन में /24 है। यह नेटवर्क पहचान के लिए पहले 24 बिट्स का उपयोग करता है।

Solving path: Class C = 3 octets of 255. Write 255.255.255.0. Done in 4 seconds. Option A (255.0.0.0) is Class A — trap for students who mix letter-to-octet count. Option D (255.255.255.255) is a host route — no valid default class uses it.


Why this question: OSI layer functions — the most common computer awareness question type in banking exams, appearing in virtually every year.

Previous Year Questionपिछले वर्ष का प्रश्न
In the OSI model, which layer is responsible for routing packets between different networks?
OSI मॉडल में कौन सी लेयर अलग-अलग नेटवर्कों के बीच पैकेट्स की रूटिंग के लिए जिम्मेदार होती है?
  1. Data Link Layer
  2. Network Layer
  3. Transport Layer
  4. Session Layer
  1. Data Link Layer
  2. Network Layer
  3. Transport Layer
  4. Session Layer
Solutionसमाधान
The Network Layer (Layer 3) of the OSI model is responsible for routing packets between different networks. It determines the best path for data transmission and handles logical addressing using IP addresses.
OSI मॉडल की नेटवर्क लेयर (लेयर 3) विभिन्न नेटवर्क के बीच पैकेट्स को रूट करने के लिए जिम्मेदार है। यह डेटा ट्रांसमिशन के लिए सबसे अच्छा पथ निर्धारित करती है।

Solving path: "Routing packets between different networks" = logical addressing function = Layer 3 = Network Layer. Data Link Layer (Layer 2) handles same-network framing. Transport Layer (Layer 4) handles end-to-end reliability. Session Layer (Layer 5) manages connections — not routing. Anchor: Router = Layer 3 = Network Layer. Confirmed in 6 seconds.


Why this question: TCP/IP to OSI mapping is a direct exam favourite — tests whether you know both models, not just one.

Previous Year Questionपिछले वर्ष का प्रश्न
Which layer of the TCP/IP model is equivalent to the Network Layer of the OSI model?
TCP/IP मॉडल की कौन सी लेयर, OSI मॉडल की Network Layer के बराबर होती है?
  1. Network Interface Layer
  2. Internet Layer
  3. Transport Layer
  4. Application Layer
  1. Network Interface Layer
  2. Internet Layer
  3. Transport Layer
  4. Application Layer
Solutionसमाधान
The Internet Layer of the TCP/IP model is equivalent to the Network Layer of the OSI model. Both layers handle routing, logical addressing, and packet forwarding between different networks.
TCP/IP मॉडल की इंटरनेट लेयर OSI मॉडल की नेटवर्क लेयर के बराबर है। दोनों लेयर रूटिंग, लॉजिकल एड्रेसिंग, और विभिन्न नेटवर्क के बीच पैकेट फॉरवार्डिंग को संभालती हैं।

Solving path: TCP/IP has 4 layers. The Internet Layer handles IP addressing and routing — same job as OSI's Network Layer (Layer 3). Apply the collapse formula: I=3. Network Interface Layer maps to OSI Layers 1+2 (not Layer 3). Transport and Application are one-to-one matches. Answer: Internet Layer.


Why this question: WiFi security protocol hierarchy tests rote knowledge but elimination makes it mechanical.

Previous Year Questionपिछले वर्ष का प्रश्न
Which wireless security protocol is considered the most secure for modern WiFi networks?
आधुनिक WiFi नेटवर्क के लिए कौन सा वायरलेस सिक्योरिटी प्रोटोकॉल सबसे ज्यादा सुरक्षित माना जाता है?
  1. WEP
  2. WPA
  3. WPA2
  4. WPA3
  1. WEP
  2. WPA
  3. WPA2
  4. WPA3
Solutionसमाधान
WPA3 (Wi-Fi Protected Access 3) is the most secure wireless security protocol for modern WiFi networks. It provides enhanced security features including improved encryption and protection against brute-force attacks.
WPA3 (वाई-फाई प्रोटेक्टेड एक्सेस 3) आधुनिक WiFi नेटवर्क के लिए सबसे सुरक्षित वायरलेस सिक्योरिटी प्रोटोकॉल है। यह बेहतर एन्क्रिप्शन और ब्रूट-फोर्स अटैक से सुरक्षा प्रदान करता है।

Solving path: Hierarchy: WEP (broken) → WPA → WPA2 → WPA3 (current, strongest). WPA3 uses SAE and enhanced AES. Eliminate WEP immediately (publicly broken protocol). WPA and WPA2 are superseded. WPA3 is the answer. Two-step elimination: 5 seconds total.


Why this question: SFTP vs FTP is a classic "which is secure?" question that tests protocol knowledge under time pressure.

Previous Year Questionपिछले वर्ष का प्रश्न
Which protocol is used for secure file transfer over the internet?
इंटरनेट पर सुरक्षित फाइल ट्रांसफर के लिए कौन सा प्रोटोकॉल इस्तेमाल होता है?
  1. FTP
  2. TFTP
  3. SFTP
  4. HTTP
  1. FTP
  2. TFTP
  3. SFTP
  4. HTTP
Solutionसमाधान
SFTP (Secure File Transfer Protocol) is used for secure file transfer over the internet. It uses SSH encryption to provide secure authentication and encrypted data transfer, unlike regular FTP which transmits data in plain text.
SFTP (सिक्योर फाइल ट्रांसफर प्रोटोकॉल) का उपयोग इंटरनेट पर सुरक्षित फाइल ट्रांसफर के लिए किया जाता है। यह SSH एन्क्रिप्शन का उपयोग करके सुरक्षित प्रमाणीकरण प्रदान करता है।

Solving path: Eliminate HTTP first — it's a web protocol, not file transfer. Eliminate FTP — transmits in plaintext. Eliminate TFTP — Trivial FTP has no authentication. SFTP uses SSH encryption for both authentication and data transfer. One elimination round = 4 seconds to the correct answer.


Why this question: Topology identification is consistently tested — star topology is the most common in modern LANs.

Previous Year Questionपिछले वर्ष का प्रश्न
Which topology connects all devices to a central hub or switch?
कौन सी टोपोलॉजी सभी डिवाइसों को एक केंद्रीय हब या स्विच से जोड़ती है?
  1. Bus Topology
  2. Ring Topology
  3. Star Topology
  4. Mesh Topology
  1. Bus Topology
  2. Ring Topology
  3. Star Topology
  4. Mesh Topology
Solutionसमाधान
Star Topology connects all devices to a central hub or switch. In this topology, all communication between devices passes through the central device, making it easy to manage and troubleshoot.
स्टार टोपोलॉजी सभी उपकरणों को एक केंद्रीय हब या स्विच से जोड़ती है। इस टोपोलॉजी में सभी उपकरणों के बीच संचार केंद्रीय उपकरण के माध्यम से होता है।

Solving path: "Central hub or switch" is the defining feature of Star Topology. Bus has a single shared backbone — no central device. Ring connects each node to two others in a loop — no central device. Mesh connects all nodes to all others — no single centre. The moment you see "central device," the answer is Star.


Why this question: Device-layer mapping is the highest-frequency single-fact question in banking computer sections.

Previous Year Questionपिछले वर्ष का प्रश्न
Which device operates at the Physical Layer of the OSI model?
कौन सा डिवाइस OSI मॉडल की Physical Layer पर काम करता है?
  1. Router
  2. Switch
  3. Hub
  4. Gateway
  1. Router
  2. Switch
  3. Hub
  4. Gateway
Solutionसमाधान
A Hub operates at the Physical Layer (Layer 1) of the OSI model. It simply repeats electrical signals without any intelligence about the data content, unlike switches which operate at the Data Link Layer.
हब OSI मॉडल की फिजिकल लेयर (लेयर 1) पर काम करता है। यह बिना किसी डेटा सामग्री की जानकारी के केवल इलेक्ट्रिकल सिग्नल को दोहराता है।

Solving path: Hub = Layer 1 (Physical) — it blindly repeats electrical signals with no processing. Switch = Layer 2 (Data Link) — reads MAC addresses. Router = Layer 3 (Network) — reads IP addresses. Gateway = Layer 4–7. The question says "Physical Layer" — only Hub fits. Anchor: Hub broadcasts everything, knows nothing. Answer confirmed in 5 seconds.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →