Tag

network troubleshooting

0 views collected around this technical thread.

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
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
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.

Linuxfirewalliptables
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.

DNSLinuxcommand line
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.

Linuxcommand linenetwork diagnostics
0 likes · 5 min read
Master traceroute on Linux: Install, Commands, and Advanced Options
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.

LinuxOperationscommand line
0 likes · 6 min read
Master Linux Traceroute: Install, Use, and Advanced Options Explained
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.

DriverEthernetHardware
0 likes · 31 min read
Understanding Ethernet MAC and PHY Layers: Common Issues and Solutions
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.

GRUBLinuxMBR
0 likes · 18 min read
How to Diagnose and Fix Common Linux System Failures
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
Aikesheng Open Source Community
Aikesheng Open Source Community
Sep 5, 2024 · Databases

Analyzing and Resolving OceanBase Connection Timeout via OBProxy Logs and Packet Capture

This article walks through a production‑level OceanBase connection‑timeout incident, detailing how to examine OBProxy logs, capture and analyze network packets with tcpdump and Wireshark, identify a blocked random port, and apply kernel‑parameter fixes to prevent the issue.

LinuxOBproxyOceanBase
0 likes · 10 min read
Analyzing and Resolving OceanBase Connection Timeout via OBProxy Logs and Packet Capture
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.

DeploymentDevOpsOperations
0 likes · 13 min read
Why rsync Fails in Unstable Networks and How to Fix It
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.

Backend InterviewGarbage CollectionI/O multiplexing
0 likes · 24 min read
Comprehensive Guide to Java Backend Interview Topics: Object Creation, Reflection, Serialization, GC, I/O Multiplexing, and Network Troubleshooting
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.

GoRedisRetry
0 likes · 9 min read
Investigation of 300‑Second Redis Timeout Issues in a Go Service
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.

DiagnosticsLinuxOperations
0 likes · 13 min read
Traceroute Command: Principles, Options, Usage Examples, and Troubleshooting Cases
Efficient Ops
Efficient Ops
Jul 9, 2023 · Cloud Native

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 common failure models, essential diagnostic tools such as tcpdump, nsenter, paping and mtr, and detailed case studies that illustrate step‑by‑step analysis and resolution techniques.

CNIKubernetesPod
0 likes · 28 min read
How to Diagnose Kubernetes Pod Network Issues: Tools, Models, and Real‑World Cases
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
Efficient Ops
Efficient Ops
Mar 29, 2023 · Cloud Native

Mastering Kubernetes Pod Network Troubleshooting: Models, Tools, and Real‑World Cases

This article introduces a systematic approach to diagnosing Kubernetes pod network issues, classifies common failure types, presents essential tools such as tcpdump, nsenter, paping and mtr, outlines a step‑by‑step troubleshooting workflow, and walks through several real‑world case studies to illustrate the process.

CNIKubernetesiptables
0 likes · 24 min read
Mastering Kubernetes Pod Network Troubleshooting: Models, Tools, and Real‑World Cases
Efficient Ops
Efficient Ops
Jul 18, 2022 · Operations

When Core Switches Fail: A Network Engineer’s Close Call and Lessons Learned

A network engineer recounts a terrifying core switch outage caused by an SSD firmware bug, describes the emergency troubleshooting steps, the eventual fix through firmware upgrade, and urges manufacturers to adopt recall mechanisms for critical network equipment.

OperationsSSD firmware bugcore switch failure
0 likes · 9 min read
When Core Switches Fail: A Network Engineer’s Close Call and Lessons Learned
Efficient Ops
Efficient Ops
Jul 18, 2022 · Fundamentals

Mastering TCP: Decode Every Connection State and Diagnose Network Issues

This article explains TCP connection states, common Linux network commands, the three‑way handshake, four‑way termination, simultaneous open/close, flag meanings, and practical troubleshooting techniques such as keep‑alive and error handling, providing a comprehensive guide for network engineers.

LinuxSocket StatesTCP
0 likes · 31 min read
Mastering TCP: Decode Every Connection State and Diagnose Network Issues