From e2c533843062f305fd661130a979abbbaa603e78 Mon Sep 17 00:00:00 2001 From: Dan Podeanu Date: Thu, 15 Feb 2024 18:29:29 +0800 Subject: [PATCH] Improve README.md example clarity --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a176e35..7bb68e0 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ or ```mermaid graph TD - A["Wireguard Client
--------------------
Send from:
IP: 192.168.1.1
Port: 51820"] <--> B("UDP Redirector
--------------------
Receive on:
IP: 192.168.1.32 (--listen-address) (optional)
Port: 51821 (--listen-port)
Interface: en0 (--listen-interface) (optional)

Receive from: (optional)
IP: 192.168.1.1 (--listen-sender-address) (optional)
Port: 51820 (--listen-sender-port) (optional)
Only receive from Wireguard Client (--listen-address-strict) (optional)
--------------------
Send to:
Host: example.endpoint.net (--connect-host)
Port: 51822 (--connect-port)
Only receive from Wireguard Server (--connect-address-strict) (optional)

Send from:
Interface: utun5 (--sender-interface) (optional)

") + A["--------------------

Wireguard Client
--------------------
Send from:
IP: 192.168.1.1
Port: 51820"] <--> B("UDP Redirector
--------------------
Receive on:
IP: 192.168.1.32 (--listen-address) (optional)
Port: 51821 (--listen-port)
Interface: en0 (--listen-interface) (optional)
--------------------
Receive from: (optional)
IP: 192.168.1.1 (--listen-sender-address) (optional)
Port: 51820 (--listen-sender-port) (optional)
Only receive from Wireguard Client (--listen-address-strict) (optional)
--------------------
Send to:
Host: example.endpoint.net (--connect-host)
Port: 51822 (--connect-port)
Only receive from Wireguard Server (--connect-address-strict) (optional)

Send from:
Interface: utun5 (--sender-interface) (optional)

") B <--> C["Wireguard Server
--------------------
Listen on:
Host: example.endpoint.net
Port: 51822"] ```