summaryrefslogtreecommitdiff
path: root/docs/routing/bgp.rst
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-11-27 17:20:36 +0100
committerChristian Poessinger <christian@poessinger.com>2019-11-27 17:20:38 +0100
commit6aa3cbb611f74bdf8e44d5527f5138f3122a7497 (patch)
tree009a1fe9447bdd980d5017d49f102e7ccdace03b /docs/routing/bgp.rst
parent76bbe2744d7184ee50626d9d7b65f21dad1c7e99 (diff)
downloadvyos-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/routing/bgp.rst')
-rw-r--r--docs/routing/bgp.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/routing/bgp.rst b/docs/routing/bgp.rst
index 319213ca..6a2ce581 100644
--- a/docs/routing/bgp.rst
+++ b/docs/routing/bgp.rst
@@ -15,7 +15,7 @@ A simple eBGP configuration:
**Node 1:**
-.. code-block:: sh
+.. code-block:: console
set protocols bgp 65534 neighbor 192.168.0.2 ebgp-multihop '2'
set protocols bgp 65534 neighbor 192.168.0.2 remote-as '65535'
@@ -25,7 +25,7 @@ A simple eBGP configuration:
**Node 2:**
-.. code-block:: sh
+.. code-block:: console
set protocols bgp 65535 neighbor 192.168.0.1 ebgp-multihop '2'
set protocols bgp 65535 neighbor 192.168.0.1 remote-as '65534'
@@ -40,13 +40,13 @@ creating a static route:**
**Node 1:**
-.. code-block:: sh
+.. code-block:: console
set protocols static route 172.16.0.0/16 blackhole distance '254'
**Node 2:**
-.. code-block:: sh
+.. code-block:: console
set protocols static route 172.17.0.0/16 blackhole distance '254'
@@ -58,7 +58,7 @@ A simple BGP configuration via IPv6.
**Node 1:**
-.. code-block:: sh
+.. code-block:: console
set protocols bgp 65534 neighbor 2001:db8::2 ebgp-multihop '2'
set protocols bgp 65534 neighbor 2001:db8::2 remote-as '65535'
@@ -69,7 +69,7 @@ A simple BGP configuration via IPv6.
**Node 2:**
-.. code-block:: sh
+.. code-block:: console
set protocols bgp 65535 neighbor 2001:db8::1 ebgp-multihop '2'
set protocols bgp 65535 neighbor 2001:db8::1 remote-as '65534'
@@ -84,13 +84,13 @@ creating a static route:**
**Node 1:**
-.. code-block:: sh
+.. code-block:: console
set protocols static route6 2001:db8:1::/48 blackhole distance '254'
**Node 2:**
-.. code-block:: sh
+.. code-block:: console
set protocols static route6 2001:db8:2::/48 blackhole distance '254'
@@ -101,7 +101,7 @@ Route filter can be applied using a route-map:
**Node1:**
-.. code-block:: sh
+.. code-block:: console
set policy prefix-list AS65535-IN rule 10 action 'permit'
set policy prefix-list AS65535-IN rule 10 prefix '172.16.0.0/16'
@@ -124,7 +124,7 @@ Route filter can be applied using a route-map:
**Node2:**
-.. code-block:: sh
+.. code-block:: console
set policy prefix-list AS65534-IN rule 10 action 'permit'
set policy prefix-list AS65534-IN rule 10 prefix '172.17.0.0/16'