diff options
author | Ryan Lim <ryanlim@users.noreply.github.com> | 2024-05-10 11:17:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-10 20:17:02 +0200 |
commit | 40fa9d8bfc9015e25cb84f7806f050d331bd6d39 (patch) | |
tree | 6f2ce8f683ae225e1f8ce548dc09820fadc8f3fd | |
parent | 48fc4291536607036f3191cad21ff0065d1eeaaf (diff) | |
download | vyos-documentation-40fa9d8bfc9015e25cb84f7806f050d331bd6d39.tar.gz vyos-documentation-40fa9d8bfc9015e25cb84f7806f050d331bd6d39.zip |
nat44: fix typo in example CLI commands
-rw-r--r-- | docs/configuration/nat/nat44.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/configuration/nat/nat44.rst b/docs/configuration/nat/nat44.rst index 98b230a9..68854c16 100644 --- a/docs/configuration/nat/nat44.rst +++ b/docs/configuration/nat/nat44.rst @@ -668,10 +668,10 @@ We will use source and destination address for hash generation. set nat destination rule 10 destination port 80 set nat destination rule 10 load-balance hash source-address set nat destination rule 10 load-balance hash destination-address - set nat destination rule 10 laod-balance backend 198.51.100.101 weight 30 - set nat destination rule 10 laod-balance backend 198.51.100.102 weight 20 - set nat destination rule 10 laod-balance backend 198.51.100.103 weight 15 - set nat destination rule 10 laod-balance backend 198.51.100.104 weight 35 + set nat destination rule 10 load-balance backend 198.51.100.101 weight 30 + set nat destination rule 10 load-balance backend 198.51.100.102 weight 20 + set nat destination rule 10 load-balance backend 198.51.100.103 weight 15 + set nat destination rule 10 load-balance backend 198.51.100.104 weight 35 Second scenario: apply source NAT for all outgoing connections from LAN 10.0.0.0/8, using 3 public addresses and equal distribution. |