From 4f6703803ebe1d1d6e0098cfd48665d67111aa3b Mon Sep 17 00:00:00 2001 From: Roger Rutishauser Date: Thu, 2 Jan 2025 21:22:47 +0100 Subject: [PATCH] update network ports --- linux/linux-netzwerk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/linux-netzwerk.md b/linux/linux-netzwerk.md index f4b2677..f56812c 100755 --- a/linux/linux-netzwerk.md +++ b/linux/linux-netzwerk.md @@ -120,7 +120,7 @@ Sortiert zuerst IPv4 danach IPv6 | Proto | tcp | The protocol in use, e.g., tcp (Transmission Control Protocol) or udp (User Datagram Protocol). | | Recv-Q | 0 | The receive queue size: The number of bytes waiting to be read by the application. Usually 0. | | Send-Q | 0 | The send queue size: The number of bytes waiting to be acknowledged by the remote host. Usually 0. | -| Local Address | 0.0.0.0:81 The local address and port the process is bound to:
- 0.0.0.0 means the process listens on all IPv4 interfaces.
- :81 is the port number being listened on. | +| Local Address | 0.0.0.0:81 | The local address and port the process is bound to:
- 0.0.0.0 means the process listens on all IPv4 interfaces.
- :81 is the port number being listened on. | | Foreign Address | 0.0.0.0:* | The remote address and port the socket is connected to:
- 0.0.0.0:* indicates no remote connection yet (listening state). | | State | LISTEN | The connection state. LISTEN means the process is waiting for incoming connections. | | PID/Program name | 1316/docker-proxy | The process ID (PID) and program name of the process handling this connection:
- 1316 is the unique process ID.
- docker-proxy is the name of the program managing the socket. |