CentOS+bind 9.3.x 네임서버 설정(1차네임서버)
·
OS/Linux
bind 9.3 부터는 환경설정 파일로 named.conf 대신에 name.caching-nameserver.conf 사용한다. 1. 설치 방법 yum install bind bind-utils caching-nameserver 2. 환경 설정 * 주의 : 환경설정파일의 소유자는 root, 소유그룹이 named이여야 함 * 소유권변경방법: chown root:named 파일명 1) vi /etc/named.caching-nameserver.conf 편집 options { listen-on port 53 { 112.171.147.40; }; (--------1차 네임서버 ip) // listen-on-v6 port 53 { ::1; }; directory "/var/named"; dump-file "/va..