Skip to main content

Types Of Network Topology

Today, we will types of network topology.

What is a Network Topology?

Definition of Network topology is the shape of the network. It is the physical layout of connected devices in a network. It tells us how a network will look like.
Network Topology ( Definition 2): The way in which the connections are made among all the network entities is called the topology of the network.
Network Topology ( Definition 3):Network topology specifically refers to the physical layout of the network, e.g., the location of the computers and how the cable is run between them.
Network Topology ( Definition 4):The physical topology of a network refers to the configuration of cables, computers, and other peripherals.

The characteristics of a network depend upon the network topology selected.
types of network topology
types of network topology

Explain different types of network Topology

Different network topologies are as follows:
1. Bus Topology
2. Ring Topology
3. Star Topology
4. Tree Topology
5. Mesh Topology

1. Bus Topology


types of network topology


Bus topology is the simplest network topology. In bus topology, all computers in network are connected to a common communication wire. This wire is called BUS. Terminators are used at both ends of wire.
Bus Topology - Different Types of Network Topology
Bus Topology - Different Types of Network Topology

2. Star Topology

Star Topology is the most popular and widely used network topology in local area networks. In star topology, all computers are connected with a central device known as HUB or Switch. Now-a-days Hubs are often replaced by Fast Network Switches. The sender computer sends data to the hub. The hub sends it to the destination computer. So, all data communication is managed through HUB or Switch.
Star Topology - Different Types of Network Topology
Star Topology - Different Types of Network Topology

Note: The major difference between a Networking Hub and Networking Switch is that HUB sends data to all computers, and the destination computer will accept it while other computers will not. On the other hand, Switch sends data only to the destination computer. Therefore, switch can reduce network traffic and hence provides fast transmission speed.

3. Ring Topology

In Ring topology, each computer is connected to the next computer such that last computer is connected to the first. Every computer is connected to next computer in the ring. Each computer retransmits what it receives from the previous computer. Suppose, computer A needs to send data to computer D. Now the computer A sends data to computer B. As computer B is not the destination computer, so it will retransmit data to computer C. Finally, Computer C will transfer data to computer D, the destination computer. When a node sends a message, the message is processed by each computer in the ring. If a computer is not the destination node, it will pass the message to the next node, until the message arrives at its destination.
Ring Topology - Different Types of Network Topology
Ring Topology - Different Types of Network Topology


4. Tree Topology

Actually, a Tree topology is the combination of two topologies: bus and star topology. A tree topology combines the characteristics of bus and star topologies. It consists of groups of computer connected as star topology. These groups are then connected to a central communication medium (bus cable).
Tree Topology - Different Types of Network Topology
Tree Topology - Different Types of Network Topology

5. Mesh Topology

In a mesh topology, every device on the network is physically connected to every other device on the network. Therefore, data can be sent on several possible paths from source computer to destination computer. Mesh topology is more reliable with better performance. It is mostly used in wide area networks where reliability is important.
Mesh Topology - Different Types of Network Topology
Mesh Topology - Different Types of Network Topology


After reading : Types of network topology


Read  More on Networking
and Networks
1 Explain
Advantages Of Networks
2 Types
Of Computer Networks
3 Differences
between LAN and WAN
4 Types
Of Network Topology
5 Bus
Topology :Advantages and Disadvantages
6 Advantages
and Disadvantages of Star Topology
7 Advantages
and Disadvantages of Ring Network Topology
8 Advantages
and Disadvantages of Tree Topology
9 Advantages
and Disadvantages of Mesh Topology

Comments

Anonymous said…
hey there and thank you for your info – I’ve certainly picked up something new from right here. I did however expertise a few technical issues using this site, since I experienced to reload the site lots of times previous to I could get it to load correctly. I had been wondering if your web hosting is OK? Not that I am complaining, but slow loading instances times will sometimes affect your placement in google and could damage your high quality score if advertising and marketing with Adwords. Anyway I’m adding this RSS to my email and could look out for a lot more of your respective exciting content. Ensure that you update this again soon..
Aquiesse Frankincense & Myrrh Candle
Admin X2 said…
Hi Gowtham!
Thanks for being here. Sure, you can share some of this stuff on your blog, but don't forget to have a link back to my blog. http://forfreeeducation.blogspot.com

Popular posts from this blog

Explain different types of storage devices

Topic: Explain different types of storage devices in Computer systems Storage Devices Storage devices are used to store data and instructions permanently. Storage devices are also called secondary storage devices / backing storage devices / external storage devices or auxiliary storage devices. Examples of storage devices include Hard Disk, CD and DVD etc. Why Secondary Storage Devices are Used? Secondary storage devices are used because: Primary memory(RAM) is volatile and temporary. When computer is switched off, all data in ram is erased. Storage devices can store large amounts of data and instructions permanently whereas Primary memory has less capacity of storing data. Types Of Storage Devices There are three main types of storage devices:  Magnetic Tape   Magnetic Disk   Optical Disk   Flash Memory storage devices 1. Magnetic Tape Magnetic tape is the oldest storage device. It is made of plastic coated with magnetic material. Data is stored on mag

Important Objective Type Questions 101-155

MMC stands for multimedia card. SD stands for secure digital card. System Bus  is used to connect main components of a computer such as cpu and main memory. A Port is an interface or a point of attachments. POS stands for Point Of Sale terminal. ATM stands for Automated Teller Machine. PIN stands for Personal identification number. Kbps stands for kilobits per second. Mbps stands for megabits per second. A port that transmits one bit at a time is called Serial Port. A type of port that transmits many bits at a time is called Parallel Port. LPT stands for Line Printer. Examples of system software are Operating System, Utility Programs and Device Drivers. Examples of operating systems are DOS, Windows, Unix and Linux. Examples of Utility programs are File Manager, Image Viewer, Disk Scanner and File Compressor. Software used to detect and remove viruses is called Antivirus . Examples of antivirus programs are Mcaffee, Avast,

Convert Centimeters to Inches Python Programming | Python Program Conver...

YouTube Video Tutorial How to write a Python program to convert centimetres to inches Formula to convert centimetres to inches   Explanation of this Python Program This Python program prompts the user to enter a height in inches, converts it to centimeters, and then prints the converted value. It uses the conversion factor of 2.54 to perform the conversion and rounds the result to two decimal places before displaying it to the user. Here's an explanation of the provided Python program line by line: python inches = float ( input ( 'Enter the Height in inches to convert into centimeters:' )) This line prompts the user to enter a height in inches and assigns the entered value to the variable inches . The input() function is used to receive input from the user, and float() is used to convert the input into a floating-point number. python centimeters = inches * 2.54 This line calculates the equivalent value in centimeters by multiplying the inches variable by the conver