Start BIND
Start BIND 2014/08/02 [1] Start BIND to provides DNS service. [root@dlp ~]# /etc/rc.d/init.d/named start Starting named: [ OK ] [root@dlp ~]# chkconfig named on [2] If IPTables is running , allow DNS port. DNS uses 53/TCP,UDP. For "-I INPUT 5" section below, Replace it to your own environment. [root@dlp ~]# iptables -I INPUT 5 -p tcp -m state --state NEW -m tcp --dport 53 -j ACCEPT [root@dlp ~]# iptables -I INPUT 5 -p udp -m state --state NEW -m udp --dport 53 -j ACCEPT [3] Change settings that the server refer to local DNS service. [root@dlp ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0 # change to own host DNS1= 10.0.0.30 [root@dlp ~]# /etc/rc.d/init.d/network restart [4] Make sure the server can resolve domain names or IP addresses. [root@dlp ~]# dig dlp.srv.world. ; <<>> DiG 9.7.0-P2-RedHat-9.7.0-5.P2.el6 <<>> dlp.srv.world. ;; global options: ...