Finding Which Processes Are Using Specific Ports on Windows
To determine which processes are using specific network ports on a Windows system, you can use built-in command-line tools. This guide demonstrates how to identify port usage and associate it with running applications.
Using Command Prompt
Launch Command Prompt by perssing Win+R, typing "cmd", and pressing Enter.
Display Network Conne ...
Posted on Tue, 22 Sep 2026 16:23:16 +0000 by walkero
Daily Network Device Inspection Command Reference for Cisco & H3C Hardware
Cisco Catalyst & Integrated Services Router Checks
Core System & Inventory Overview
transport preferred ssh
terminal no length
display running-config! Displays full active device configuration
show inventory! Displays system diagnostic details
show module status
show env temp
show env fan
show env power
show processes cpu sorted 1min
sh ...
Posted on Fri, 18 Sep 2026 16:39:49 +0000 by jkohns
Go Programming Pitfalls and Networking Solutions
Private IP Address Ranges
RFC 1918 defines three IP address blocks reserved for private networks:
Class A: 10.0.0.0 – 10.255.255.255
Class B: 172.16.0.0 – 172.31.255.255
Class C: 192.168.0.0 – 192.168.255.255
These addresses are not routable on the public internet and can be used internally without ISP registration.
Docker Networking Issues
A ...
Posted on Mon, 14 Sep 2026 16:35:29 +0000 by Mikedean
Linux Virtual Server (LVS) Overview and Implementation
Basic Concepts
Load balancing solutions encompass various approaches including DNS-based domain rotation, client-side load distribution, application-layer load balancing, and IP address-based scheduling. This document focuses on LVS, a layer-4 load balancer built upon transport protocols like TCP/UDP. LVS stands for Linux Virtual Server, repres ...
Posted on Sun, 13 Sep 2026 16:45:37 +0000 by immunity
Extracting Protocol and Domain from a URL in Java
The java.net.URL class can parse a URL string and expose its components. To obtain the portocol and host, create a URL instanec and call getProtocol() and getHost().
import java.net.URL;
public class UrlParser {
public static void main(String[] args) throws Exception {
URL endpoint = new URL("https://docs.oracle.com/en/java/&q ...
Posted on Thu, 10 Sep 2026 16:47:59 +0000 by fry2010
Setting Up a PPPoE Server on Ubuntu
Setting Up a PPPoE Server on Ubuntu
Environment
Tested on:
Ubuntu 14.04 32-bit
Ubuntu 16.04 64-bit
Ubuntu 20.04 64-bit
Package Installation
sudo apt-get update
sudo apt-get install pppoe-server
sudo apt-get install pppoe
Configuration Files
/etc/ppp/options
sudo vim /etc/ppp/options
Configuration content:
ms-dns 8.8.8.8
ms-dns 8.8.4.4
async ...
Posted on Thu, 10 Sep 2026 16:00:56 +0000 by sigmon
Implementing TCP/IP Network Communication with Qt C++
TCP and UDP Protocols
TCP (Transmission Control Protocol) is a connection-oriented transport layer protocol that ensures reliable communication. It guarantees data integrity, preventing loss, disorder, duplication, or corruption during transmission.
Typical use cases for TCP include:
User authentication and session management in applications l ...
Posted on Tue, 08 Sep 2026 16:31:36 +0000 by alecodonnell
Exposing and Mapping Multiple Ports in Docker
In Docker, network communication between a container and the host system is managed through port mapping. This allows external traffic to reach specific services running inside a containerized environment.\n\n### Port Mapping Fundamentals\nThe primary way to map ports is during the execution of a container using the -p (or --publish) flag. This ...
Posted on Tue, 01 Sep 2026 16:50:26 +0000 by Ambush Commander
Kubernetes Network Request Routing Lifecycle
DNS Resolution PhaseWhen a client attempts to reach a domain like app.example.com, it first queries a DNS server. The resolution yields different results based on the service exposure strategy:External IP (e.g., 198.51.100.10): Returned when the application is exposed externally via a LoadBalancer or an Ingress resource.Cluster-internal IP (e.g ...
Posted on Tue, 25 Aug 2026 16:32:43 +0000 by AndyMoore
Deep Dive into WCF Channel Architecture and Binding Mechanisms
WCF Channel Architecture OverviewIn Service-Oriented Architecture (SOA) implementations, message passing between clients and services is a critical component. The Windows Communication Foundation (WCF) abstraction treats the communicating endpoint as a remote entity, regardless of whether it resides in the same process or across a different net ...
Posted on Mon, 24 Aug 2026 16:05:41 +0000 by the_lynx123