Configuring Forward and Reverse DNS Zones with BIND on Primary and Secondary Servers
Begin by disalbing SELinux and the firewall on both servers, then install BIND:
# On primary (192.168.32.168)
setenforce 0
systemctl stop firewalld
yum install bind -y
# On secondary (192.168.32.169)
setenforce 0
systemctl stop firewalld # corrected typo from 'filewalld'
yum install bind -y
Configure static IP addresses using nmcli:
# Primar ...
Posted on Wed, 13 May 2026 20:55:06 +0000 by NogDog