[email protected]Support 24/7 · Billing 09:00 – 00:00LinkedInXFacebook
NexonHost
Netherlands Dedicated ServersAmsterdam · Equinix AM6Germany Dedicated ServersFrankfurt · Equinix FR4Romania Dedicated ServersBucharest · VoxilityAustria Dedicated ServersVienna · Interxion VIEBulgaria Dedicated ServersSofia · TelepointFrance Dedicated ServersParis · Interxion PAR — Marseille · Digital Realty MRS3Ireland Dedicated ServersDublin · Equinix DB2Italy Dedicated ServersMilan · Irideos AvalonPoland Dedicated ServersWarsawSpain Dedicated ServersMadrid · Equinix MD2United States Dedicated ServersAshburn · Equinix DC
All articles
Knowledge BaseAugust 2, 2023

How to Monitoring Network Bandwidth and Traffic on a Server.

How To Monitoring Network Bandwidth And Traffic On A Server.

Monitoring network bandwidth and traffic on a server is crucial for maintaining optimal network performance and ensuring smooth operations. As servers handle incoming and outgoing data, understanding the flow of information and identifying potential bottlenecks is essential to prevent service disruptions and improve overall efficiency. In this article, we will explore various tools and techniques for monitoring network bandwidth and traffic on a server, along with practical examples to help you grasp the concepts effectively.

Understanding Network Bandwidth and Traffic:

Network bandwidth refers to the maximum capacity of data that can be transmitted through a network connection in a given amount of time. It is typically measured in bits per second (bps) and represents the network’s throughput capability. On the other hand, network traffic refers to the actual data flow or the amount of data being transmitted over a network during a specific period.

For example, consider a server with a network interface that has a bandwidth capacity of 1 Gbps (Gigabit per second). If the server receives and sends a total of 500 Mbps (Megabits per second) of data, the network traffic for that period is 500 Mbps.

Monitoring Tools and Techniques:

Various command-line tools are available to monitor network bandwidth and traffic on a server. Some commonly used ones are ifconfig, netstat (or ss), and vnstat. Let’s explore each of these tools and understand how they can be utilized effectively.

Using ifconfig:

The ifconfig (interface configuration) command provides valuable information about the network interfaces on your server, including their IP addresses, MAC addresses, and traffic statistics. To view the network interface information, open a terminal and enter the following command:

ifconfig

Example Output:

eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet xx.xx.xx.xx  netmask 255.255.255.0  broadcast xx.xx.xx.xx
        ether 00:11:22:33:44:55  txqueuelen 1000  (Ethernet)
        RX packets 56789  bytes 34567890 (32.9 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 12345  bytes 67890123 (64.7 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

In the example above, we can see the statistics for the “eth0” network interface, including the number of received (RX) and transmitted (TX) packets, as well as the corresponding bytes.

Real-time Monitoring with iftop:

While ifconfig provides a snapshot of network statistics, it does not offer real-time monitoring. For real-time traffic analysis, we can use the “iftop” tool. To install iftop, use the appropriate package manager for your system, such as apt or yum, and run the following command:

sudo apt-get install iftop

After installation, launch iftop in the terminal by typing:

sudo iftop

Example Output:

interface: eth0
IP address is: xx.xx.xx.xx
MAC address is: 00:11:22:33:44:55
Listening on eth0 [xx.xx.xx.xx/255.255.255.0]

iftop displays real-time network usage sorted by the amount of data transferred. The output includes the source and destination IP addresses, the total data transferred, and a graph showing the traffic flow.

Utilizing netstat (or ss):

The netstat command, which is often replaced by the ss command in modern Linux distributions, provides a comprehensive overview of active network connections and their statistics. To view all network connections, use the following command:

netstat -a

or

ss -a

Example Output:

Proto Recv-Q Send-Q Local Address    Foreign Address  State
tcp   0      0      192.0.1.100:22 192.168.1.200:58904 ESTABLISHED
tcp   0      0      192.0.1.100:80 192.168.1.201:35462 TIME_WAIT

In the example above, we can see two active TCP connections with their corresponding local and foreign addresses and connection states.

Analyzing Traffic with vnstat:

Vnstat is a powerful tool that provides an overview of network traffic over a specified period. It keeps track of data usage on a per-interface basis, making it an excellent tool for long-term traffic analysis. To install vnstat, use the package manager and run the following command:

sudo apt-get install vnstat

After installation, configure vnstat for the desired network interface, such as eth0, by using:

sudo vnstat -u -i eth0

Example Output:

Database updated: 2023-08-01  (from 2023-07-01)
         eth0:
                rx      45.15 GiB     6.21 GiB     51.35 GiB
                tx      14.65 GiB     2.71 GiB     17.36 GiB
                total   59.80 GiB     8.92 GiB     68.71 GiB

The example above shows the data usage (both received and transmitted) on the eth0 interface for the past month, as well as the total data usage.

Importance of Network Traffic Analysis:

Analyzing network traffic is not only essential for optimizing server performance but also for enhancing security and detecting potential issues. By monitoring network patterns, unusual activities can be identified, such as Distributed Denial of Service (DDoS) attacks or unauthorized data access. Let’s explore some examples of how network traffic analysis can be beneficial:

  1. Detecting Suspicious Network Activity: Suppose your server suddenly experiences a significant increase in incoming traffic on a specific port. Network traffic analysis can help identify this unusual behavior, indicating a potential security breach or attack.

  2. Troubleshooting Network Connectivity Issues: Users may complain about slow access to a specific application or website hosted on your server. Analyzing network traffic can pinpoint whether the issue lies with the server or the network, facilitating faster resolution.

  3. Optimizing Bandwidth Allocation: For organizations with limited bandwidth, network traffic analysis can help allocate resources efficiently by identifying applications or users consuming excessive bandwidth.

Implementing Bandwidth Usage Policies:

To ensure fair and efficient use of network resources, organizations often establish bandwidth usage policies. Monitoring network bandwidth and traffic assists in enforcing these policies effectively. Here are some examples of scenarios where bandwidth usage policies can be beneficial:

  1. Prioritizing Critical Services: In a business environment, VoIP (Voice over Internet Protocol) or video conferencing services may be critical for communication. Implementing a policy that prioritizes such services ensures they receive sufficient bandwidth for high-quality communication.

  2. Restricting Non-Essential Applications: In educational institutions, it might be necessary to limit access to streaming

Keep reading
What is a 503 Service Unavailable Error?
August 14, 2023

What is a 503 Service Unavailable Error?

What is a 503 Service Unavailable Error? This article explains what a 503 error means, why you’re getting an HTTP 503 code, and how to troubleshoot these errors. What is an HTTP 503 Error? When you open a web page, your browser sends a request to the server hosting the site, which returns the…

Read article
What is localhost?
August 14, 2023

What is localhost?

What is localhost? Computer machines are identified by their hostname [name of the host machine] and IP address. The below diagram briefly illustrates it. Likewise, we also have a common name for all the computer systems that used to call itself is known as localhost. Here, the term “localhost” is…

Read article
How to create a bash shell script to find if a number is perfect or not.
August 14, 2023

How to create a bash shell script to find if a number is perfect or not.

How to create a bash shell script to find if a number is perfect or not. In this article, we will discuss how to write a bash script to find if a number is perfect or not. A perfect number is defined as, a positive number that is equal to the sum of its proper…

Read article
Get in Touch

Together, Let’s Build a Faster, Safer Internet.

Build scalable infrastructure with NexonHost — high-performance dedicated servers, VPS hosting, cloud hosting, and DDoS protection across Europe.

Get Started →Contact Us
[email protected]Support 24/7 · Billing 09:00 – 00:00