summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim <kim.sidney@gmail.com>2019-04-14 16:12:20 +0200
committerGitHub <noreply@github.com>2019-04-14 16:12:20 +0200
commit322bd3a97a65394e59fe2bdae2772c0db59d4402 (patch)
tree3bcc4ce26fed1ddeeb3ca139ba8ec4f76c7ccf58
parent32096506f68beb493ad207a9a8018681b11de203 (diff)
parent9376754a1324331ff6b31a16c98e5ef5d678309c (diff)
downloadvyos-documentation-322bd3a97a65394e59fe2bdae2772c0db59d4402.tar.gz
vyos-documentation-322bd3a97a65394e59fe2bdae2772c0db59d4402.zip
Merge pull request #32 from iTeV/fix_nat_markup
Added some newlines to fix some markup issues. Also added a new codeblock.
-rw-r--r--docs/nat.rst16
1 files changed, 10 insertions, 6 deletions
diff --git a/docs/nat.rst b/docs/nat.rst
index a69cffbe..6951a6b1 100644
--- a/docs/nat.rst
+++ b/docs/nat.rst
@@ -13,13 +13,16 @@ host systems communicate to the Internet using a single or subset of IP
addresses.
To setup SNAT, we need to know:
-* The internal IP addresses we want to translate
-* The outgoing interface to perform the translation on
-* The external IP address to translate to
+
+* The internal IP addresses we want to translate;
+* The outgoing interface to perform the translation on;
+* The external IP address to translate to.
In the example used for the Quick Start configuration above, we demonstrate
the following configuration:
+.. code-block:: sh
+
set nat source rule 100 outbound-interface 'eth0'
set nat source rule 100 source address '192.168.0.0/24'
set nat source rule 100 translation address 'masquerade'
@@ -139,9 +142,10 @@ In this example, we will be using the example Quick Start configuration above
as a starting point.
To setup a destination NAT rule we need to gather:
-* The interface traffic will be coming in on
-* The protocol and port we wish to forward
-* The IP address of the internal system we wish to forward traffic to
+
+* The interface traffic will be coming in on;
+* The protocol and port we wish to forward;
+* The IP address of the internal system we wish to forward traffic to.
In our example, we will be forwarding web server traffic to an internal web
server on 192.168.0.100. HTTP traffic makes use of the TCP protocol on port 80.