From 5956162523635135fbac03776578c49974164364 Mon Sep 17 00:00:00 2001 From: Dan Podeanu Date: Thu, 15 Feb 2024 18:31:47 +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 48e20ac..61c5c28 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"] ```