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