From f51d721a305fb45ee8f78acc36c963e97e0941df Mon Sep 17 00:00:00 2001 From: Jeff Rhodie Date: Fri, 13 Mar 2026 22:07:32 +0000 Subject: [PATCH 1/8] eth0 info added --- site/en/guides/border-router/build-docker.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/site/en/guides/border-router/build-docker.md b/site/en/guides/border-router/build-docker.md index ee4d8776..623b97d5 100644 --- a/site/en/guides/border-router/build-docker.md +++ b/site/en/guides/border-router/build-docker.md @@ -36,6 +36,12 @@ $ curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash ``` +The `setup-host` script attempts to automatically detect the infrastructure interface, +checking for `wlan0` and then `eth0`. +If you are using a different interface,you can specify it by setting the +`OT_INFRA_IF` environment variable before running the script +(for example, `OT_INFRA_IF=myeth0 curl ... | bash`). + ## Step 3: Get the OTBR Docker image Get the OTBR Docker image by pulling it directly from the [OpenThread Docker From 35002ab3573684f3550a37095a70332cdef56889 Mon Sep 17 00:00:00 2001 From: Jeff Rhodie Date: Fri, 13 Mar 2026 22:16:53 +0000 Subject: [PATCH 2/8] eth0 info added --- site/en/guides/border-router/build-docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/en/guides/border-router/build-docker.md b/site/en/guides/border-router/build-docker.md index 623b97d5..142f799d 100644 --- a/site/en/guides/border-router/build-docker.md +++ b/site/en/guides/border-router/build-docker.md @@ -38,7 +38,7 @@ https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/doc The `setup-host` script attempts to automatically detect the infrastructure interface, checking for `wlan0` and then `eth0`. -If you are using a different interface,you can specify it by setting the +If you are using a different interface, you can specify it by setting the `OT_INFRA_IF` environment variable before running the script (for example, `OT_INFRA_IF=myeth0 curl ... | bash`). From dbb8586cc0e924a3f150760f472725e10663c89c Mon Sep 17 00:00:00 2001 From: Jeff Rhodie Date: Fri, 13 Mar 2026 22:53:03 +0000 Subject: [PATCH 3/8] eth0 info added --- site/en/guides/border-router/build-docker.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/site/en/guides/border-router/build-docker.md b/site/en/guides/border-router/build-docker.md index 142f799d..87512c9a 100644 --- a/site/en/guides/border-router/build-docker.md +++ b/site/en/guides/border-router/build-docker.md @@ -31,16 +31,17 @@ Linux typically disables IP forwarding by default. Run the [`setup-host`](https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host) script to enable IP forwarding on the host system. -``` -$ curl -sSL -https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash -``` +The `setup-host` script defaults to using the `wlan0` interface. +If you are using a different infrastructure interface (for example, `eth0`), you must specify it +by setting the `INFRA_IF_NAME` environment variable before running the script. For example: + +
INFRA_IF_NAME=eth0 curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash
+
+ +If you are using `wlan0`, you can run the script without setting the variable: -The `setup-host` script attempts to automatically detect the infrastructure interface, -checking for `wlan0` and then `eth0`. -If you are using a different interface, you can specify it by setting the -`OT_INFRA_IF` environment variable before running the script -(for example, `OT_INFRA_IF=myeth0 curl ... | bash`). +
curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash
+
## Step 3: Get the OTBR Docker image From 4e7ddcd34b14e1e99d3b423df619c809971e38ec Mon Sep 17 00:00:00 2001 From: Jeff Rhodie Date: Sun, 15 Mar 2026 19:18:38 +0000 Subject: [PATCH 4/8] eth0 info added --- site/en/guides/border-router/build-docker.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/site/en/guides/border-router/build-docker.md b/site/en/guides/border-router/build-docker.md index 87512c9a..50813c56 100644 --- a/site/en/guides/border-router/build-docker.md +++ b/site/en/guides/border-router/build-docker.md @@ -35,13 +35,15 @@ The `setup-host` script defaults to using the `wlan0` interface. If you are using a different infrastructure interface (for example, `eth0`), you must specify it by setting the `INFRA_IF_NAME` environment variable before running the script. For example: -
INFRA_IF_NAME=eth0 curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash
-
+``` +$ INFRA_IF_NAME=eth0 curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash +``` If you are using `wlan0`, you can run the script without setting the variable: -
curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash
-
+``` +$ curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash +``` ## Step 3: Get the OTBR Docker image From a1d01683756120a5c077ab697451db4df00afddf Mon Sep 17 00:00:00 2001 From: Jeff Rhodie Date: Mon, 16 Mar 2026 22:41:46 +0000 Subject: [PATCH 5/8] eth0 info added --- site/en/guides/border-router/build-docker.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/site/en/guides/border-router/build-docker.md b/site/en/guides/border-router/build-docker.md index 50813c56..599789f0 100644 --- a/site/en/guides/border-router/build-docker.md +++ b/site/en/guides/border-router/build-docker.md @@ -31,7 +31,13 @@ Linux typically disables IP forwarding by default. Run the [`setup-host`](https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host) script to enable IP forwarding on the host system. -The `setup-host` script defaults to using the `wlan0` interface. +The `setup-host` script defaults to using the `wlan0` interface, as shown in this example: + + +``` +$ curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash +``` + If you are using a different infrastructure interface (for example, `eth0`), you must specify it by setting the `INFRA_IF_NAME` environment variable before running the script. For example: @@ -41,9 +47,6 @@ $ INFRA_IF_NAME=eth0 curl -sSL https://raw.githubusercontent.com/openthread/ot-b If you are using `wlan0`, you can run the script without setting the variable: -``` -$ curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash -``` ## Step 3: Get the OTBR Docker image From 7dce630158ebcb27eebef55eafcfb3f6511c5804 Mon Sep 17 00:00:00 2001 From: Jeff Rhodie Date: Mon, 16 Mar 2026 23:08:06 +0000 Subject: [PATCH 6/8] eth0 info added --- site/en/guides/border-router/build-docker.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/site/en/guides/border-router/build-docker.md b/site/en/guides/border-router/build-docker.md index 599789f0..2bb4080a 100644 --- a/site/en/guides/border-router/build-docker.md +++ b/site/en/guides/border-router/build-docker.md @@ -31,23 +31,22 @@ Linux typically disables IP forwarding by default. Run the [`setup-host`](https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host) script to enable IP forwarding on the host system. -The `setup-host` script defaults to using the `wlan0` interface, as shown in this example: +The `setup-host` script defaults to using the `wlan0` interface, as shown +in this example: ``` $ curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash ``` -If you are using a different infrastructure interface (for example, `eth0`), you must specify it -by setting the `INFRA_IF_NAME` environment variable before running the script. For example: +If you are using a different infrastructure interface (for example, `eth0`), you must +specify it by setting the `INFRA_IF_NAME` environment variable before running the script. +For example: ``` $ INFRA_IF_NAME=eth0 curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash ``` -If you are using `wlan0`, you can run the script without setting the variable: - - ## Step 3: Get the OTBR Docker image Get the OTBR Docker image by pulling it directly from the [OpenThread Docker From 9c0bda03b1f586be949576d69262257f9ad91996 Mon Sep 17 00:00:00 2001 From: Jeff Rhodie Date: Mon, 16 Mar 2026 23:23:02 +0000 Subject: [PATCH 7/8] eth0 info added --- site/en/guides/border-router/build-docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/en/guides/border-router/build-docker.md b/site/en/guides/border-router/build-docker.md index 2bb4080a..aba050b3 100644 --- a/site/en/guides/border-router/build-docker.md +++ b/site/en/guides/border-router/build-docker.md @@ -31,8 +31,8 @@ Linux typically disables IP forwarding by default. Run the [`setup-host`](https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host) script to enable IP forwarding on the host system. -The `setup-host` script defaults to using the `wlan0` interface, as shown -in this example: +The `setup-host` script defaults to using the `wlan0` interface +and can be run as shown below: ``` From 371a7d32db12a3b9166acbb63d0364ef9702c364 Mon Sep 17 00:00:00 2001 From: Jeff Rhodie Date: Tue, 17 Mar 2026 01:08:47 +0000 Subject: [PATCH 8/8] eth0 info added --- site/en/guides/border-router/build-docker.md | 1 - 1 file changed, 1 deletion(-) diff --git a/site/en/guides/border-router/build-docker.md b/site/en/guides/border-router/build-docker.md index aba050b3..ab621b49 100644 --- a/site/en/guides/border-router/build-docker.md +++ b/site/en/guides/border-router/build-docker.md @@ -34,7 +34,6 @@ script to enable IP forwarding on the host system. The `setup-host` script defaults to using the `wlan0` interface and can be run as shown below: - ``` $ curl -sSL https://raw.githubusercontent.com/openthread/ot-br-posix/refs/heads/main/etc/docker/border-router/setup-host | bash ```