Tagged articles
73 articles
Page 1 of 1
Linux Tech Enthusiast
Linux Tech Enthusiast
Mar 26, 2026 · Operations

9 Essential Linux Network Commands Every Admin Should Know

This guide walks Linux administrators through nine core networking utilities—ip, netstat, nmap, traceroute, tcpdump, ssh, wget, netplan, and nmtui—explaining their purpose, key options, and example commands to configure interfaces, inspect routes, capture packets, and manage remote connections.

Linuxcommandsip
0 likes · 8 min read
9 Essential Linux Network Commands Every Admin Should Know
Liangxu Linux
Liangxu Linux
Sep 27, 2025 · Operations

Quickly Identify and Release Occupied Ports on Linux

This guide explains what port occupation means on Linux, demonstrates how to use lsof and netstat to pinpoint the process holding a specific port, and shows how to safely terminate that process to free the port for your applications.

LinuxSystem Administrationkill
0 likes · 6 min read
Quickly Identify and Release Occupied Ports on Linux
Liangxu Linux
Liangxu Linux
Jun 19, 2025 · Operations

Why Is My Linux Server Dropping Packets? A Step‑by‑Step Debug Guide

This article walks through a systematic Linux network packet‑loss investigation, covering potential loss points across the protocol stack, using ethtool, netstat, iptables, tc netem, and MTU adjustments, and demonstrates how to verify and resolve the issue with hping3 and curl.

MTUPacket Lossethtool
0 likes · 13 min read
Why Is My Linux Server Dropping Packets? A Step‑by‑Step Debug Guide
Open Source Linux
Open Source Linux
Jun 19, 2025 · Operations

Why Is My Linux Server Dropping Packets? A Step‑by‑Step Deep Dive

This article walks through a systematic investigation of Linux network packet loss, covering potential loss points across the protocol stack, using tools like ethtool, netstat, iptables, tc, hping3, curl, and tcpdump to identify and resolve misconfigurations such as faulty netem rules and an incorrect MTU setting.

Packet Lossiptablesnetstat
0 likes · 13 min read
Why Is My Linux Server Dropping Packets? A Step‑by‑Step Deep Dive
Raymond Ops
Raymond Ops
May 19, 2025 · Operations

Master Network Connectivity Checks: From ethtool to nmap

This guide explains how to verify physical links, test ping latency, trace routes, check HTTP/HTTPS availability with wget and curl, assess TCP/UDP ports using netcat, telnet, and nmap, inspect local connections via netstat/ss, understand TCP states, and validate DNS resolution, providing practical command examples for each step.

Linuxconnectivity toolsethtool
0 likes · 12 min read
Master Network Connectivity Checks: From ethtool to nmap
DevOps Operations Practice
DevOps Operations Practice
Oct 5, 2024 · Operations

Practical Linux Commands for File Classification, Process Monitoring, and Network Analysis

This article demonstrates how to use xargs with find and tar for file handling, ps for identifying high‑memory and high‑CPU processes, and netstat combined with awk and sort to inspect TCP connection states and the top requesting IP addresses, providing essential command‑line techniques for system administrators.

ShellSystem Administrationnetstat
0 likes · 4 min read
Practical Linux Commands for File Classification, Process Monitoring, and Network Analysis
MaGe Linux Operations
MaGe Linux Operations
Sep 23, 2024 · Operations

Master Network Connectivity Checks: Essential Linux Tools & Commands

Learn how to verify physical link status, test network reachability, trace routes, and diagnose TCP/UDP ports using Linux utilities such as ethtool, ping, tracepath, wget, curl, netcat, telnet, nmap, netstat, and ss, with practical command examples and interpretation tips.

connectivity testingethtoollinux-commands
0 likes · 15 min read
Master Network Connectivity Checks: Essential Linux Tools & Commands
Liangxu Linux
Liangxu Linux
Sep 1, 2024 · Operations

How to Add Custom Policy Routing for Multiple NICs on Linux

This guide explains how to configure additional routing rules for a second network interface on Linux by creating a new policy routing table, adding specific routes and rules with iproute2 commands, and verifying that traffic uses the intended NIC.

LinuxNetwork ConfigurationPolicy Routing
0 likes · 7 min read
How to Add Custom Policy Routing for Multiple NICs on Linux
MaGe Linux Operations
MaGe Linux Operations
Jul 29, 2024 · Operations

How to Add Custom Routing Rules for Multiple NICs on Linux

This guide explains how to configure additional routing tables and policy‑based routes on a Linux server with two network interfaces, covering IP address inspection, routing table edits, ip rule commands, and persistence across reboots.

LinuxNetwork ConfigurationPolicy Routing
0 likes · 9 min read
How to Add Custom Routing Rules for Multiple NICs on Linux
Liangxu Linux
Liangxu Linux
Jul 28, 2024 · Operations

Essential Linux Commands for Diagnosing Production Issues

A practical guide explains how to use top, iostat, netstat, df, du and other common Linux commands to monitor CPU, memory, disk, and network status, interpret their output, and troubleshoot performance problems in production environments.

Linuxdisk usageiostat
0 likes · 5 min read
Essential Linux Commands for Diagnosing Production Issues
Liangxu Linux
Liangxu Linux
Jun 27, 2024 · Operations

Essential Linux Commands for Real‑Time System Troubleshooting

This guide walks you through key Linux commands such as top, free, iostat, netstat, df, and du, explaining each output field, how to interpret system load, memory usage, CPU statistics, network connections, and disk space to quickly diagnose production issues.

Linuxdfdu
0 likes · 6 min read
Essential Linux Commands for Real‑Time System Troubleshooting
Liangxu Linux
Liangxu Linux
Apr 21, 2024 · Operations

Master Linux System Monitoring: top, free, vmstat, iostat, netstat and More

This guide provides a comprehensive overview of essential Linux system monitoring commands—including top, free, vmstat, iostat, mpstat, sar, netstat, uptime, ps, watch, strace, and lsof—detailing their syntax, key options, interactive controls, and how to interpret their output for effective performance analysis.

FreeLinuxiostat
0 likes · 32 min read
Master Linux System Monitoring: top, free, vmstat, iostat, netstat and More
DevOps Operations Practice
DevOps Operations Practice
Mar 15, 2024 · Operations

Practical Linux Command-Line Techniques: Using xargs, ps, and netstat for File Classification, Resource Monitoring, and Network Inspection

This tutorial demonstrates how to leverage the xargs command for batch file processing, employ ps to list high‑memory and high‑CPU processes, and use netstat combined with awk to examine TCP connection states and identify the most active IP addresses, all illustrated with concrete command examples.

Linuxcommand-linenetstat
0 likes · 4 min read
Practical Linux Command-Line Techniques: Using xargs, ps, and netstat for File Classification, Resource Monitoring, and Network Inspection
Open Source Linux
Open Source Linux
Aug 29, 2023 · Operations

Why ss Beats netstat: Fast Linux Socket Monitoring Commands

The article explains how the Linux ss command provides comprehensive socket statistics, lists its most useful options, demonstrates performance advantages over netstat with timing examples, and shows how to filter by state, address, or port for efficient system monitoring.

Linux networkingcommand-line toolsnetstat
0 likes · 8 min read
Why ss Beats netstat: Fast Linux Socket Monitoring Commands
Liangxu Linux
Liangxu Linux
Jul 2, 2023 · Operations

Master Server Log Analysis with Powerful Bash Commands

This guide presents a comprehensive collection of Bash one‑liners—using awk, grep, sort, uniq, netstat, and other utilities—to count unique IPs, rank page visits, filter bots, analyze traffic by time windows, compute bandwidth, and monitor connection states from Apache or Nginx access logs.

BashGrepServer Monitoring
0 likes · 12 min read
Master Server Log Analysis with Powerful Bash Commands
Liangxu Linux
Liangxu Linux
May 9, 2023 · Operations

How to Test and Debug Linux Network Ports with telnet, nc, and netstat

This guide explains how to verify TCP port connectivity on Linux using telnet and nc, shows how to interpret their output for open or closed ports, describes ways to exit these tools, and demonstrates how netstat can confirm the connection state and identify the owning process.

Linuxcommand-linenc
0 likes · 8 min read
How to Test and Debug Linux Network Ports with telnet, nc, and netstat
Liangxu Linux
Liangxu Linux
Apr 22, 2023 · Operations

Essential Windows CMD Network Commands and How to Use Them

This guide presents a concise reference of common Windows command‑line networking tools—including arp, getmac, hostname, ipconfig, netstat, ping, route, telnet and tracert—explaining their purpose, key options, typical usage syntax and practical examples to help administrators troubleshoot and manage network connectivity.

ARPcmdipconfig
0 likes · 16 min read
Essential Windows CMD Network Commands and How to Use Them
Liangxu Linux
Liangxu Linux
Mar 12, 2023 · Operations

Master Apache Log Analysis with Powerful AWK and Netstat Commands

This guide presents a comprehensive collection of AWK, grep, sed, and netstat one‑liners that let you count unique IPs, rank page visits, measure bandwidth, monitor TCP states, and extract detailed traffic patterns from Apache access logs on Linux systems.

ApacheLinuxNetwork Monitoring
0 likes · 11 min read
Master Apache Log Analysis with Powerful AWK and Netstat Commands
MaGe Linux Operations
MaGe Linux Operations
Dec 25, 2022 · Operations

Master Netstat: Decode Connections, Sockets & Routing with Practical Commands

This guide explains the netstat command’s purpose, interprets its output sections for active Internet connections and UNIX domain sockets, details common options such as -a, -t, -u, -l, -p, and provides numerous practical examples for listing ports, monitoring traffic, displaying routing tables, and identifying processes.

LinuxNetwork MonitoringSocket
0 likes · 12 min read
Master Netstat: Decode Connections, Sockets & Routing with Practical Commands
Efficient Ops
Efficient Ops
Oct 8, 2022 · Operations

Master Server Log Analysis: 30 Essential Linux Commands for Monitoring Traffic

This guide compiles a comprehensive set of Linux command‑line techniques—using awk, grep, netstat, and other tools—to help you count unique IPs, track page visits, identify heavy‑traffic files, monitor connection states, and extract performance metrics from Apache and other web server logs.

Server Monitoringawklog analysis
0 likes · 14 min read
Master Server Log Analysis: 30 Essential Linux Commands for Monitoring Traffic
Liangxu Linux
Liangxu Linux
Aug 31, 2022 · Operations

Why TIME_WAIT Connections Accumulate and How to Fix Them

In high‑concurrency scenarios, massive TIME_WAIT TCP connections can exhaust local ports, causing new connections to fail, but by understanding the TCP four‑handshake, adjusting socket reuse settings, and using keep‑alive, you can mitigate the issue.

LinuxNetworkingOperations
0 likes · 8 min read
Why TIME_WAIT Connections Accumulate and How to Fix Them
Ops Development Stories
Ops Development Stories
Jul 25, 2022 · Operations

Why Did My Windows Server Run Out of Ports? A Real‑World Debugging Tale

After a birthday outing, a payment failure revealed a Windows server’s inability to connect to a bank, leading the author through CPU/memory checks, network diagnostics, port exhaustion discovery, registry tweaks, malicious process removal, and final remediation, highlighting essential operations lessons.

OperationsTCP portsWindows server
0 likes · 6 min read
Why Did My Windows Server Run Out of Ports? A Real‑World Debugging Tale
Code DAO
Code DAO
May 11, 2022 · Backend Development

Understanding HTTP/1.1 Persistent Connections in Go

This article walks through the HTTP/1.1 keep‑alive model, shows how a simple Go program creates separate TCP connections for sequential requests, uses netstat and tcpdump to observe the behavior, and demonstrates how adjusting http.Client's transport settings enables true persistent connections even under concurrency.

GoHTTPHTTP client
0 likes · 11 min read
Understanding HTTP/1.1 Persistent Connections in Go
IT Services Circle
IT Services Circle
Feb 17, 2022 · Operations

Understanding the netstat Command and Its Common Options

This article explains the purpose, output format, and frequently used options of the cross‑platform netstat command, illustrating how to list active TCP/UDP connections, UNIX domain sockets, and various statistics, and notes modern replacements such as ss and ip.

LinuxNetwork MonitoringTCP
0 likes · 7 min read
Understanding the netstat Command and Its Common Options
21CTO
21CTO
Jan 24, 2022 · Operations

Master Linux Performance Monitoring: Essential Tools and Metrics

This guide explains how to monitor Linux server performance using built‑in tools such as top, vmstat, pidstat, iostat, netstat, sar and tcpdump, detailing the metrics each provides and how to interpret them for CPU, memory, disk I/O and network troubleshooting.

LinuxPerformance MonitoringSystem Administration
0 likes · 15 min read
Master Linux Performance Monitoring: Essential Tools and Metrics
ITPUB
ITPUB
Jan 21, 2022 · Operations

Essential Linux Performance Monitoring: Top, vmstat, iostat, netstat & More

This guide explains how to use core Linux tools such as top, vmstat, pidstat, iostat, sar, netstat, and tcpdump to monitor CPU, memory, disk I/O, and network performance, interpret their metrics, and troubleshoot common bottlenecks on servers.

LinuxPerformance Monitoringiostat
0 likes · 17 min read
Essential Linux Performance Monitoring: Top, vmstat, iostat, netstat & More
Liangxu Linux
Liangxu Linux
Jan 10, 2022 · Operations

Why the ss Command Beats netstat for Fast Socket Monitoring

The article explains how the Linux ss command provides a faster, more detailed view of TCP/UDP sockets than netstat, lists its key features, demonstrates practical examples for filtering by state, address, and port, and shows how to use various ss options for effective network diagnostics.

LinuxNetwork MonitoringSocket
0 likes · 8 min read
Why the ss Command Beats netstat for Fast Socket Monitoring
Liangxu Linux
Liangxu Linux
Dec 21, 2021 · Operations

Master Linux Network Commands: ifconfig, ping, traceroute, and More

This guide explains how to use essential Linux networking utilities—including ifconfig, ping, traceroute, netstat, dig, nslookup, route, host, arp, ethtool, iwconfig, and hostname—covering their purpose, common options, and practical command‑line examples for system administration tasks.

digifconfignetstat
0 likes · 11 min read
Master Linux Network Commands: ifconfig, ping, traceroute, and More
Open Source Linux
Open Source Linux
Jul 13, 2021 · Operations

Master 9 Essential Network Commands for Troubleshooting

This guide explains nine common Windows network commands—ping, ipconfig, arp, traceroute, route, nslookup, nbtstat, netstat, and net—detailing their purpose, basic syntax, useful options, and step‑by‑step troubleshooting procedures to help diagnose connectivity issues.

ARPNetwork DiagnosticsWindows commands
0 likes · 17 min read
Master 9 Essential Network Commands for Troubleshooting
Open Source Linux
Open Source Linux
Apr 10, 2021 · Operations

Master Linux Server Monitoring: Essential Tools & Metrics Explained

This guide walks through essential Linux server monitoring tools—top, vmstat, pidstat, iostat, netstat, sar, and tcpdump—explaining their output fields, what each metric reveals about CPU, memory, disk I/O, and network performance, and how to use them for effective troubleshooting and capacity planning.

Linuxiostatnetstat
0 likes · 17 min read
Master Linux Server Monitoring: Essential Tools & Metrics Explained
Liangxu Linux
Liangxu Linux
Mar 31, 2021 · Operations

Master Linux Server Monitoring: Essential Tools and How to Use Them

This guide explains how to use common Linux monitoring utilities—top, vmstat, pidstat, iostat, sar, netstat, and tcpdump—to observe CPU, memory, disk I/O, and network performance, interpret their output, and troubleshoot system bottlenecks effectively.

Linuxiostatnetstat
0 likes · 17 min read
Master Linux Server Monitoring: Essential Tools and How to Use Them
Liangxu Linux
Liangxu Linux
Mar 21, 2021 · Operations

Mastering netstat: Essential Commands to Inspect Linux Network Connections

This guide explains the most useful netstat options for Linux, showing how to list all connections, filter TCP or UDP sockets, disable DNS lookups, display process IDs, monitor listening ports, continuously refresh output, and use grep or awk to map ports to processes and summarize socket states.

LinuxNetwork MonitoringSysadmin
0 likes · 8 min read
Mastering netstat: Essential Commands to Inspect Linux Network Connections
Efficient Ops
Efficient Ops
Mar 12, 2021 · Operations

Master Linux Network Commands: From netstat to ss and tcpdump

This guide offers a practical overview of essential Linux networking tools—including netstat, ss, sar, iftop, and tcpdump—explaining how to monitor connections, analyze traffic, capture packets, and tune kernel parameters to handle massive connection loads efficiently.

Operationsnetstatnetwork
0 likes · 10 min read
Master Linux Network Commands: From netstat to ss and tcpdump
Programmer DD
Programmer DD
May 31, 2020 · Operations

Master Windows Network Troubleshooting: Essential Commands Explained

This guide details essential Windows network troubleshooting commands—including ping, ipconfig, arp, traceroute, route, nslookup, netstat, and net—explaining their purposes, syntax, common options, and how to interpret results to diagnose connectivity, DNS, routing, and service issues.

Network DiagnosticsWindows commandsipconfig
0 likes · 17 min read
Master Windows Network Troubleshooting: Essential Commands Explained
Liangxu Linux
Liangxu Linux
Jan 18, 2020 · Operations

Essential Linux Commands for Monitoring System Health

This guide introduces key Linux commands—such as uptime, who, uname, du, df, free, pmap, vmstat, ifconfig, ip, netstat, top, and pstree—to help you quickly assess system status, resource usage, and process relationships, enabling effective troubleshooting and maintenance.

FreeLinuxdf
0 likes · 11 min read
Essential Linux Commands for Monitoring System Health
Liangxu Linux
Liangxu Linux
Dec 16, 2019 · Fundamentals

Master Windows Network Troubleshooting: Essential Commands and Their Usage

This guide explains the most common Windows networking commands—ping, ipconfig, arp, traceroute, route, nslookup, netstat, and net—detailing their purpose, syntax, useful options, and example outputs to help you diagnose connectivity, routing, and configuration issues efficiently.

Windowscommand-lineipconfig
0 likes · 17 min read
Master Windows Network Troubleshooting: Essential Commands and Their Usage
MaGe Linux Operations
MaGe Linux Operations
Jul 6, 2018 · Operations

Master Network Troubleshooting: Essential Windows Commands Explained

This guide walks you through essential Windows networking commands—ping, ipconfig, arp, traceroute, route, nslookup, netstat, and net—explaining their syntax, options, and practical use cases for diagnosing connectivity, routing, and configuration issues across local and remote networks.

Windows commandsipconfignetstat
0 likes · 16 min read
Master Network Troubleshooting: Essential Windows Commands Explained
High Availability Architecture
High Availability Architecture
Sep 7, 2017 · Operations

How to Identify and Diagnose Packet Drops on Linux

This article explains how to detect whether inbound or outbound packets are being dropped on a Linux system, shows how to use netstat, dropwatch, and perf to pinpoint the cause, and provides step‑by‑step commands and example outputs for debugging packet loss.

Linux networkingPacket Lossdebugging
0 likes · 5 min read
How to Identify and Diagnose Packet Drops on Linux
MaGe Linux Operations
MaGe Linux Operations
May 26, 2017 · Operations

How to Quickly Detect Occupied Linux Ports with Python

This guide shows how to use Linux commands such as lsof and netstat to identify occupied ports, explains the meaning of key parameters, and provides a Python script that monitors specified IP ports for availability, complete with example output.

PythonSystem Administrationlsof
0 likes · 2 min read
How to Quickly Detect Occupied Linux Ports with Python
MaGe Linux Operations
MaGe Linux Operations
Jul 15, 2014 · Information Security

How I Traced a Bandwidth‑Hogging Malware on a Linux Server

A Linux admin recounts responding to a bandwidth‑saturation incident, discovering a suspicious sbin process hidden in /var/cache, using ifconfig, top, and netstat to reveal PPTP connections, and outlining the steps taken to identify and remove the malicious scripts.

Bandwidth HijackingLinuxMalware Investigation
0 likes · 6 min read
How I Traced a Bandwidth‑Hogging Malware on a Linux Server