You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example of DNS configuration for user-provisioned clusters:
https://docs.openshift.com/container-platform/4.14/installing/installing_vsphere/installing-vsphere.html#installation-dns-user-infra-example_installing-vsphere
The TTL value is 1w, according to that the output of dig command should be "604800"
Sample DNS zone database:
```
$TTL 1W
@ IN SOA ns1.example.com. root (
2019070700 ; serial
3H ; refresh (3 hours)
30M ; retry (30 minutes)
2W ; expiry (2 weeks)
1W ) ; minimum (1 week)
IN NS ns1.example.com.
IN MX 10 smtp.example.com.
...
...
```
Sample DNS zone database for reverse records:
```
$TTL 1W
@ IN SOA ns1.example.com. root (
2019070700 ; serial
3H ; refresh (3 hours)
30M ; retry (30 minutes)
2W ; expiry (2 weeks)
1W ) ; minimum (1 week)
IN NS ns1.example.com.
```
This is incorrect value:
```
$ dig +noall +answer @<nameserver_ip> api.<cluster_name>.<base_domain>
api.ocp4.example.com. 0 IN A 192.168.1.5
```
The correct value according to TTL 1w
```
$ dig +noall +answer @<nameserver_ip> api.<cluster_name>.<base_domain>
api.ocp4.example.com. 604800 IN A 192.168.1.5
```
.. Test an example `*.apps.<cluster_name>.<base_domain>` DNS wildcard lookup. All of the application wildcard lookups must resolve to the IP address of the application ingress load balancer:
bootstrap.ocp4.example.com. 604800 IN A 192.168.1.96
108
108
----
109
109
110
110
.. Use this method to perform lookups against the DNS record names for the control plane and compute nodes. Check that the results correspond to the IP addresses of each node.
96.1.168.192.in-addr.arpa. 0 IN PTR bootstrap.ocp4.example.com.
146
+
96.1.168.192.in-addr.arpa. 604800 IN PTR bootstrap.ocp4.example.com.
147
147
----
148
148
149
149
.. Use this method to perform reverse lookups against the IP addresses for the control plane and compute nodes. Check that the results correspond to the DNS record names of each node.
0 commit comments