DEV Community

Cover image for Computer Networking - Full Course
Vignesh J
Vignesh J

Posted on

Computer Networking - Full Course

This is the second part of the Computer Networking series. In this post, we’ll dive into different types of networks and explore various network topologies and their structures.

Personal Area Network (PAN)

A Personal Area Network (PAN) is the most basic type of computer network, designed to connect devices within a short range, typically around a single person. It allows your personal devices, like smartphones, tablets, laptops, and wearables, to communicate and share data with each other.

PAN

Local Area Network (LAN)

A Local Area Network (LAN) interconnects computers within a limited area, such as a residence, school, or university campus.

LAN

Metropolitan Area Network (MAN)

A Metropolitan Area Network (MAN) connects computers across a geographic region the size of a metropolitan area, such as a city.

MAN

Wide Area Network (WAN)

A Wide Area Network (WAN) extends over large geographic areas, such as entire countries.

WAN

In essence, multiple local area networks (LANs) connect to each other through a metropolitan area network (MAN), and several MANs are connected via a wide area network (WAN), forming the internet.

These connections are established using technologies such as:

  • SONET
  • Frame Relay

Topologies

Bus Topology

In a Bus Topology, devices are connected to a single backbone. If any part of the backbone fails, the entire system goes down. Only one device at a time can send information.

BUS

Ring Topology

In a Ring Topology, every system is connected in a ring-like structure, where each device communicates with the next. If one cable breaks, data transfer stops. This topology can lead to many unnecessary data transmissions.

Ring

Star Topology

In a Star Topology, there is a central device that connects to all computers. If the central device fails, the entire network goes down.

Star

Tree Topology

Tree Topology is a variation of the star topology. It has a hierarchical structure resembling a tree, with a central node (root) from which other nodes branch out.

Tree

Mesh Topology

In a Mesh Topology, every device connects to every other device. This setup provides redundancy but is costly and can have scalability issues.

Mesh

Hybrid Topology

Hybrid Topology combines various types of topologies. It’s used when nodes are free to take different forms. They can individually use topologies like Ring or Star, or be a combination of multiple types. Hybrid Topology offers flexibility to suit different network requirements.

Hybrid


Feel free to connect with me and check out my other work:

LinkedIn: Vignesh J
GitHub (Personal): Vignesh025
GitHub Organization (VigneshDevHub): VigneshDevHub
Join our Open-Source Community on Discord: VigneshDevHub

Top comments (2)

Collapse
 
sowmiya_jayakumar profile image
Sowmiya Jayakumar

Informative!

Collapse
 
vignesh_j profile image
Vignesh J

Thank you!