Tagged articles
159 articles
Page 2 of 2
ByteFE
ByteFE
Oct 20, 2021 · Operations

Troubleshooting DNS Resolution Failure of goofy.app in Singapore Office Due to DNSSEC Misconfiguration

After users in Singapore reported inability to resolve the internal domain goofy.app, a systematic investigation revealed that DNSSEC misconfiguration—specifically an incorrect DS record—caused DNS resolution failures globally, while Chinese DNS servers succeeded due to disabled DNSSEC validation, and removing the faulty key resolved the issue.

DNSSECDomain ResolutionOperations
0 likes · 8 min read
Troubleshooting DNS Resolution Failure of goofy.app in Singapore Office Due to DNSSEC Misconfiguration
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
Liangxu Linux
Liangxu Linux
Apr 26, 2021 · Operations

How to Diagnose and Fix Network Packet Loss on Linux Servers

This article explains the common causes of network packet loss on Linux, walks through the packet transmission process, outlines a layer‑by‑layer troubleshooting framework, and provides concrete commands, configuration tweaks, and hardware checks to identify and resolve loss at the NIC, driver, kernel, IP, TCP, UDP, and application layers.

LinuxPacket LossTCP/IP
0 likes · 36 min read
How to Diagnose and Fix Network Packet Loss on Linux Servers
Aikesheng Open Source Community
Aikesheng Open Source Community
Mar 22, 2021 · Databases

Understanding and Testing the MHA masterha_secondary_check Script for MySQL Network Fault Tolerance

This article explains the purpose, usage, and return codes of the MHA masterha_secondary_check Perl script, demonstrates how to simulate network failures with iptables, and presents a series of tests that verify the script’s ability to detect master reachability and handle various error conditions.

MHAmasterha_secondary_checkmysql
0 likes · 6 min read
Understanding and Testing the MHA masterha_secondary_check Script for MySQL Network Fault Tolerance
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
Mar 12, 2021 · Fundamentals

How Does the ping Command Really Work? Unveiling ICMP Basics

This article explains the ping command’s purpose and inner workings by detailing the ICMP protocol, its message formats, query and error types, the step‑by‑step packet flow between hosts, and how to enable ICMP in cloud security groups for reliable network testing.

ICMPcloud security groupsnetwork fundamentals
0 likes · 7 min read
How Does the ping Command Really Work? Unveiling ICMP Basics
Open Source Linux
Open Source Linux
Mar 12, 2021 · Fundamentals

How Does Ping Work? A Step-by-Step Walkthrough of ICMP and ARP

This article explains the Ping utility’s operation by detailing how ICMP echo requests travel through the network stack, how ARP resolves MAC addresses, and how routers and switches forward packets, using a concrete PC‑to‑PC example to illustrate each step.

ARPICMPTCP/IP
0 likes · 7 min read
How Does Ping Work? A Step-by-Step Walkthrough of ICMP and ARP
Liangxu Linux
Liangxu Linux
Mar 7, 2021 · Operations

Master Network Troubleshooting: A Step‑by‑Step Guide for Every Engineer

This comprehensive guide walks you through essential network troubleshooting fundamentals—from OSI and TCP/IP basics and common equipment, to systematic checks of physical links, IP/DNS settings, gateway connectivity, external ping tests, and DNS validation—empowering you to quickly isolate and resolve connectivity issues.

LinuxOSI modelTCP/IP
0 likes · 12 min read
Master Network Troubleshooting: A Step‑by‑Step Guide for Every Engineer
Liangxu Linux
Liangxu Linux
Feb 8, 2021 · Operations

8 Common Network Faults and Quick Fixes for Switches, Hubs, and IP Conflicts

These eight network troubleshooting cases cover issues such as a newly powered switch failing to forward traffic, a 5‑port switch using only four ports, persistent COL‑light collisions, gigabit upgrade instability, slow link speeds from broadcast storms, Windows file‑sharing permission problems, hub‑router connectivity failures, and IP address conflicts, each with analysis and practical solutions.

IP conflictPortFastSTP
0 likes · 14 min read
8 Common Network Faults and Quick Fixes for Switches, Hubs, and IP Conflicts
Efficient Ops
Efficient Ops
Jan 25, 2021 · Operations

8 Common Network Faults: Diagnosis and Quick Fixes

This article walks through eight typical LAN problems—from switches that stay silent after power‑on to IP address conflicts—explaining their symptoms, root causes, and practical solutions such as enabling PortFast, upgrading cabling, or adjusting STP settings.

IP conflictLAN cablingPortFast
0 likes · 14 min read
8 Common Network Faults: Diagnosis and Quick Fixes
Liangxu Linux
Liangxu Linux
Oct 15, 2020 · Operations

Top 16 Essential Tools Every Network Engineer Should Master

A comprehensive guide lists sixteen indispensable network troubleshooting utilities—from classic commands like Ping and Traceroute to advanced platforms such as Nmap, Wireshark, and OpenVAS—explaining their core functions, typical use cases, and how they help engineers quickly pinpoint and resolve connectivity issues.

OperationsWiresharknetwork troubleshooting
0 likes · 9 min read
Top 16 Essential Tools Every Network Engineer Should Master
Efficient Ops
Efficient Ops
Jul 14, 2020 · Operations

Why Enabling tcp_tw_recycle Can Crash Your Web Service and How to Fix It

This article explains how an unstable response time caused by misconfigured public load balancers and the kernel parameters net.ipv4.tcp_tw_recycle and net.ipv4.tcp_tw_reuse led to frequent monitoring alerts, details the diagnostic steps taken, and provides concrete remediation recommendations.

Kernel TuningLoad BalancerTIME-WAIT
0 likes · 19 min read
Why Enabling tcp_tw_recycle Can Crash Your Web Service and How to Fix It
Efficient Ops
Efficient Ops
Jun 21, 2020 · Operations

How to Simulate Real-World Network Conditions with Linux Netem and tc

This guide explains how to use Linux's Netem module via the tc command to emulate network conditions such as delay, loss, duplication, corruption, and packet reordering, providing practical examples and command syntax for effective testing and troubleshooting of network performance issues.

Linuxnetemnetwork simulation
0 likes · 8 min read
How to Simulate Real-World Network Conditions with Linux Netem and tc
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
360 Quality & Efficiency
360 Quality & Efficiency
Apr 24, 2020 · Backend Development

Root Cause Analysis of Connection Reset by Peer in a Go Backend Service

This article details a production incident where a Go backend service returned "connection reset by peer" due to exhausted process file descriptors caused by a saturated database connection pool, and describes the step‑by‑step troubleshooting, socket internals, and the eventual fix.

Connection ResetDatabase Connection PoolGo
0 likes · 14 min read
Root Cause Analysis of Connection Reset by Peer in a Go Backend Service
Liangxu Linux
Liangxu Linux
Mar 24, 2020 · Fundamentals

Mastering the Ping Command: Essential Options and Practical Examples

This guide explains the core functions of the ping utility, details each common option such as -t, -a, -n, -l, and -r, demonstrates how to interpret bytes, time and TTL values, and shows practical batch‑ping techniques for network troubleshooting.

TCP/IPWindowsnetwork troubleshooting
0 likes · 7 min read
Mastering the Ping Command: Essential Options and Practical Examples
ITPUB
ITPUB
Feb 25, 2020 · Fundamentals

Mastering the Ping Command: Advanced Options and Real‑World Use Cases

This guide explains the ping utility’s core functions, interprets its output fields such as bytes, time and TTL, and walks through essential options like -t, -a, -n, -l, -r, plus a batch‑ping technique for scanning entire subnets, helping readers troubleshoot and analyze network performance effectively.

LinuxTCP/IPWindows
0 likes · 7 min read
Mastering the Ping Command: Advanced Options and Real‑World Use Cases
Liangxu Linux
Liangxu Linux
Feb 23, 2020 · Operations

Mastering the Ping Command: Advanced Options and Real‑World Use Cases

This guide explains the fundamentals of the ping utility, interprets its output fields such as bytes, time and TTL, and walks through advanced switches like -t, -a, -n, -l, -r, plus batch‑ping techniques for comprehensive network diagnostics.

Windowsbatch scriptingnetwork troubleshooting
0 likes · 7 min read
Mastering the Ping Command: Advanced Options and Real‑World Use Cases
UCloud Tech
UCloud Tech
Oct 21, 2019 · Cloud Computing

How BigBrother Enables Scalable Full‑Link Network Connectivity Checks in Hybrid Cloud

BigBrother is a large‑scale internal network connectivity detection system that uses TCP packet coloring to separate probe traffic from user traffic, supports physical and hybrid cloud scenarios, provides a complete detection framework for rapid fault localization, and has been proven in thousands of host migrations with near‑real‑time alerts.

cloud connectivitylarge‑scale detectionnetwork troubleshooting
0 likes · 16 min read
How BigBrother Enables Scalable Full‑Link Network Connectivity Checks in Hybrid Cloud
Efficient Ops
Efficient Ops
Aug 29, 2019 · Fundamentals

Unveiling the Ping Command: How ICMP and ARP Work Together

This article walks through the complete ping process, from setting up a Wireshark capture on two PCs to dissecting ICMP and ARP packets, explaining how ping uses ICMP, how ARP resolves MAC addresses, and why ARP caching affects subsequent ping measurements.

ARPICMPPacket Capture
0 likes · 8 min read
Unveiling the Ping Command: How ICMP and ARP Work Together
Efficient Ops
Efficient Ops
May 22, 2019 · Operations

Master Network Troubleshooting: A Step‑by‑Step Guide for IT Professionals

This comprehensive guide walks IT engineers through essential network‑troubleshooting fundamentals—covering OSI/TCP‑IP basics, device roles, common commands, and a systematic, data‑flow‑focused workflow—to quickly pinpoint and resolve connectivity issues in small‑to‑medium enterprise environments.

OSI modelTCP/IPnetwork troubleshooting
0 likes · 17 min read
Master Network Troubleshooting: A Step‑by‑Step Guide for IT Professionals
UCloud Tech
UCloud Tech
Feb 1, 2019 · Backend Development

Why a Zero‑Byte Packet Stopped a High‑Speed Load Balancer and How It Was Fixed

This article details the discovery, analysis, and resolution of a DPDK bug that caused a zero‑byte IP fragment to fill transmission queues, leading to packet loss and tx‑hang in UCloud's high‑availability ULB4 load balancer, and shares the tools and lessons learned for future debugging.

DPDKnetwork troubleshootingpacket debugging
0 likes · 12 min read
Why a Zero‑Byte Packet Stopped a High‑Speed Load Balancer and How It Was Fixed
Efficient Ops
Efficient Ops
Oct 24, 2018 · Operations

7 Common Switch Troubleshooting Scenarios and How to Fix Them

This guide outlines seven typical switch networking problems—from delayed port activation and unused ports to broadcast storms and IP conflicts—explaining their symptoms, root causes, and step‑by‑step solutions for reliable network operation.

IP conflictPortFastSTP
0 likes · 13 min read
7 Common Switch Troubleshooting Scenarios and How to Fix Them
ITPUB
ITPUB
Sep 28, 2018 · Fundamentals

How Does the Ping Command Work? A Deep Dive into ICMP Mechanics

This article explains the purpose and inner workings of the ping command, detailing how ICMP echo requests and replies are constructed, transmitted across network layers, and how related tools like traceroute leverage ICMP error messages to diagnose connectivity.

ICMPTCP/IPconnectivity
0 likes · 8 min read
How Does the Ping Command Work? A Deep Dive into ICMP Mechanics
Efficient Ops
Efficient Ops
Aug 15, 2018 · Operations

Why Multi‑Threaded Downloads Spike Bandwidth and How to Diagnose Them

This article examines a real‑world case where a client’s multi‑threaded download caused sudden internet‑outbound bandwidth congestion, details the packet‑level investigation that revealed partial HTTP requests, explains the underlying network traffic analysis architecture, and outlines how automated monitoring and alerts improve operations efficiency.

Operationsbandwidth monitoringmulti-threaded download
0 likes · 10 min read
Why Multi‑Threaded Downloads Spike Bandwidth and How to Diagnose Them
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
Efficient Ops
Efficient Ops
May 13, 2018 · Operations

Diagnosing and Fixing TCP SYN Queue Overflows that Crash E‑commerce Sites

This article walks through a real‑world incident where an e‑commerce site suffered intermittent outages due to TCP SYN and accept queue overflows, explains the underlying handshake mechanics, shows how kernel and Nginx parameters can be tuned, and provides Python scripts for testing and SYN‑flood simulation.

SYN FloodTCPbackend operations
0 likes · 9 min read
Diagnosing and Fixing TCP SYN Queue Overflows that Crash E‑commerce Sites
MaGe Linux Operations
MaGe Linux Operations
Mar 13, 2017 · Information Security

How I Detected and Eradicated a Linux Rootkit on My Home Network

After a sudden network outage, the author discovers a Linux virtual machine consuming all upstream bandwidth, uncovers a hidden rootkit through process inspection, and documents step‑by‑step methods—including disabling the NIC, using strace, and forcibly removing malicious binaries—to remediate the infection.

CentOSRootkitnetwork troubleshooting
0 likes · 7 min read
How I Detected and Eradicated a Linux Rootkit on My Home Network
ITPUB
ITPUB
Nov 9, 2016 · Operations

How to Resolve Synology DDNS Failures with Dual‑PPPoE and IPSec VPN on vSRX

This guide explains why Synology DSM DDNS stops working when an IPSec VPN default route is active, and provides step‑by‑step commands to add a pp0.0 nexthop and static routes for DDNS‑related subnets so the service remains reliable under both VPN and non‑VPN conditions.

DDNSIPSecPPPoE
0 likes · 6 min read
How to Resolve Synology DDNS Failures with Dual‑PPPoE and IPSec VPN on vSRX
360 Zhihui Cloud Developer
360 Zhihui Cloud Developer
Sep 8, 2016 · Operations

How to Diagnose App “Unavailable” Issues with Ping&DNS: A Step‑by‑Step Guide

This article walks readers through practical techniques for identifying and resolving common “unavailable” app problems—such as white screens, slow loading, or error codes—by using the lightweight Ping&DNS Android tool to check domain names, IP connectivity, DNS resolution, and traceroute data, empowering both novice users and professionals.

DNSOperationsmobile app
0 likes · 8 min read
How to Diagnose App “Unavailable” Issues with Ping&DNS: A Step‑by‑Step Guide
Efficient Ops
Efficient Ops
Jul 3, 2016 · Operations

Memory Myths, Subnet Mask Mistakes, and Telnet Tricks: Ops Lessons

This article shares real‑world ops stories about a disputed memory upgrade, explains how Linux calculates usable memory, clarifies common subnet‑mask misunderstandings, and demonstrates why Telnet cannot test UDP ports, highlighting practical troubleshooting lessons for system administrators.

Linux MemoryOperationsSubnet Mask
0 likes · 12 min read
Memory Myths, Subnet Mask Mistakes, and Telnet Tricks: Ops Lessons
MaGe Linux Operations
MaGe Linux Operations
Jun 13, 2016 · Operations

8 Essential Steps to Diagnose Slow Network Performance in Data Centers

When a data center experiences sluggish network speeds despite connectivity, a systematic approach—checking device CPU usage, reviewing logs, using ping, verifying duplex settings, inspecting cables and modules, monitoring port status, conducting comparative tests, and scanning for malware—can pinpoint and resolve the underlying issues.

CPU Monitoringdata center operationsnetwork troubleshooting
0 likes · 7 min read
8 Essential Steps to Diagnose Slow Network Performance in Data Centers
Efficient Ops
Efficient Ops
May 17, 2016 · Operations

When a Single Cable Crashes a Network: Real Ops Incident Lessons

This article recounts two real‑world operations incidents—a network outage caused by an improperly configured portfast on a trunk link and an NFS failure that crippled an API service—then distills practical lessons on pre‑incident procedures, monitoring, fault handling, recovery, and post‑mortem practices.

ITILNFSOperations
0 likes · 11 min read
When a Single Cable Crashes a Network: Real Ops Incident Lessons
ITPUB
ITPUB
Mar 14, 2016 · Information Security

How to Diagnose and Remove Hidden Malware Causing Network Flood on a Linux Server

A step‑by‑step guide shows how to identify abnormal NIC traffic, locate malicious init scripts and hidden processes, use simple shell scripts and netstat to pinpoint the offending connection, and clean a compromised Linux server to restore normal network performance.

LinuxSecuritySystem Hardening
0 likes · 10 min read
How to Diagnose and Remove Hidden Malware Causing Network Flood on a Linux Server
MaGe Linux Operations
MaGe Linux Operations
Aug 18, 2015 · Operations

Mastering dig: Essential DNS Query Techniques and Options

This guide introduces the dig command, explains its basic usage, advanced options, query types, TCP mode, domain defaults, trace functionality, and output simplification, providing practical examples for effective DNS troubleshooting and analysis.

DNSLinuxcommand-line
0 likes · 10 min read
Mastering dig: Essential DNS Query Techniques and Options
MaGe Linux Operations
MaGe Linux Operations
Jun 23, 2014 · Operations

How to Detect IP Address Conflicts with arp‑scan on Linux

This guide explains why IP address conflicts happen, how the arp‑scan tool works to discover duplicate IP assignments on a local network, and provides step‑by‑step commands for installing and running arp‑scan on Ubuntu/Debian and Fedora/CentOS/RedHat systems.

DHCPIP conflictLinux
0 likes · 3 min read
How to Detect IP Address Conflicts with arp‑scan on Linux