본문 바로가기
공부

Topology

by mokhwasomssi 2024. 8. 24.

In the context of networking, topology refers to the arrangement or structure of various elements (such as nodes, links, and devices) in a computer network. It describes how the devices (computers, routers, switches, etc.) are physically or logically interconnected.

Types of Network Topologies:

  1. Physical Topology:

    • This refers to the actual physical layout of the cables, devices, and connections in a network. It shows where the hardware components are placed and how they are interconnected.
  2. Logical Topology:

    • This refers to the way data flows within a network, regardless of its physical design. The logical topology might differ from the physical topology, especially in modern networks where multiple paths might exist.

Common Physical Network Topologies:

  1. Bus Topology:

    • Description: All devices are connected to a single central cable, known as the "bus."
    • Advantages: Simple to install, uses less cable.
    • Disadvantages: Difficult to troubleshoot, if the central cable fails, the entire network goes down.
  2. Star Topology:

    • Description: All devices are connected to a central hub or switch. The hub acts as a repeater for data flow.
    • Advantages: Easy to install and manage, failure of one cable does not affect others.
    • Disadvantages: If the central hub fails, the entire network is affected.
  3. Ring Topology:

    • Description: Devices are connected in a circular fashion, with each device having exactly two neighbors. Data travels in one direction (or two in a dual-ring network).
    • Advantages: Can be more efficient than bus topology, easy to identify errors.
    • Disadvantages: A break in the ring can bring down the entire network unless a dual ring is used.
  4. Mesh Topology:

    • Description: Every device is connected to every other device, creating multiple paths for data to travel.
    • Advantages: High redundancy and fault tolerance, easy to expand.
    • Disadvantages: Expensive and complex to install, requires more cable and hardware.
  5. Tree Topology:

    • Description: A hybrid topology that combines characteristics of star and bus topologies. It has a root node, and all other nodes are connected to it hierarchically.
    • Advantages: Scalable, easy to manage and expand.
    • Disadvantages: If the root node fails, the entire network can be disrupted.
  6. Hybrid Topology:

    • Description: Combines two or more different types of topologies to form a larger, more complex network.
    • Advantages: Flexible, can be designed to meet specific needs.
    • Disadvantages: Complex to design and manage, more expensive.

Common Logical Network Topologies:

  1. Point-to-Point:

    • Description: A direct connection between two devices. Data travels directly between them.
    • Usage: Common in WANs (Wide Area Networks) and direct connections.
  2. Broadcast:

    • Description: All devices receive the data sent from any device. Common in Ethernet networks.
    • Usage: Local Area Networks (LANs).
  3. Token Passing:

    • Description: Devices pass a token to control access to the shared network medium. Only the device holding the token can send data.
    • Usage: Used in ring and token bus networks.
  4. Peer-to-Peer (P2P):

    • Description: All devices have equal status and can initiate communication with other devices directly.
    • Usage: Small networks, file sharing applications.

Importance of Network Topology:

  • Efficiency: The topology impacts how efficiently data can be transmitted across the network.
  • Scalability: Different topologies offer varying levels of scalability for adding more devices to the network.
  • Fault Tolerance: Topologies like mesh offer high redundancy, ensuring that network failures in one part do not affect the entire network.
  • Cost: The choice of topology affects the overall cost of network installation and maintenance.

Understanding network topology is essential for designing, deploying, and managing networks effectively. The choice of topology can have a significant impact on the network's performance, reliability, and cost.