Backport of docs: Add missing `&&` in DNS forwading tutorial into release/1.20.x (#21809)

backport of commit 3ba99fd382

Co-authored-by: Lens0021 / Leslie <lorentz0021@gmail.com>
pull/21815/head
hc-github-team-consul-core 2 months ago committed by GitHub
parent 4b7887ddb7
commit bba6be5483
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -66,7 +66,7 @@ When using the Consul Docker image, add the following to the environment to allo
To avoid running Consul as a privileged user, the following `iptables` commands are sufficient to map port `53` to `8600` and redirect DNS queries to Consul.
```shell-session
# iptables --table nat --append OUTPUT --destination localhost --protocol udp --match udp --dport 53 --jump REDIRECT --to-ports 8600 \
# iptables --table nat --append OUTPUT --destination localhost --protocol udp --match udp --dport 53 --jump REDIRECT --to-ports 8600 && \
iptables --table nat --append OUTPUT --destination localhost --protocol tcp --match tcp --dport 53 --jump REDIRECT --to-ports 8600
```
@ -417,4 +417,4 @@ This instructions on this page helped you configure your node to forward DNS req
To learn more on how to query Consul DNS once forwarding is enabled, refer to [DNS forwarding workflow](/consul/docs/services/discovery/dns-forwarding#workflow).
For more information on other DNS features and configurations available in Consul, refer to [DNS usage overview](/consul/docs/services/discovery/dns-overview).
For more information on other DNS features and configurations available in Consul, refer to [DNS usage overview](/consul/docs/services/discovery/dns-overview).

Loading…
Cancel
Save