ScholarQuill logoScholarQuillUniversity Notes
  • Notes
  • Past Papers
  • Blogs
  • Todo
Login
ScholarQuill logoScholarQuillUniversity Notes
Login
NotesPast PapersBlogsTodo
More
SubjectsDiscussionCGPA CalculatorGPA CalculatorStudent PortalCourse Outline
About
About usPrivacy PolicyReportContact
Notes
Past Papers
Blogs
Todo
Analytics
    Current Subject
    🧩
    Computer Networks
    CSI-417
    Progress0 / 18 topics
    Topics
    1. Analogue and Digital Transmission2. Noise3. Media4. Encoding5. Asynchronous and Synchronous Transmission6. Protocol Design Issues7. Network System Architectures (OSI, TCP/IP)8. Error Control9. Flow Control10. Data Link Protocols (HDLC, PPP)11. Local Area Networks and MAC Layer Protocols (Ethernet, Token Ring)12. Multiplexing13. Switched and IP Networks14. Inter-networking15. Routing16. Bridging17. Transport Layer Protocols (TCP/IP, UDP)18. Network Security Issues
    CSI-417›Switched and IP Networks
    Computer NetworksTopic 13 of 18

    Switched and IP Networks

    7 minread
    1,198words
    Intermediatelevel

    Switched Networks and IP Networks

    In computer networking, two fundamental types of networks are Switched Networks and IP Networks. These networks are designed to handle data transmission, but they operate on different principles and technologies. Below is an in-depth explanation of each.


    1. Switched Networks

    A switched network is a type of communication network in which data is transmitted between devices by establishing temporary connections (or circuits) for the duration of a communication session. Once the session ends, the connection is released.

    Key Features of Switched Networks:

    • Circuit-Switched Networks: This is the most common form of switched network, where a dedicated path is established for the entire communication session. Traditional telephone networks (PSTN) use circuit-switching, where a call is established by allocating a dedicated circuit between the caller and receiver for the entire duration of the conversation.

    • Packet-Switched Networks: A more flexible switched network, where data is divided into packets. These packets are sent over various routes and reassembled at the destination. Internet is an example of a packet-switched network.

    • Virtual Circuit-Switched Networks: In this type of network, a path is established for the communication, but the data is sent in packets, as in packet-switching. This is an intermediate approach, offering some level of connection setup but with the benefits of packet switching.


    Types of Switched Networks:

    1. Circuit Switching:

      • A dedicated communication path is set up between the sender and receiver.
      • Example: Traditional telephone networks (PSTN).
      • Advantages:
        • Provides a constant connection during the communication, ensuring reliability.
        • The data transfer rate is fixed.
      • Disadvantages:
        • The network resource (path) is dedicated to one communication for the entire duration, making it inefficient when not in use.
        • Scalability is limited since the network cannot be easily reconfigured.
    2. Packet Switching:

      • Data is broken down into packets that are routed independently across the network.
      • Example: The Internet.
      • Advantages:
        • More efficient as the communication path is shared by multiple users.
        • Provides fault tolerance, as packets can take different routes if one is congested or fails.
        • Scalable and adaptable.
      • Disadvantages:
        • There may be delays and packets may arrive out of order.
        • It requires mechanisms for packet reordering and retransmission.
    3. Virtual Circuit Switching:

      • A combination of circuit and packet switching, where a virtual path is established for the session, but data is transmitted in packets.
      • Example: Some Frame Relay and ATM networks.
      • Advantages:
        • Offers predictable performance similar to circuit switching.
        • More efficient than pure circuit switching in terms of resource usage.
      • Disadvantages:
        • Setup time for the virtual circuit can lead to delays.
        • Limited scalability compared to packet switching.

    2. IP Networks

    An IP (Internet Protocol) network is a type of network that relies on the Internet Protocol (IP) for routing data between devices. IP is a packet-switched, connectionless protocol that is fundamental to the operation of the Internet and most modern computer networks.

    In an IP network, data is transmitted in packets, and each device on the network is identified by an IP address (a unique numerical identifier). The data packets are routed based on the IP address, and the routing decisions are made by routers and other network devices using routing protocols.


    Key Features of IP Networks:

    1. Packet Switching:

      • IP networks use packet switching where data is broken down into smaller units called packets. Each packet may take a different route to the destination, where they are reassembled.
    2. IP Addressing:

      • Devices in an IP network are identified by their IP addresses, which are either IPv4 (32-bit) or IPv6 (128-bit).
      • IP addresses are used to route the packets to the correct destination across the network.
    3. Routing:

      • Routers in an IP network determine the optimal path for each packet based on its destination IP address. Routing can be dynamic and adaptive, adjusting to changing network conditions.
    4. Connectionless Communication:

      • IP is a connectionless protocol, meaning it does not establish a connection before data is sent. Each packet is independent and can take any route to the destination.
    5. Scalability:

      • IP networks can scale easily, allowing millions of devices (like computers, servers, and IoT devices) to communicate over the same network infrastructure.
    6. TCP/IP Protocol Suite:

      • Transmission Control Protocol (TCP) works with IP to provide reliable, ordered, and error-checked delivery of data. Together, TCP and IP form the backbone of the Internet, which is often referred to as the TCP/IP stack.

    Advantages of IP Networks:

    • Scalability: IP networks can scale to accommodate a vast number of devices and users. New devices can join the network simply by being assigned an IP address.
    • Flexibility: They support different types of data traffic, such as voice, video, and data, and can be used in various environments, from local area networks (LANs) to global wide area networks (WANs).
    • Reliability: By using protocols like TCP for error checking and retransmission, IP networks can provide reliable communication despite the connectionless nature of IP.
    • Efficiency: The packet-switching approach of IP networks makes efficient use of bandwidth, allowing multiple users to share the same communication channels.

    Comparison: Switched Networks vs IP Networks

    Feature Switched Networks IP Networks
    Communication Method Establishes dedicated connections (circuit switching) or sends packets (packet switching). Data is sent in packets, routed independently based on IP addresses.
    Network Type Includes circuit-switched, packet-switched, and virtual-circuit switched networks. Primarily packet-switched networks.
    Scalability Limited scalability, especially in circuit-switched networks. Highly scalable; supports a large number of devices and dynamic routing.
    Resource Utilization Circuit-switched: inefficient when idle. Packet-switched: more efficient. Highly efficient use of bandwidth via packet switching.
    Routing and Switching Involves switching circuits or paths, either dedicated or virtual. Involves packet routing based on IP addresses.
    Connection Type Can be connection-oriented (circuit switching) or connectionless (packet switching). Connectionless protocol (IP) with TCP for reliable communication.
    Examples Traditional PSTN (telephone network), Frame Relay, ATM. Internet, private IP-based networks (e.g., company intranets).
    Fault Tolerance Circuit-switched: low tolerance (connection loss affects communication). Packet-switched: high tolerance. High fault tolerance; alternative routes are used if one fails.
    Efficiency Circuit-switched is less efficient, especially when idle. Packet-switched is more efficient. Very efficient due to packet switching, dynamic routing, and sharing of resources.
    Reliability High reliability in circuit-switched networks, moderate in packet-switched. High reliability with TCP, but inherently less reliable than circuit-switched.

    Conclusion

    • Switched Networks are typically used in traditional telecommunications systems, offering either dedicated circuits (circuit-switched) or flexible packet-based communication (packet-switched). They offer reliable communication with fixed paths (in the case of circuit switching) but can be less efficient when compared to modern packet-switched networks.

    • IP Networks have become the dominant network technology, especially with the rise of the Internet. IP networks use packet switching, which provides better scalability, flexibility, and efficiency in handling data communication across large and diverse networks. IP addresses, routing protocols, and connectionless communication form the foundation of modern networking systems, allowing for highly efficient and scalable networks worldwide.

    IP networks, due to their ability to scale easily and their efficient use of resources, have largely replaced older circuit-switched systems in most applications, including the global Internet. However, switched networks are still used in some specialized environments (e.g., voice networks, legacy systems).

    Previous topic 12
    Multiplexing
    Next topic 14
    Inter-networking

    Past Papers

    Open this section to load past papers

    Click on Show Past Papers to see past papers.
    On This Page
      Reading Stats
      Est. reading time7 min
      Word count1,198
      Code examples0
      DifficultyIntermediate