From 9b1b4cef445d9f2011a32a28ddacb962e2e3d572 Mon Sep 17 00:00:00 2001 From: nearxos Date: Tue, 17 Feb 2026 15:14:51 +0200 Subject: [PATCH] test --- docs/vlan40-bridge-systemd-networkd.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/vlan40-bridge-systemd-networkd.md b/docs/vlan40-bridge-systemd-networkd.md index 5b8e80c..e2aac51 100644 --- a/docs/vlan40-bridge-systemd-networkd.md +++ b/docs/vlan40-bridge-systemd-networkd.md @@ -106,29 +106,28 @@ Adjust the address to match your VLAN 40 subnet. Remove the `Address=` line if y ## 6. Add VLAN to the parent interface (.network) -Edit **`20-eth1.network`** so that eth1 explicitly carries VLAN 40. Add a `VLAN=eth1.40` line under the `[Network]` section. - -If the file currently looks like: +Edit **`20-eth1.network`** so that eth1 explicitly carries VLAN 40. Your file currently looks like: ```ini [Match] Name=eth1 [Network] -# ... other options (e.g. no config if eth1 is only used by br1) +Bridge=br1 ``` -add: +Add **`VLAN=eth1.40`** under `[Network]` (same pattern as `10-eth0.network`, which has `VLAN=eth0.50`, `VLAN=eth0.60`, `VLAN=eth0.201`). After editing: ```ini [Match] Name=eth1 [Network] +Bridge=br1 VLAN=eth1.40 ``` -If there are already other keys under `[Network]`, add `VLAN=eth1.40` on a new line in that same section. This ties the VLAN to eth1 so it is created when eth1 is configured. +This ties the VLAN to eth1 so it is created when eth1 is configured. eth1 stays in br1; eth1.40 will be created and then attached to br1.40 by the 21-eth1.40.network file. ---