diff options
Diffstat (limited to 'docs/interfaces')
-rw-r--r-- | docs/interfaces/bridging.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/interfaces/bridging.rst b/docs/interfaces/bridging.rst index 0adc9263..e42d76ad 100644 --- a/docs/interfaces/bridging.rst +++ b/docs/interfaces/bridging.rst @@ -10,8 +10,8 @@ we will be creating a bridge for VLAN 100 and assigning a VIF to the bridge. .. code-block:: sh set interfaces bridge 'br100' - set interfaces ethernet eth1 vif 100 - set interfaces bridge br100 member interface eth1.100 + ~~set interfaces ethernet eth1 vif 100 bridge-group bridge br100~~ + set interfaces bridge br100 member interface eth1 Interfaces assigned to a bridge-group do not have address configuration. An IP address can be assigned to the bridge interface itself, however, like any @@ -34,6 +34,9 @@ Example Result: ethernet eth1 { [...] vif 100 { + bridge-group { + bridge br100 + } } } |