diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-10-05 21:59:06 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-10-05 21:59:06 +0200 |
commit | 4c6ffa6162d49c87cf1addea3d87864d2e731ef4 (patch) | |
tree | cce3326af5595775a14db4a48abcca078d2a0c4a | |
parent | 30c913bf7e4e8a3ee93523dd33dd36584c9e298e (diff) | |
download | vyos-documentation-4c6ffa6162d49c87cf1addea3d87864d2e731ef4.tar.gz vyos-documentation-4c6ffa6162d49c87cf1addea3d87864d2e731ef4.zip |
NAT: Shorten ip6tables table
-rw-r--r-- | docs/ch08-nat.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/ch08-nat.rst b/docs/ch08-nat.rst index df0b61af..d87f33de 100644 --- a/docs/ch08-nat.rst +++ b/docs/ch08-nat.rst @@ -308,15 +308,15 @@ Resulting in the following ip6tables rules: .. code-block:: sh Chain VYOS_DNPT_HOOK (1 references) - pkts bytes target prot opt in out source destination - 0 0 DNPT all eth1 any anywhere 2001:db8:e1::/48 src-pfx 2001:db8:e1::/48 dst-pfx fc00:dead:beef::/48 - 0 0 DNPT all eth2 any anywhere 2001:db8:e2::/48 src-pfx 2001:db8:e2::/48 dst-pfx fc00:dead:beef::/48 - 0 0 RETURN all any any anywhere anywhere + pkts bytes target prot opt in out source destination + 0 0 DNPT all eth1 any anywhere 2001:db8:e1::/48 src-pfx 2001:db8:e1::/48 dst-pfx fc00:dead:beef::/48 + 0 0 DNPT all eth2 any anywhere 2001:db8:e2::/48 src-pfx 2001:db8:e2::/48 dst-pfx fc00:dead:beef::/48 + 0 0 RETURN all any any anywhere anywhere Chain VYOS_SNPT_HOOK (1 references) - pkts bytes target prot opt in out source destination - 0 0 SNPT all any eth1 fc00:dead:beef::/48 anywhere src-pfx fc00:dead:beef::/48 dst-pfx 2001:db8:e1::/48 - 0 0 SNPT all any eth2 fc00:dead:beef::/48 anywhere src-pfx fc00:dead:beef::/48 dst-pfx 2001:db8:e2::/48 - 0 0 RETURN all any any anywhere anywhere + pkts bytes target prot opt in out source destination + 0 0 SNPT all any eth1 fc00:dead:beef::/48 anywhere src-pfx fc00:dead:beef::/48 dst-pfx 2001:db8:e1::/48 + 0 0 SNPT all any eth2 fc00:dead:beef::/48 anywhere src-pfx fc00:dead:beef::/48 dst-pfx 2001:db8:e2::/48 + 0 0 RETURN all any any anywhere anywhere .. _RFC6296: https://tools.ietf.org/html/rfc6296 .. _ULAs: http://en.wikipedia.org/wiki/Unique_local_address |