Tag

ping

0 views collected around this technical thread.

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
Wukong Talks Architecture
Wukong Talks Architecture
Jul 25, 2024 · Fundamentals

Debugging APP Load Failures: MTU/MSS Analysis with Wireshark

This article walks through a real‑world case where an app’s content loading fails due to MTU/MSS mismatches, explains how packet captures reveal retransmissions and missing ACKs, demonstrates ping‑based MTU probing, and shows how oversized request parameters in a new version caused the issue.

MSSMTUTCP
0 likes · 5 min read
Debugging APP Load Failures: MTU/MSS Analysis with Wireshark
Bilibili Tech
Bilibili Tech
Jul 23, 2024 · Operations

Network Troubleshooting: MTU/MSS Issues and Packet Capture Analysis

The investigation used Wireshark captures to uncover that a new app version sent oversized TCP segments—due to altered MSS and path‑MTU mismatch—causing unacknowledged retransmissions, which were diagnosed with ping‑do‑not‑fragment tests and resolved by trimming the request parameters and confirming via TLS key logging.

MSSMTUWireshark
0 likes · 7 min read
Network Troubleshooting: MTU/MSS Issues and Packet Capture Analysis
Java Tech Enthusiast
Java Tech Enthusiast
Apr 5, 2024 · Fundamentals

Understanding Loopback Addresses, Ping, and Why 127.0.0.1 Works Offline

The IPv4 loopback address 127.0.0.1 (also reachable via the hostname localhost) is reserved for internal communication, so pinging it never leaves the host and works even with the network cable unplugged, while 0.0.0.0 is an unspecified address used only for binding to all interfaces and cannot be pinged.

IPIPv4IPv6
0 likes · 13 min read
Understanding Loopback Addresses, Ping, and Why 127.0.0.1 Works Offline
Test Development Learning Exchange
Test Development Learning Exchange
Jun 25, 2023 · Operations

Building a Simple Network Monitoring Tool with Python and ping3

This tutorial explains how to develop a lightweight Python network monitoring utility using the ping3 library to send ICMP echo requests, measure latency, handle errors, and extend the script for batch pinging, timeout configuration, result logging, and packet‑loss calculation.

Operationsnetwork monitoringping
0 likes · 7 min read
Building a Simple Network Monitoring Tool with Python and ping3
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
Architect's Guide
Architect's Guide
Dec 27, 2022 · Fundamentals

Methods for Measuring Network Latency Across TCP/IP Layers

This article reviews various techniques for detecting network latency at each TCP/IP layer, including application‑layer tools like Telnet, transport‑layer utilities such as TCPPing, UDPPing and Tcproute, network‑layer protocols like ICMP with Ping and Tracert, and hardware‑based measurements at the link layer.

MTRTCP/IPnetwork latency
0 likes · 4 min read
Methods for Measuring Network Latency Across TCP/IP Layers
Python Programming Learning Circle
Python Programming Learning Circle
Nov 29, 2022 · Operations

Comprehensive Guide to Using the ping Command and Its Options

This article provides a comprehensive overview of the ping command, explaining its basic usage, interpreting output fields such as bytes, time, and TTL, and detailing advanced options like -t, -a, -n, -l, -r, as well as batch ping techniques for network troubleshooting.

LinuxTroubleshootingcommand-line
0 likes · 6 min read
Comprehensive Guide to Using the ping Command and Its Options
Laravel Tech Community
Laravel Tech Community
Jun 26, 2022 · Operations

Comprehensive Guide to Using the Ping Command and Its Advanced Options

This article explains the fundamentals of the ping utility, detailing its basic output fields, interpreting bytes, time, and TTL values, and demonstrates advanced switches such as -t, -a, -n, -l, -r, as well as batch ping techniques for network troubleshooting.

LinuxTCP/IPTroubleshooting
0 likes · 6 min read
Comprehensive Guide to Using the Ping Command and Its Advanced Options
Python Programming Learning Circle
Python Programming Learning Circle
Jun 16, 2022 · Backend Development

Python Script to Keep Campus Network Connection Alive

This article explains how to use a Python script that continuously pings an external address and automatically logs into a campus web authentication portal via HTTP POST when the connection drops, ensuring the computer stays online for remote access, and provides the full source code and setup instructions.

Base64Campus WiFiHTTP POST
0 likes · 4 min read
Python Script to Keep Campus Network Connection Alive
Efficient Ops
Efficient Ops
Jun 5, 2022 · Operations

Master Network Diagnostics with MTR: Install, Run, and Analyze Results

This guide explains what the MTR tool is, how to install it on Windows, Linux, macOS, and Android, demonstrates basic commands, details key parameters, and shows how to interpret loss, latency, and other metrics to troubleshoot network connectivity issues.

LinuxMTRnetwork diagnostics
0 likes · 10 min read
Master Network Diagnostics with MTR: Install, Run, and Analyze Results
Efficient Ops
Efficient Ops
Jul 28, 2021 · Operations

Master Network Troubleshooting with MTR: Install, Use, and Analyze Results

Learn how to install and use the powerful MTR network diagnostic tool across Windows, Linux, macOS, and Android, understand its combined ping/traceroute output, master key command-line options, and interpret loss, latency, and stability metrics to effectively troubleshoot connectivity issues.

LinuxMTRTroubleshooting
0 likes · 10 min read
Master Network Troubleshooting with MTR: Install, Use, and Analyze Results
Python Programming Learning Circle
Python Programming Learning Circle
Jun 16, 2021 · Operations

Python Script for Bulk Ping Testing of Multiple Hosts

This article demonstrates how to use a Python script to perform batch ICMP ping tests across dozens or hundreds of network devices, providing a reusable Pinger class, detailed code, and usage examples for efficient network health monitoring.

AutomationICMPNetwork
0 likes · 7 min read
Python Script for Bulk Ping Testing of Multiple Hosts
php中文网 Courses
php中文网 Courses
Apr 2, 2021 · Backend Development

Implementing Ping Using ICMP Raw Sockets in PHP

This tutorial explains how to use PHP's raw socket functions to construct and send an ICMP echo request packet, calculate its checksum, receive the reply, and wrap the logic into a reusable ping($host, $retry) function for backend network diagnostics.

ICMPnetwork programmingping
0 likes · 6 min read
Implementing Ping Using ICMP Raw Sockets in PHP
php中文网 Courses
php中文网 Courses
Nov 17, 2020 · Operations

Linux Network Troubleshooting: Using ping, traceroute, nslookup, netstat, and telnet

This article explains how to diagnose Linux server network problems using common tools such as ping, a shell script for LAN scanning, traceroute, nslookup, netstat, and telnet, providing command syntax, example outputs, and guidance on interpreting results.

Linuxnetstatnetwork troubleshooting
0 likes · 7 min read
Linux Network Troubleshooting: Using ping, traceroute, nslookup, netstat, and telnet
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.

ARPICMPWireshark
0 likes · 8 min read
Unveiling the Ping Command: How ICMP and ARP Work Together
JD Tech Talk
JD Tech Talk
Aug 28, 2019 · Fundamentals

Understanding ARP and ICMP Protocols: Principles and Packet Analysis

This article explains the fundamentals of the ARP (Address Resolution Protocol) and ICMP (Internet Control Message Protocol), describing how they operate in LAN environments, detailing their packet structures, and illustrating their practical use through ping and tracert commands with packet capture analysis.

ARPICMPnetwork protocols
0 likes · 7 min read
Understanding ARP and ICMP Protocols: Principles and Packet Analysis
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.

IT OperationsOSI modelTCP/IP
0 likes · 17 min read
Master Network Troubleshooting: A Step‑by‑Step Guide for IT Professionals