Symptoms

Modifications to DNS zones made on the Odin Automation side propagate correctly to the zone files on BIND nodes, however, they are not applied on rndc reload, executed during Update named OA task run.

As a result, the modifications are not reflected, when querying the DNS server.

Cause

named and named-chroot are enabled and started simultaneously on the BIND node.

According to RedHat documentation, the situation is not correct.

Resolution

Disable named service and restart named-chroot on all affected BIND nodes:

# systemctl stop named
# systemctl stop named-chroot 
# systemctl disable named 
# systemctl start named-chroot

Internal content