#!/usr/bin/bash ######################################## File Description ######################################## # Creation time:2020-05-30 # Project:08 # Task: 04 # Execute example:bash reader-shell-x-x.sh # Detailed description: # About:http://linux.book.51xueweb.cn ################################################################################################## #reback start yum remove bind -y cp -f /etc/named.conf.bak1 /etc/named.conf systemctl start firewalld setenforce 1 yum remove bind-utils -y rm -f /var/named/com-domain-area rm -f /var/named/10.10.3.area rm -f /var/named/com-domain-common rm -f /var/named/10.10.4.common #reback end #***************reader shell start*************** #install bind yum install -y bind #configure named systemctl start named systemctl status named | head -10 systemctl enable named systemctl list-unit-files | grep named.service #modify configuration file of named cp /etc/named.conf /etc/named.conf.bak1 sed -i 's/127.0.0.1/10.10.2.120/g' /etc/named.conf sed -i 's/localhost/any/g' /etc/named.conf #reload named systemctl reload named #turn off firewall tempporarilly systemctl stop firewalld setenforce 0 #install the dig tool yum install -y bind-utils #start DNS query test dig -t A www.baidu.com @10.10.2.120 #configure intelligent domain name resolution service sed -i '/zone "." IN {/,+3d' /etc/named.conf sed -i '/named.rfc1912.zones/d' /etc/named.conf cat >> /etc/named.conf < /var/named/com-domain-area < /var/named/10.10.3.area < /var/named/com-domain-common < /var/named/10.10.4.common <