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