From 6aa3cbb611f74bdf8e44d5527f5138f3122a7497 Mon Sep 17 00:00:00 2001
From: Christian Poessinger <christian@poessinger.com>
Date: Wed, 27 Nov 2019 17:20:36 +0100
Subject: 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.
---
 docs/routing/bgp.rst | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

(limited to 'docs/routing/bgp.rst')

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'
-- 
cgit v1.2.3