diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-09-11 12:47:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-11 12:47:41 +0100 |
commit | 3fcc5ab3a42a3179da7dcc6565eedfb2470eae61 (patch) | |
tree | 3215b91de6294d99272ce84c60fa51c0af5e3162 /docs/configuration | |
parent | b6b3662367920fb8975c9e14221c12a7569ef8db (diff) | |
parent | 33adc9b97773dcab58ace0893f92e782ff86e629 (diff) | |
download | vyos-documentation-3fcc5ab3a42a3179da7dcc6565eedfb2470eae61.tar.gz vyos-documentation-3fcc5ab3a42a3179da7dcc6565eedfb2470eae61.zip |
Merge pull request #1529 from nvollmar/T6679
T6679: add group option for nat66
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/nat/nat66.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/configuration/nat/nat66.rst b/docs/configuration/nat/nat66.rst index 9345e708..42f63fc9 100644 --- a/docs/configuration/nat/nat66.rst +++ b/docs/configuration/nat/nat66.rst @@ -105,6 +105,18 @@ Example: set nat66 destination rule 1 destination address 'fc00::/64' set nat66 destination rule 1 translation address 'fc01::/64' +For the destination, groups can also be used instead of an address. + +Example: + +.. code-block:: none + + set firewall group ipv6-address-group ADR-INSIDE-v6 address fc00::1 + + set nat66 destination rule 1 inbound-interface name 'eth0' + set nat66 destination rule 1 destination group address-group ADR-INSIDE-v6 + set nat66 destination rule 1 translation address 'fc01::/64' + Configuration Examples ====================== |