diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-09-26 06:44:34 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-26 06:44:34 +0700 |
commit | a17c3876d63406d8c66efe5597ab89e155150f9a (patch) | |
tree | 83c215a7374a24ce4b9fa0b27bb4afe3fbb2690c | |
parent | 838aeea29d7539ab3c18643097f0a19d8a19f136 (diff) | |
parent | d354ad2a0aa36e2234e4553410c22683a70aa1b9 (diff) | |
download | vyos-documentation-a17c3876d63406d8c66efe5597ab89e155150f9a.tar.gz vyos-documentation-a17c3876d63406d8c66efe5597ab89e155150f9a.zip |
Merge pull request #120 from rbroderi/master
Update bridge CLI example syntax
-rw-r--r-- | docs/interfaces/bridging.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/interfaces/bridging.rst b/docs/interfaces/bridging.rst index 7fb20e0a..e42d76ad 100644 --- a/docs/interfaces/bridging.rst +++ b/docs/interfaces/bridging.rst @@ -10,8 +10,9 @@ 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 bridge-group bridge br100 - + ~~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 normal interface. |