From b623a0987549639302e4d4a21b5bada456f5eb26 Mon Sep 17 00:00:00 2001 From: "stephan.lo" Date: Wed, 12 Mar 2025 22:35:52 +0000 Subject: [PATCH] doc(local-development): added tldr; explanation in the network routing doc --- .../local-development/host-to-kind-network-routing/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/technical-documentation/solution/scenarios/local-development/host-to-kind-network-routing/index.md b/docs/technical-documentation/solution/scenarios/local-development/host-to-kind-network-routing/index.md index 72bf4a0..d2f573e 100644 --- a/docs/technical-documentation/solution/scenarios/local-development/host-to-kind-network-routing/index.md +++ b/docs/technical-documentation/solution/scenarios/local-development/host-to-kind-network-routing/index.md @@ -8,6 +8,8 @@ Add a route in windows to your docker network (e.g. 192.168.199.0/24) over the v ```powershell # in windows admin mode +# 192.168.199.0/24: the network you want to route to, here: the dockernetwork inside vm +# 172.29.216.239 : the router address which routes the above network, here: the gateway inside the vm to windows PS C:\Users\stl> route add 192.168.199.0/24 172.29.216.239 ```