Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion docs/ARO 4.3/configure/dns-forwarding.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,27 @@ spec:
- example.com
```

Save the file and exit your editor.
Save the file and exit your editor.

To quickly validate the new DNS forwarding setup, you can do the following:

```bash

# Test the DNS resolution
oc run --generator=run-pod/v1 -it --rm aro-ssh --image=debian
# Once you are in the interactive session, execute the following commands (replace the FQDN with yours)
apt-get update
apt-get install dnsutils -y
nslookup REPLACE.YOURDOMAIN.corp.
# Output should looklike:
# Server: 172.30.0.10
# Address: 172.30.0.10#53

# Non-authoritative answer:
# Name: REPLACE.YOURDOMAIN.corp
# Address: 10.165.5.4

# Terminate the session
exit

```