diff options
| author | Christian Poessinger <christian@poessinger.com> | 2019-11-27 17:20:36 +0100 | 
|---|---|---|
| committer | Christian Poessinger <christian@poessinger.com> | 2019-11-27 17:20:38 +0100 | 
| commit | 6aa3cbb611f74bdf8e44d5527f5138f3122a7497 (patch) | |
| tree | 009a1fe9447bdd980d5017d49f102e7ccdace03b /docs/interfaces/bridge.rst | |
| parent | 76bbe2744d7184ee50626d9d7b65f21dad1c7e99 (diff) | |
| download | vyos-documentation-6aa3cbb611f74bdf8e44d5527f5138f3122a7497.tar.gz vyos-documentation-6aa3cbb611f74bdf8e44d5527f5138f3122a7497.zip  | |
Refactor "code-block:: sh" to "code-block:: console"
This will add proper new-lines into the rendered PDF. Before if it has
been a long line, not all content was preserved in the PDF.
Diffstat (limited to 'docs/interfaces/bridge.rst')
| -rw-r--r-- | docs/interfaces/bridge.rst | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/interfaces/bridge.rst b/docs/interfaces/bridge.rst index 6c8510b5..77049597 100644 --- a/docs/interfaces/bridge.rst +++ b/docs/interfaces/bridge.rst @@ -9,7 +9,7 @@ Layer-2 traffic.  A bridge is created when a bridge interface is defined. In the example below  we create a bridge named br100 with eth1 and eth2 as the bridge member ports. -.. code-block:: sh +.. code-block:: console    set interfaces bridge 'br100'    set interfaces bridge br100 member interface eth1 @@ -18,7 +18,7 @@ we create a bridge named br100 with eth1 and eth2 as the bridge member ports.  Each bridge member can be assiged a port cost and priority using the following  commands: -.. code-block:: sh +.. code-block:: console    set interfaces bridge br100 member interface eth1 cost 10    set interfaces bridge br100 member interface eth1 priority 1024 @@ -27,14 +27,14 @@ Interfaces assigned to a bridge do not have address configuration. An IP  address can be assigned to the bridge interface itself, however, like any  normal interface. -.. code-block:: sh +.. code-block:: console    set interfaces bridge br100 address '192.168.100.1/24'    set interfaces bridge br100 address '2001:db8:100::1/64'  Example Result: -.. code-block:: sh +.. code-block:: console    bridge br100 {        address 192.168.100.1/24 @@ -59,7 +59,7 @@ Spanning-Tree Protocol. STP is disabled by default.  To enable spanning-tree use the `set interfaces bridge <name> stp` command: -.. code-block:: sh +.. code-block:: console    set interfaces bridge br100 stp @@ -70,7 +70,7 @@ using the `aging` directive.  The `show bridge` operational command can be used to display configured  bridges: -.. code-block:: sh +.. code-block:: console    vyos@vyos:~$ show bridge    bridge name     bridge id               STP enabled     interfaces @@ -79,7 +79,7 @@ bridges:  If spanning-tree is enabled, the `show bridge <name> spanning-tree` command  can be used to show STP configuration: -.. code-block:: sh +.. code-block:: console    vyos@vyos:~$ show bridge br100 spanning-tree    br100 @@ -105,7 +105,7 @@ can be used to show STP configuration:  The MAC address-table for a bridge can be displayed using the  `show bridge <name> macs` command: -.. code-block:: sh +.. code-block:: console    vyos@vyos:~$ show bridge br100 macs    port no mac addr                is local?       ageing timer  | 
