Tagged articles

network troubleshooting

177 articles · Page 1 of 2
Golang Shines
Golang Shines
Aug 8, 2026 · Operations

Diagnosing Server Connectivity Issues with Ping, Telnet, Curl, and Traceroute

This guide explains how to break down the vague symptom “network unreachable” into layered checks—interface status, routing, ARP, DNS, TCP, TLS, and HTTP—using the four classic tools ping, telnet, curl, and traceroute, and provides concrete commands, analysis steps, and evidence‑gathering scripts for Linux servers and Kubernetes pods.

KubernetesLinuxcurl
0 likes · 35 min read
Diagnosing Server Connectivity Issues with Ping, Telnet, Curl, and Traceroute
Ops Community
Ops Community
Jul 19, 2026 · Operations

Using mtr to Pinpoint Network Packet‑Loss Nodes: A Step‑by‑Step Guide

This guide explains how to correctly use mtr on Linux to investigate network packet loss, covering preparation, baseline reporting, protocol‑specific probing, source‑address selection, interpretation of loss metrics, multi‑target comparison, and assembling reproducible evidence for escalation.

LinuxTCPUDP
0 likes · 20 min read
Using mtr to Pinpoint Network Packet‑Loss Nodes: A Step‑by‑Step Guide
Ops Community
Ops Community
Jul 18, 2026 · Operations

Using tcpdump to Diagnose Client‑Server Communication Failures

This guide shows how to use tcpdump on Linux to verify whether a client actually sent packets, whether they reached the server, how the server responded, and where a TCP connection was closed, by defining the problem, selecting interfaces, applying narrow BPF filters, capturing key handshake packets, handling TLS, HTTP, UDP, DNS, ICMP, container and Kubernetes environments, and preserving evidence with proper file management.

KubernetesLinuxTCP
0 likes · 19 min read
Using tcpdump to Diagnose Client‑Server Communication Failures
Raymond Ops
Raymond Ops
Jul 14, 2026 · Operations

Network Troubleshooting with tcpdump & Wireshark: Step‑by‑Step Guide and Ready‑to‑Use Scripts

This comprehensive guide walks you through using tcpdump and Wireshark for network fault isolation, covering core concepts, capture filters, detailed analysis techniques, performance tuning, expert information interpretation, automation scripts, and best‑practice recommendations for efficient packet‑level troubleshooting.

LinuxOperationsWireshark
0 likes · 51 min read
Network Troubleshooting with tcpdump & Wireshark: Step‑by‑Step Guide and Ready‑to‑Use Scripts
MaGe Linux Operations
MaGe Linux Operations
Jul 11, 2026 · Operations

Mastering TCP Handshake, Four‑Way Termination, and Common Faults

This article breaks down the TCP three‑way handshake and four‑way close, explains what each state means, and provides a step‑by‑step troubleshooting guide with concrete Linux commands, packet captures, and practical tips for diagnosing timeouts, refusals, retransmissions, and other common connection problems.

Four-way terminationHandshakeLinux
0 likes · 22 min read
Mastering TCP Handshake, Four‑Way Termination, and Common Faults
Ops Community
Ops Community
Jul 10, 2026 · Operations

How to Diagnose Network Packet Loss: Practical Steps from ping to tcpdump

This guide explains how to systematically investigate network packet loss on Linux by collecting timestamps, routing, interface and kernel statistics, using ping, tracepath, curl, netstat, ss, nstat, ip, ethtool, nftables/iptables, and tcpdump on both ends, then narrowing the failure scope, fixing MTU, conntrack, soft‑interrupt or firewall issues, and validating the fix with metrics and roll‑back procedures.

KubernetesLinuxMTU
0 likes · 18 min read
How to Diagnose Network Packet Loss: Practical Steps from ping to tcpdump
Raymond Ops
Raymond Ops
Jul 8, 2026 · Operations

10 Essential System Commands Every Ops Engineer Should Master

This guide explains why core Linux commands are indispensable for ops engineers, categorizes them into monitoring, networking, disk analysis, text processing and service management, and provides detailed usage examples, troubleshooting scenarios, and decision‑tree guidance for effective system administration.

Disk ManagementLinuxMonitoring
0 likes · 47 min read
10 Essential System Commands Every Ops Engineer Should Master
Linux Tech Enthusiast
Linux Tech Enthusiast
Jun 19, 2026 · Operations

Beyond Basic Ping: Advanced Options and Batch Techniques

This article walks through the ping command’s core functions, explains bytes, time and TTL fields for OS detection, and demonstrates advanced switches like -t, -a, -n, -l, -r as well as batch subnet scanning, highlighting practical examples and potential misuse.

Command LineLinuxWindows
0 likes · 7 min read
Beyond Basic Ping: Advanced Options and Batch Techniques
dbaplus Community
dbaplus Community
Jun 4, 2026 · Operations

Why Ops Engineers Still Skip tcpdump? The Command-Line Packet Capture Powerhouse

This hands‑on guide walks you through every practical aspect of using tcpdump—from basic commands and essential filters to saving, reading, advanced flag tricks, performance tuning, security considerations, real‑world case studies, and integration with tools like tshark and Wireshark—so you can capture and analyze network traffic efficiently and safely in production environments.

BPF filtersLinuxnetwork troubleshooting
0 likes · 22 min read
Why Ops Engineers Still Skip tcpdump? The Command-Line Packet Capture Powerhouse
Ops Community
Ops Community
Jun 3, 2026 · Operations

Full‑Stack Network Packet‑Loss Diagnosis: From ping to tcpdump

This comprehensive guide walks operations engineers through the full stack of network packet‑loss troubleshooting on Linux, covering symptom identification, layer‑by‑layer analysis, key metrics, step‑by‑step commands, common scenarios, advanced tuning techniques, monitoring alerts and FAQs.

LinuxMonitoringconntrack
0 likes · 35 min read
Full‑Stack Network Packet‑Loss Diagnosis: From ping to tcpdump
dbaplus Community
dbaplus Community
Apr 27, 2026 · Cloud Native

When MTU Misconfiguration Turns Into a Two‑Day Network Mystery

A two‑day investigation of intermittent packet loss in a hybrid‑cloud Kubernetes environment revealed that an oversized VXLAN MTU caused fragmentation, prompting a step‑by‑step analysis of MTU fundamentals, diagnostic commands, Cilium configuration changes, and best‑practice recommendations for cloud‑native networks.

KubernetesMTUOverlay Networks
0 likes · 30 min read
When MTU Misconfiguration Turns Into a Two‑Day Network Mystery
dbaplus Community
dbaplus Community
Apr 26, 2026 · Operations

Why the Lsof Command Is an Underrated Lifesaver in Production

The article explains how the Linux lsof utility can quickly identify port conflicts, lingering deleted files, and file‑handle leaks, offering practical commands, real‑world case studies, advanced options, performance tips, and integration techniques for effective system troubleshooting.

Linuxfile handleslsof
0 likes · 12 min read
Why the Lsof Command Is an Underrated Lifesaver in Production
AI Agent Super App
AI Agent Super App
Apr 16, 2026 · Operations

Master Linux Network Management: From ping to tcpdump

This tutorial walks through 15 essential Linux networking commands—ping, ip, ip route, ss, netstat, tcpdump, curl, wget, traceroute, dig, nmap, nc, ethtool, nmcli, and iperf3—explaining their syntax, typical use‑cases, and how they help diagnose connectivity, routing, port, and performance issues.

Linuxcommand-line toolsiproute2
0 likes · 14 min read
Master Linux Network Management: From ping to tcpdump
Golang Shines
Golang Shines
Mar 22, 2026 · Operations

Master Common Network Commands: Detailed Ping, ARP, Tracert, and Route Usage

This guide walks network engineers through the core Windows commands ping, arp, tracert, and route, explaining each option, interpreting output fields such as bytes, time, and TTL, demonstrating batch ping scripts, ARP record management, traceroute customizations, and route table manipulation for dual‑NIC setups.

Windows commandsarpnetwork diagnostics
0 likes · 12 min read
Master Common Network Commands: Detailed Ping, ARP, Tracert, and Route Usage
Raymond Ops
Raymond Ops
Jan 4, 2026 · Operations

10 Real‑World TCPDump Cases That Reveal Hidden Network Issues

This guide walks you through ten authentic production‑level network problems, showing how to capture traffic with TCPDump, interpret packet data, pinpoint root causes such as firewall rules, window scaling, RST packets, DNS glitches, SSL handshake failures, and then apply concrete remediation steps.

Operationscase studiesnetwork troubleshooting
0 likes · 18 min read
10 Real‑World TCPDump Cases That Reveal Hidden Network Issues
IT Services Circle
IT Services Circle
Dec 31, 2025 · Operations

7 Essential Windows & Linux Commands to Diagnose Network Outages

This guide walks you through seven practical command‑line tools—ipconfig/ifconfig, ping, arp, tracert/traceroute, netstat, route, and nslookup—showing how to systematically check local settings, connectivity, layer‑2 mapping, path tracing, connection status, routing tables, and DNS resolution on both Windows and Linux systems.

LinuxWindowsdiagnostics
0 likes · 10 min read
7 Essential Windows & Linux Commands to Diagnose Network Outages
Alibaba Cloud Native
Alibaba Cloud Native
Dec 21, 2025 · Operations

How to Pinpoint and Resolve Packet Loss in Cloud‑Native Deployments with SysOM

This article walks through real‑world cases of network packet loss in Alibaba Cloud Kubernetes clusters, showing how SysOM’s diagnostics quickly locate root causes—ranging from kernel‑level drops to hidden netfilter hooks and nftables rules—and provides a step‑by‑step troubleshooting guide for cloud‑native operations teams.

Alibaba CloudOperationsSysOM
0 likes · 10 min read
How to Pinpoint and Resolve Packet Loss in Cloud‑Native Deployments with SysOM
NiuNiu MaTe
NiuNiu MaTe
Nov 20, 2025 · Fundamentals

How DNS Translates Domain Names to IP Addresses and Keeps the Web Fast

This article explains the role of DNS as the hidden navigator that maps human‑readable domain names to IP addresses, details the four‑layer caching hierarchy, walks through recursive and iterative query flows, outlines common DNS failures, and offers practical troubleshooting and performance‑boosting tips.

DNSDomain Name SystemIP address
0 likes · 17 min read
How DNS Translates Domain Names to IP Addresses and Keeps the Web Fast
NiuNiu MaTe
NiuNiu MaTe
Nov 12, 2025 · Fundamentals

How Devices Find Their IP Address: The DHCP Journey Explained

This article walks through how a device obtains an IP address via DHCP, covering the broadcast discovery, server offer, client request, and acknowledgment phases, the differences between static and dynamic addressing, lease management, common conflicts, and practical troubleshooting steps.

DHCPDynamic IPIP address
0 likes · 13 min read
How Devices Find Their IP Address: The DHCP Journey Explained
Xiao Liu Lab
Xiao Liu Lab
Nov 10, 2025 · Operations

Why a Healthy Frontend Still Returns 504 Errors: An MTU Mismatch Case Study

A production incident showed that despite flawless frontend health metrics and no logged errors, a subset of users experienced 504 Gateway Timeout errors caused by an MTU mismatch in the network path, highlighting the need for end‑to‑end connectivity checks beyond application monitoring.

504 timeoutMSS clampingMTU
0 likes · 9 min read
Why a Healthy Frontend Still Returns 504 Errors: An MTU Mismatch Case Study
dbaplus Community
dbaplus Community
Oct 27, 2025 · Operations

30 Essential Linux Command Combinations to Supercharge System Administration

This guide presents 30 practical Linux command pipelines—organized into system monitoring, log analysis, file management, process control, network troubleshooting, and security auditing—that let administrators quickly diagnose resource bottlenecks, extract key log data, automate batch operations, and secure servers without writing complex scripts.

LinuxMonitoringSecurity Auditing
0 likes · 33 min read
30 Essential Linux Command Combinations to Supercharge System Administration
Xiao Liu Lab
Xiao Liu Lab
Oct 27, 2025 · Operations

Why Tcping Beats Ping: Fast Port Probing for Windows and Linux

This guide explains why traditional ping often fails to reveal service issues, introduces Tcping as a reliable TCP‑based port probing tool, and provides step‑by‑step instructions for using it on Windows and Linux, including installation, common parameters, comparison with other utilities, and practical monitoring scripts.

LinuxWindowsnc
0 likes · 8 min read
Why Tcping Beats Ping: Fast Port Probing for Windows and Linux
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
Oct 10, 2025 · Operations

Why Does Ping Fail? 10 Common Causes and How to Fix Them

This article explains the ten most frequent reasons why a Ping command may fail—ranging from offline target hosts and IP misconfigurations to firewall blocks and DNS issues—and provides practical step‑by‑step troubleshooting methods and solutions to help you quickly resolve network connectivity problems.

ICMPLinuxWindows
0 likes · 9 min read
Why Does Ping Fail? 10 Common Causes and How to Fix Them
Linux Tech Enthusiast
Linux Tech Enthusiast
Sep 26, 2025 · Operations

Seven Practical Ways to Use the Ping Command

This article walks through seven common ping command usages—including basic connectivity checks, continuous ping, name resolution, custom packet counts and sizes, route recording, and batch subnet scanning—explaining each option's output, typical values, and security considerations.

Command LineDOSLinux
0 likes · 8 min read
Seven Practical Ways to Use the Ping Command
Raymond Ops
Raymond Ops
Sep 21, 2025 · Operations

Master Network Troubleshooting: A Step‑by‑Step Guide for Any IT Pro

This article presents a comprehensive, systematic approach to network troubleshooting, covering essential preconditions, OSI/TCP‑IP fundamentals, common devices, typical SMB architectures, key Windows and Linux commands, and a detailed step‑by‑step workflow illustrated with diagrams to help quickly isolate and resolve connectivity issues.

DNSLinux commandsNetwork Architecture
0 likes · 15 min read
Master Network Troubleshooting: A Step‑by‑Step Guide for Any IT Pro
Liangxu Linux
Liangxu Linux
Sep 16, 2025 · Operations

10 Real‑World TCPDump Cases That Reveal Hidden Network Issues

This guide walks senior operations engineers through ten authentic production‑level network problems, demonstrating how to capture and analyze packets with TCPDump, interpret key TCP/IP indicators, and apply concrete fixes ranging from firewall rules to load‑balancer health‑check settings.

Case studynetwork troubleshootingpacket analysis
0 likes · 18 min read
10 Real‑World TCPDump Cases That Reveal Hidden Network Issues
MaGe Linux Operations
MaGe Linux Operations
Sep 4, 2025 · Operations

Master tcpdump: Real-World Linux Network Troubleshooting Techniques

This comprehensive guide walks you through why tcpdump is essential for ops engineers, how to install and configure it, basic and advanced filtering commands, real incident case studies, performance tuning, security analysis, and integration with other tools, turning raw packet captures into actionable insights.

network troubleshootingpacket analysisperformance monitoring
0 likes · 22 min read
Master tcpdump: Real-World Linux Network Troubleshooting Techniques
Liangxu Linux
Liangxu Linux
Aug 27, 2025 · Operations

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

This article walks through a systematic Linux network‑troubleshooting process, examining packet loss at every protocol‑stack layer, using tools such as netstat, ethtool, iptables, tc, and tcpdump, and ultimately fixing the issue by removing a faulty netem rule and correcting the MTU size.

LinuxMTUiptables
0 likes · 12 min read
Why Is My Linux Server Dropping Packets? A Step‑by‑Step Diagnosis
MaGe Linux Operations
MaGe Linux Operations
Aug 4, 2025 · Operations

10 Real‑World TCPDump Cases That Uncover Hidden Network Problems

This article walks senior operations engineers through ten authentic production‑level TCPDump case studies, teaching core command options, packet‑analysis heuristics, and a systematic four‑step troubleshooting framework that turns network mysteries into clear, actionable solutions.

LinuxOperationsnetwork troubleshooting
0 likes · 18 min read
10 Real‑World TCPDump Cases That Uncover Hidden Network Problems
Ops Community
Ops Community
Jul 18, 2025 · Operations

From Rookie to Pro: Master Linux Network Troubleshooting with This Complete Roadmap

This comprehensive guide walks you through a systematic, OSI‑layer‑based approach to Linux network fault isolation, essential command‑line and graphical tools, real‑world case studies, automation scripts, preventive maintenance tactics, and best‑practice recommendations to quickly diagnose and resolve any network issue.

AutomationLinuxOSI model
0 likes · 11 min read
From Rookie to Pro: Master Linux Network Troubleshooting with This Complete Roadmap
Deepin Linux
Deepin Linux
Jun 28, 2025 · Fundamentals

Why Does TCP/UDP Lose Packets? Deep Dive into Causes and Fixes

This article explores the root causes of packet loss in TCP and UDP—including application bugs, kernel buffer limits, network congestion, protocol limitations, and handshake failures—and presents practical solutions such as code optimization, socket tuning, congestion‑control adjustments, and forward error correction techniques.

TCPUDPnetwork troubleshooting
0 likes · 25 min read
Why Does TCP/UDP Lose Packets? Deep Dive into Causes and Fixes
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.

MTUethtooliptables
0 likes · 13 min read
Why Is My Linux Server Dropping Packets? A Step‑by‑Step Debug Guide
Programmer1970
Programmer1970
Jun 8, 2025 · Operations

Top 10 Essential Linux Ops Questions Every Interviewer and Engineer Should Master

This guide walks through ten core Linux operations topics—precise system resource monitoring, deep process diagnostics, network and port‑conflict troubleshooting, permission models, link‑type comparison, boot sequence analysis, layered log auditing, automation with cron, advanced file search, and systematic performance‑tuning—providing concrete commands, examples, and step‑by‑step procedures for interview and on‑the‑job success.

Boot SequenceLinuxLog Auditing
0 likes · 11 min read
Top 10 Essential Linux Ops Questions Every Interviewer and Engineer Should Master
Linux Ops Smart Journey
Linux Ops Smart Journey
May 30, 2025 · Cloud Native

Capture Live Pod Traffic with kubectl sniff: A Complete Guide

This guide introduces the kubectl sniff plugin for Kubernetes, explains its non‑privileged and privileged modes, walks through installation via krew or offline, and provides step‑by‑step commands to capture pod traffic with tcpdump and view it in Wireshark, enhancing network debugging efficiency.

KubernetesWiresharkksniff
0 likes · 11 min read
Capture Live Pod Traffic with kubectl sniff: A Complete Guide
MaGe Linux Operations
MaGe Linux Operations
May 29, 2025 · Operations

Master Traceroute: Step‑by‑Step Guide to Network Path Diagnosis

This comprehensive guide explains how to use the traceroute (or tracert) command on Linux, macOS, and Windows, covering installation, syntax, basic execution, output interpretation, advanced options, common use cases, troubleshooting tips, and related tools such as ping, mtr, and pathping.

Windowsnetwork diagnosticsnetwork troubleshooting
0 likes · 10 min read
Master Traceroute: Step‑by‑Step Guide to Network Path Diagnosis
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.

LinuxNmapconnectivity tools
0 likes · 12 min read
Master Network Connectivity Checks: From ethtool to nmap
Raymond Ops
Raymond Ops
Apr 8, 2025 · Operations

How to Log Dropped iptables Packets for Input and Output Traffic

Learn step‑by‑step how to configure iptables to log all dropped inbound and outbound packets to syslog, including creating a LOGGING chain, setting rate limits, customizing log prefixes, directing logs to a specific file, and interpreting the resulting log entries.

Linuxiptablesnetwork troubleshooting
0 likes · 7 min read
How to Log Dropped iptables Packets for Input and Output Traffic
Raymond Ops
Raymond Ops
Apr 6, 2025 · Operations

Master nslookup on Linux: Install, Query, and Advanced Usage Guide

Learn how to install nslookup on Debian/Ubuntu and CentOS/RHEL, then explore seven practical commands for querying IP addresses, specifying DNS servers, retrieving specific record types, performing reverse lookups, setting search domains, using the set command, and exiting the tool.

Command Linenetwork troubleshootingnslookup
0 likes · 5 min read
Master nslookup on Linux: Install, Query, and Advanced Usage Guide
Raymond Ops
Raymond Ops
Apr 4, 2025 · Operations

Master traceroute on Linux: Install, Commands, and Advanced Options

This guide explains what traceroute does, how to install it on various Linux distributions, and provides detailed command syntax, common and advanced options, practical examples, and important precautions for effective network troubleshooting.

Command LineLinuxnetwork diagnostics
0 likes · 5 min read
Master traceroute on Linux: Install, Commands, and Advanced Options
MaGe Linux Operations
MaGe Linux Operations
Mar 30, 2025 · Operations

Master Network Troubleshooting: A Complete Step‑by‑Step Guide

This article presents a comprehensive, systematic approach to diagnosing and resolving computer network issues, covering essential prerequisites, OSI/TCP‑IP fundamentals, common devices, diagnostic commands for Windows and Linux, and a detailed step‑by‑step troubleshooting workflow illustrated with real‑world examples and diagrams.

TCP/IPWindowsdiagnostic commands
0 likes · 15 min read
Master Network Troubleshooting: A Complete Step‑by‑Step Guide
Raymond Ops
Raymond Ops
Mar 20, 2025 · Operations

Master Linux Traceroute: Install, Use, and Advanced Options Explained

Learn how to install the traceroute utility on Debian/Ubuntu and CentOS/RHEL systems, understand its basic command syntax, explore common and advanced options, and see practical examples for network path tracing, while noting important considerations and usage tips.

Command LineLinuxOperations
0 likes · 6 min read
Master Linux Traceroute: Install, Use, and Advanced Options Explained
Liangxu Linux
Liangxu Linux
Feb 18, 2025 · Operations

Master Windows Network Troubleshooting with PowerShell: 10 Essential Cmdlets

This guide walks you through ten powerful PowerShell cmdlets for diagnosing and fixing Windows network issues, covering ping tests, port checks, traceroutes, IP configuration, DNS queries, TCP connections, DNS settings, cache clearing, DHCP lease management, and network adapter control.

CmdletIT OperationsPowerShell
0 likes · 5 min read
Master Windows Network Troubleshooting with PowerShell: 10 Essential Cmdlets
MaGe Linux Operations
MaGe Linux Operations
Jan 3, 2025 · Operations

Master tcpdump: Essential Commands for Network Troubleshooting and Security

Learn practical tcpdump examples to boost network troubleshooting and security testing, covering common parameters, ASCII output, protocol and IP filtering, file writing, buffering modes, combined filters, and advanced use cases like extracting HTTP headers, detecting port scans, capturing ICMP, DHCP, SNMP, and more.

Linuxnetwork troubleshootingpacket capture
0 likes · 20 min read
Master tcpdump: Essential Commands for Network Troubleshooting and Security
Deepin Linux
Deepin Linux
Dec 16, 2024 · Fundamentals

Understanding Ethernet MAC and PHY Layers: Common Issues and Solutions

This article explains the roles of Ethernet MAC and PHY layers, outlines typical hardware and software problems such as connection faults, power instability, and driver misconfigurations, and provides detailed troubleshooting steps and best‑practice solutions to restore reliable network communication.

EthernetHardwareMII
0 likes · 31 min read
Understanding Ethernet MAC and PHY Layers: Common Issues and Solutions
Liangxu Linux
Liangxu Linux
Nov 30, 2024 · Operations

Why a New PC Can't Access the Internet: Step‑by‑Step DNS Troubleshooting

A client’s newly purchased computer could connect to the corporate network but could not reach the internet; the guide walks through checking the link light, IP configuration, ping tests, identifying a faulty DNS server, switching to public DNS services, and measuring latency to reveal why foreign DNS isn’t always faster.

CloudflareDNSIP Configuration
0 likes · 5 min read
Why a New PC Can't Access the Internet: Step‑by‑Step DNS Troubleshooting
Liangxu Linux
Liangxu Linux
Nov 10, 2024 · Operations

Mastering DNS Queries with nslookup: 10 Essential Commands

This guide walks you through ten practical nslookup commands for retrieving A, NS, SOA, MX, any, server-specific, reverse, PTR, timeout, and debug DNS records, complete with example syntax and screenshots to help you troubleshoot and verify DNS configurations.

A RecordDNSMX
0 likes · 5 min read
Mastering DNS Queries with nslookup: 10 Essential Commands
Efficient Ops
Efficient Ops
Nov 10, 2024 · Operations

How to Diagnose and Fix Common Linux System Failures

This guide walks through typical Linux operational problems—including boot failures, network issues, MBR and GRUB errors, forgotten root passwords, and read‑only file‑system symptoms—explaining their causes, step‑by‑step diagnostic methods, and practical recovery commands to restore a healthy system.

Boot IssuesGRUBLinux
0 likes · 18 min read
How to Diagnose and Fix Common Linux System Failures
Open Source Linux
Open Source Linux
Oct 22, 2024 · Operations

How to Diagnose and Recover Physical Interface DOWN Issues on Huawei Switches

This guide explains how to check interface status, identify hardware or software causes of a physical DOWN state, and follow a step‑by‑step troubleshooting process—including indicator lights, CLI commands, log analysis, media checks, and environmental factors—to restore interfaces to UP on Huawei networking devices.

Huawei switcheshardware failureinterface status
0 likes · 31 min read
How to Diagnose and Recover Physical Interface DOWN Issues on Huawei Switches
Open Source Linux
Open Source Linux
Oct 11, 2024 · Operations

What Went Wrong in a Real-World Network Migration? Lessons Learned

An in‑depth post‑mortem of a flawed network cut‑over project between two merged units, detailing the original design, traffic analysis, OSPF and PBR configurations, step‑by‑step migration procedures, encountered issues, root‑cause investigations, and key takeaways for future network operations.

Network MigrationOSPFcut-over
0 likes · 16 min read
What Went Wrong in a Real-World Network Migration? Lessons Learned
Liangxu Linux
Liangxu Linux
Oct 8, 2024 · Operations

Mastering DNS Lookups with nslookup: 10 Essential Commands

This guide explains how to use the nslookup command to retrieve various DNS records—including A, NS, SOA, MX, any, specific server, reverse, PTR, timeout, and debug information—providing clear examples and command syntax for each query type.

Command LineDNSDNS Records
0 likes · 5 min read
Mastering DNS Lookups with nslookup: 10 Essential Commands
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.

Linux commandsNmapconnectivity testing
0 likes · 15 min read
Master Network Connectivity Checks: Essential Linux Tools & Commands
Efficient Ops
Efficient Ops
Sep 22, 2024 · Operations

How to Diagnose and Fix Common Linux Boot, Network, and File‑System Failures

This guide walks through typical Linux operational problems—including boot failures caused by fstab errors, root‑filesystem corruption, missing kernel files, MBR or GRUB issues, network hardware and configuration faults, DNS mis‑settings, service port problems, forgotten root passwords, and read‑only file‑system errors—providing step‑by‑step troubleshooting methods and command‑line fixes.

GRUBLinuxboot failure
0 likes · 17 min read
How to Diagnose and Fix Common Linux Boot, Network, and File‑System Failures
Liangxu Linux
Liangxu Linux
Sep 16, 2024 · Information Security

Master nslookup on Linux: Install and 7 Essential Commands

This guide shows how to install the nslookup tool on Debian/Ubuntu and CentOS/RHEL systems and provides seven practical usage examples, including querying IP addresses, specifying DNS servers, retrieving specific record types, performing reverse lookups, setting search domains, using the set command, and exiting the interactive mode.

CentOSCommand LineDNS
0 likes · 5 min read
Master nslookup on Linux: Install and 7 Essential Commands
Efficient Ops
Efficient Ops
Aug 12, 2024 · Operations

Why rsync Fails in Unstable Networks and How to Fix It

A series of QA deployment failures caused by rsync errors revealed that network instability, missing timeouts, and zombie processes can break file synchronization, and adding a timeout option together with network diagnostics can mitigate the issue.

deploymentnetwork troubleshootingrsync
0 likes · 13 min read
Why rsync Fails in Unstable Networks and How to Fix It
Liangxu Linux
Liangxu Linux
Jul 17, 2024 · Operations

How to Detect Open UDP Ports with hping3 and netcat on Linux

This guide shows how to set up a Ubuntu server and a CentOS client, install hping3 and netcat, and use them to reliably detect whether specific UDP ports are open or closed, interpreting packet loss, ICMP Port Unreachable, and connection refusal messages.

LinuxUDPhping3
0 likes · 5 min read
How to Detect Open UDP Ports with hping3 and netcat on Linux
IT Services Circle
IT Services Circle
Jun 22, 2024 · Backend Development

Comprehensive Guide to Java Backend Interview Topics: Object Creation, Reflection, Serialization, GC, I/O Multiplexing, and Network Troubleshooting

This article provides an in-depth review of common Java backend interview questions, covering alternative object creation methods, practical reflection scenarios, serialization techniques, garbage‑collection algorithms, I/O multiplexing mechanisms, network port listening, and troubleshooting tips for server‑client communication issues.

Garbage CollectionI/O multiplexingSerialization
0 likes · 24 min read
Comprehensive Guide to Java Backend Interview Topics: Object Creation, Reflection, Serialization, GC, I/O Multiplexing, and Network Troubleshooting
Open Source Linux
Open Source Linux
Jun 17, 2024 · Operations

How to Detect Open UDP Ports with hping3 and netcat (nc)

This guide walks through setting up a Linux server and client, installing hping3 and netcat, and using them to reliably detect whether specific UDP ports are open or closed, including command examples, expected outputs, and troubleshooting tips.

LinuxUDPhping3
0 likes · 5 min read
How to Detect Open UDP Ports with hping3 and netcat (nc)
21CTO
21CTO
May 4, 2024 · Operations

10 Essential Linux Commands for Network Troubleshooting (Examples & Usage)

This guide introduces ten fundamental Linux commands—ping, traceroute, netstat, ifconfig/ip, tcpdump, nslookup/dig, iptables/firewalld, ss, arp, and mtr—explaining their purpose, installation steps, and practical examples to help administrators diagnose and resolve network issues efficiently.

LinuxNetwork Toolsnetwork troubleshooting
0 likes · 16 min read
10 Essential Linux Commands for Network Troubleshooting (Examples & Usage)
Liangxu Linux
Liangxu Linux
Feb 27, 2024 · Operations

How to Diagnose and Fix Port 53 DNS Conflicts on Linux

This guide explains why port 53 is occupied by the systemd‑resolve service, breaks down the UDP and TCP listeners shown by netstat, and provides step‑by‑step commands to stop, reconfigure, and restore DNS resolution on a Linux system.

DNSLinuxnetwork troubleshooting
0 likes · 5 min read
How to Diagnose and Fix Port 53 DNS Conflicts on Linux
Liangxu Linux
Liangxu Linux
Oct 23, 2023 · Fundamentals

Mastering Ping: From Basic Usage to Advanced Batch Techniques

This guide explains the Ping command’s fundamentals, how to interpret its output, advanced switches like -t, -a, -n, -l, -r, and provides practical batch‑ping scripts for testing multiple hosts, helping both beginners and administrators troubleshoot network connectivity efficiently.

Batch ScriptingICMPnetwork troubleshooting
0 likes · 8 min read
Mastering Ping: From Basic Usage to Advanced Batch Techniques
Liangxu Linux
Liangxu Linux
Oct 16, 2023 · Operations

Master Ping: Basics, Advanced Options, and Bulk Scanning Techniques

This guide explains the Ping command’s fundamentals, how to interpret its output, advanced options like -t, -a, -n, -l and -r, and provides batch scripts for pinging multiple hosts, enabling both beginners and administrators to troubleshoot network connectivity efficiently.

Batch ScriptingICMPWindows
0 likes · 8 min read
Master Ping: Basics, Advanced Options, and Bulk Scanning Techniques
Didi Tech
Didi Tech
Oct 10, 2023 · Backend Development

Investigation of 300‑Second Redis Timeout Issues in a Go Service

The article details how a Go service’s 300‑second Redis call timeout was traced to a gateway’s full‑NAT session‑table loss, and explains how targeted retries, proper timeout settings, and rate‑limiting can prevent similar cascading failures in distributed systems.

GatewayGoRedis
0 likes · 9 min read
Investigation of 300‑Second Redis Timeout Issues in a Go Service
MaGe Linux Operations
MaGe Linux Operations
Sep 16, 2023 · Cloud Native

How to Diagnose and Fix Pod Network Issues in Kubernetes Clusters

This article introduces a systematic approach for troubleshooting Kubernetes pod network anomalies, classifies common failure types, presents essential tools such as tcpdump, mtr, nsenter and paping, and walks through real‑world case studies to pinpoint and resolve connectivity problems.

Kubernetescnimtr
0 likes · 26 min read
How to Diagnose and Fix Pod Network Issues in Kubernetes Clusters
dbaplus Community
dbaplus Community
Sep 6, 2023 · Cloud Native

How to Diagnose and Resolve Common Pod Network Issues in Kubernetes

This guide outlines a systematic approach to troubleshooting Kubernetes pod network problems, covering failure models, essential tools like tcpdump, nsenter, paping, and mtr, and detailed case studies that illustrate root cause analysis and remediation steps.

KubernetesMTUPod Connectivity
0 likes · 26 min read
How to Diagnose and Resolve Common Pod Network Issues in Kubernetes
MaGe Linux Operations
MaGe Linux Operations
Sep 2, 2023 · Operations

Master Wireshark: From Basics to Advanced Packet Capture and Filtering

This comprehensive guide walks you through Wireshark fundamentals, common use cases, capture principles, step‑by‑step packet capture examples, interface components, filter configuration, TCP three‑way handshake analysis, and practical tips for effective network troubleshooting and analysis.

FilteringTCP handshakeWireshark
0 likes · 14 min read
Master Wireshark: From Basics to Advanced Packet Capture and Filtering
Selected Java Interview Questions
Selected Java Interview Questions
Sep 1, 2023 · Operations

Traceroute Command: Principles, Options, Usage Examples, and Troubleshooting Cases

This article explains the traceroute command’s working principle, details its many options, provides practical usage examples, and presents two real‑world troubleshooting cases that illustrate how traceroute can locate misconfigurations, asymmetric paths, and routing loops in Linux networks.

diagnosticsnetwork troubleshootingtraceroute
0 likes · 13 min read
Traceroute Command: Principles, Options, Usage Examples, and Troubleshooting Cases
Liangxu Linux
Liangxu Linux
Aug 6, 2023 · Operations

Why Does Your Network Lose Packets? 30+ Troubleshooting Steps Revealed

This article explains the concept of network packet loss, walks through the sending and receiving mechanisms of Ethernet frames, and provides a comprehensive, layer‑by‑layer checklist—including hardware NIC, driver, kernel, IP, TCP/UDP, and application‑level diagnostics—plus concrete Linux commands and configuration tweaks to locate and fix the root cause.

TCPdiagnosticsethtool
0 likes · 36 min read
Why Does Your Network Lose Packets? 30+ Troubleshooting Steps Revealed
Open Source Linux
Open Source Linux
Jul 31, 2023 · Operations

How to Diagnose Kubernetes Pod Network Issues: Tools, Models, and Real-World Cases

This article introduces a systematic approach for troubleshooting Kubernetes pod network problems, covering anomaly classification, essential diagnostic tools such as tcpdump, nsenter, paping and mtr, a step‑by‑step troubleshooting workflow, and detailed case studies that illustrate root‑cause analysis and resolution techniques.

Kubernetescniiptables
0 likes · 27 min read
How to Diagnose Kubernetes Pod Network Issues: Tools, Models, and Real-World Cases
Liangxu Linux
Liangxu Linux
May 30, 2023 · Operations

Master Linux Network Management with the Powerful ‘ip’ Command

This guide explains how to use the Linux ‘ip’ command to view current network settings, configure IP addresses, gateways, DNS, interface states, and perform common troubleshooting tasks such as checking link status, traffic statistics, routing tables, and active IP assignments.

Linux commandsNetworkingip command
0 likes · 5 min read
Master Linux Network Management with the Powerful ‘ip’ Command
DeWu Technology
DeWu Technology
May 19, 2023 · Operations

Investigation and Resolution of In‑flight Wi‑Fi Connectivity Issues for a Mobile E‑Commerce App

The SRE team diagnosed an in‑flight Wi‑Fi outage for the DeWu e‑commerce app by reproducing the problem, capturing packets with ping, traceroute and tcpdump, discovered a firewall rule misclassifying the domain as a download site, and resolved it through a vendor‑issued policy update, restoring connectivity on both ATG and SATCOM links.

SRETCPWiFi
0 likes · 18 min read
Investigation and Resolution of In‑flight Wi‑Fi Connectivity Issues for a Mobile E‑Commerce App
Open Source Linux
Open Source Linux
May 8, 2023 · Operations

Why UDP Fails in Docker Bridge Networks and How to Fix It

This article explains why a UDP service listening on 0.0.0.0 inside a Docker bridge network becomes unreachable, analyzes packet captures and kernel routing behavior, and provides practical solutions such as using TCP, binding to a specific interface, or enabling IP_PKTINFO on the socket.

DockerIP_PKTINFOLinux
0 likes · 16 min read
Why UDP Fails in Docker Bridge Networks and How to Fix It
MaGe Linux Operations
MaGe Linux Operations
Apr 15, 2023 · Operations

How to Diagnose and Fix Network Packet Loss in Nginx on Linux

This guide walks through identifying severe packet loss affecting Nginx, using hping3, netstat, ethtool, iptables, and tcpdump, then resolves the issue by removing a faulty netem rule and correcting an MTU misconfiguration, ultimately restoring normal HTTP responses.

MTUiptablesnetwork troubleshooting
0 likes · 19 min read
How to Diagnose and Fix Network Packet Loss in Nginx on Linux
Liangxu Linux
Liangxu Linux
Mar 12, 2023 · Operations

How to Batch Ping Multiple Hosts Efficiently on Windows

Learn step‑by‑step Windows batch commands to ping entire subnets, capture reachable and unreachable IPs into separate files, and handle multiple IP lists, enabling fast network health checks for dozens to thousands of devices.

AutomationIP scanningWindows cmd
0 likes · 6 min read
How to Batch Ping Multiple Hosts Efficiently on Windows
Liangxu Linux
Liangxu Linux
Mar 4, 2023 · Operations

Master Linux Traceroute: 12 Powerful Commands to Diagnose Network Paths

Learn how to install and leverage the Linux traceroute utility with 12 practical examples, covering basic usage, timeout adjustments, packet count, hop limits, TTL settings, disabling hostname resolution, custom ports, packet size, IPv4/IPv6 tracing, ICMP mode, and output saving for effective network diagnostics.

Command LineLinuxnetwork diagnostics
0 likes · 10 min read
Master Linux Traceroute: 12 Powerful Commands to Diagnose Network Paths
Liangxu Linux
Liangxu Linux
Sep 18, 2022 · Fundamentals

How Does the Ping Command Really Work? A Deep Dive with Wireshark

This article explains the inner workings of the ping command by capturing and analyzing ICMP and ARP traffic with Wireshark, detailing the protocol basics, packet formats, ARP caching behavior, and how to interpret latency measurements for accurate network troubleshooting.

ICMPWiresharkarp
0 likes · 6 min read
How Does the Ping Command Really Work? A Deep Dive with Wireshark