From 5460454346265e1d8910a9316640cb61eb133796 Mon Sep 17 00:00:00 2001 From: Damaso Sanoja Date: Thu, 9 Jan 2025 16:20:22 -0400 Subject: [PATCH] Fix Routing Traffic to Multiple IP Resources --- .../how-to/routing-multiple-ip-resources.mdx | 62 ++++++++++++++++++- 1 file changed, 61 insertions(+), 1 deletion(-) diff --git a/src/pages/how-to/routing-multiple-ip-resources.mdx b/src/pages/how-to/routing-multiple-ip-resources.mdx index 2358b4b8..dac1566f 100644 --- a/src/pages/how-to/routing-multiple-ip-resources.mdx +++ b/src/pages/how-to/routing-multiple-ip-resources.mdx @@ -192,4 +192,64 @@ Your `Remote Network` should now resemble this setup: ![Remote Network](/docs-static/img/how-to-guides/routing-multiple-ip-resources/21-multiple-networks.png) -By completing these steps, you’ve created resources allowing varied access levels for different user groups within a hybrid organization network. \ No newline at end of file +Now, you can review, select, or deselect available networks using NetBird's CLI. + +Here's the output of the `netbird networks list` command from a DevOps team client: + +```bash +$ netbird networks list +Available Networks: + + - ID: Berlin LAN + Network: 172.16.0.0/15 + Status: Selected + + - ID: Production environment + Network: 10.108.0.0/16 + Status: Selected + + - ID: DNS-1 + Network: 172.17.100.2/32 + Status: Selected + + - ID: DNS-2 + Network: 172.17.100.3/32 + Status: Selected +``` + +Here's the output of the same command from a developer machine: + + +```bash +$ netbird networks list +Available Networks: + + - ID: Development Environment + Network: 172.16.50.1/32 + Status: Selected + + - ID: DNS-1 + Network: 172.17.100.2/32 + Status: Selected + + - ID: DNS-2 + Network: 172.17.100.3/32 + Status: Selected +``` + +And here's the output from a regular user workstation: + +```bash +$ netbird networks list +Available Networks: + + - ID: DNS-1 + Network: 172.17.100.2/32 + Status: Selected + + - ID: DNS-2 + Network: 172.17.100.3/32 + Status: Selected +``` + +By completing these steps, you’ve created resources allowing varied access levels for different user groups within a hybrid organization network.