How the Internet Works: Sending and Receiving Data Packets?

Sabiq Mirzai
TechCrate
Published in
6 min readMay 12, 2023

--

How Does the Internet Work (Infographic) | HP® Tech Takes

The Internet is a global network of computers and other electronic devices that are connected to each other through a complex system of routers, switches, and other networking equipment. The basic idea behind the Internet is that information can be sent from one computer to another in the form of data packets.

At a high level, the Internet works like this:

  1. A user sends a request for information, such as a web page, to a server.
In Introduction to HTTP Basics

When a user wants to access a web page or any other information on the Internet, they typically use a web browser to send a request to a server. The server is a computer that is connected to the Internet and stores the information that the user is requesting.

The user’s request is typically sent in the form of a URL (Uniform Resource Locator), which specifies the location of the information that the user wants to access. For example, if a user wants to access the homepage of a website, they would enter the URL of that page into their web browser.

Once the server receives the user’s request, it will process the request and send the requested information back to the user’s web browser. This information may include HTML code, images, videos, or other types of data that make up the web page or other content that the user is accessing.

2. The request is broken down into small data packets and sent over the Internet to the server.

Packet flow in different Network — GeeksforGeeks

When a user sends a request for information over the Internet, the request is broken down into small data packets that can be sent over the network. Each data packet typically includes a header that contains information about the packet, such as its source and destination addresses, as well as the actual data that is being transmitted.

The data packets are sent over the Internet using a process called packet switching. In this process, the data packets are routed through a series of intermediate network devices, such as routers and switches, to reach their destination. Each network device examines the header of each packet and determines the best path for the packet to take based on the destination address.

As the data packets travel over the Internet, they may take different paths and be transmitted through multiple network devices before they reach their destination. This helps to ensure that the data can be transmitted efficiently and reliably, even in the face of network congestion or other issues.

Once the data packets arrive at the server, they are reassembled into the original request and processed by the server to generate a response. The response is then broken down into smaller data packets and sent back over the Internet to the user’s computer in a similar manner.

3. The packets travel through multiple routers and switches, which help to route the data to its destination

How Does Data Travel the Internet? SlidePlayer

When data packets are sent over the Internet, they may travel through multiple routers and switches in order to reach their destination. These network devices are responsible for routing the data packets from one network to another and ensuring that they are delivered to the correct destination.

Routers are networking devices that are responsible for directing data packets to their intended destinations. They examine the header information in each packet to determine the destination address and then use routing tables to determine the best path for the packet to take. Routers can also use different metrics, such as the number of hops or the available bandwidth on a particular path, to determine the best route for a packet.

Switches, on the other hand, are networking devices that are responsible for connecting devices within a network. They use the Media Access Control (MAC) addresses in each data packet to determine which devices are connected to which ports and then forward the data packets to the appropriate device. Switches are typically used within local area networks (LANs) to provide high-speed connections between devices.

4. The server receives the data packets, reassembles them into the original request, and sends the requested information back to the user in the form of more data packets.

How Routers Transfer Packets — Planning for Network Deployment in Oracle® Solaris 11.2

After the data packets arrive at the server, they are reassembled into the original request, processed by the server, and a response is generated. The response is then broken down into smaller data packets and sent back over the Internet to the user’s computer in a similar manner as the original request.

The server typically uses the Transmission Control Protocol (TCP) to send the data packets back to the user’s computer. TCP is a reliable transport protocol that ensures that data packets are delivered to their destination in the correct order and without errors. When the server sends the data packets back to the user, it acknowledges each packet that it receives, and the user’s computer sends an acknowledgment back to the server. This process helps to ensure that the data is transmitted reliably over the network.

Once the data packets arrive back at the user’s computer, they are reassembled into the requested information, such as a web page or other data. The web browser on the user’s computer then renders the information and displays it to the user on the screen.

5. The data packets travel back through the Internet to the user’s computer, where they are reassembled into the requested information.

practicalnetworking.net

After the data packets are sent by the server in response to the user’s request, they travel back through the Internet to the user’s computer. Each data packet may take a different path back to the user’s computer, depending on the routing decisions made by network devices along the way.

When the data packets arrive back at the user’s computer, they are reassembled into the requested information. The user’s computer uses the information in the packet headers to determine the order in which the packets should be reassembled and to detect any missing or corrupt packets.

Once the data packets have been reassembled into the original request, the user’s computer can then process the information and display it to the user. This may involve rendering a web page, playing a video, or performing some other action based on the content of the data that was received.

To make all of this happen, the Internet uses a set of protocols, or rules, that govern how data is transmitted and received. The most important of these protocols is the Internet Protocol (IP), which defines how data packets are addressed and routed. Other significant protocols include Transmission Control Protocol (TCP), which ensures reliable delivery of data packets, and Hypertext Transfer Protocol (HTTP), which is used to transfer web pages and other data over the Internet.

Overall, the Internet is a complex and constantly evolving system that relies on the cooperation of many different organizations and individuals to function properly.

--

--