Cache Name Server 구성 bind package 설치 yum install bind-* rpm -qa | grep 'bind-*' Cache DNS 서버 세팅 vi /etc/named.conf listen-on port 53 {any;}; allow-query {any;}; dnssec-enable no; dnssec-vaildation no; Name Server Daemon 시작 service named start service named status netstat -anp|grep named --> 53번 포트 listen 확인 ps -ef|grep named --> named 프로세스 확인 Resource Record(RR) 무엇을 물어보는가? A -> IP 주소 NS -> 도메인을 ..