우분투 서버 - DNS 구축 (bind 설치)
·
Linux
DNS 서비스를 위한 수동 설치를 해 보겠습니다. 1. 우선은 DNS 서비스를 위해 bind9 를 설치해야 합니다. windpyj@ubuntu:~$ sudo apt-get install bind9 2. 설치가 끝나면 자동으로 DNS 데몬이 실행이 됩니다. DNS 설정 파일들은 /etc/bind 디렉토리에 저장이 됩니다. 주요 설정 파일은 /etc/bind/named.conf 입니다. 우선 기본으로 생성된 named.conf 파일을 보겠습니다. // This is the primary configuration file for the BIND DNS server named. // // Please read /usr/share/doc/bind9/README.Debian.gz for information on ..