dns 데몬 설치
$ sudo apt-get install bind9 |
dns zone 설정
$ ll /etc/bind 합계 56 -rw-r--r-- 1 root root 2389 9월 28 08:35 bind.keys -rw-r--r-- 1 root root 237 9월 28 08:35 db.0 -rw-r--r-- 1 root root 271 9월 28 08:35 db.127 -rw-r--r-- 1 root root 237 9월 28 08:35 db.255 -rw-r--r-- 1 root root 353 9월 28 08:35 db.empty -rw-r--r-- 1 root root 270 9월 28 08:35 db.local -rw-r--r-- 1 root bind 275 10월 17 18:25 db.minimonk.net -rw-r--r-- 1 root root 3048 9월 28 08:35 db.root -rw-r--r-- 1 root bind 463 9월 28 08:35 named.conf -rw-r--r-- 1 root bind 567 10월 17 18:24 named.conf.default-zones -rw-r--r-- 1 root bind 165 9월 28 08:35 named.conf.local -rw-r--r-- 1 root bind 890 10월 17 17:58 named.conf.options -rw-r----- 1 bind bind 77 10월 17 17:58 rndc.key -rw-r--r-- 1 root root 1317 9월 28 08:35 zones.rfc1918 |
도메인 설정
$ cat named.conf.default-zones // prime the server with knowledge of the root servers zone "." { type hint; file "/etc/bind/db.root"; }; // be authoritative for the localhost forward and reverse zones, and for // broadcast zones as per RFC 1912 zone "localhost" { type master; file "/etc/bind/db.local"; }; zone "127.in-addr.arpa" { type master; file "/etc/bind/db.127"; }; zone "minimonk.net" IN { type master; file "/etc/bind/db.minimonk.net"; }; zone "0.in-addr.arpa" { type master; file "/etc/bind/db.0"; }; zone "255.in-addr.arpa" { type master; file "/etc/bind/db.255"; }; |
$ cat db.netcam4u.net ; ; BIND reverse data file for local loopback interface ; $TTL 604800 @ IN SOA minimonk.net. root.minimonk.net. ( 1 ; Serial 604800 ; Refresh 86400 ; Retry 2419200 ; Expire 604800 ) ; Negative Cache TTL ; @ IN NS ns.minimonk. IN A 192.168.10.13 |
dns 서버 재기동
$ sudo service bind9 restart |
zone 파일만 다시 읽어 적용하기
$ sudo service bind9 reload |
dns 조회-간이
$ nslookup "조회할 도메인" "dns 서버" |
명령어 없을 경우
$ sudo apt-get install dnsutils |
dns 조회-설정
/etc/resolv.conf 바꾸거나 알아서 잘?
어찌 되건 조회는 되는 기분인데.. 잘 되는진 모르겠네
[링크 : http://webdir.tistory.com/163]
[링크 : http://thisstory.tistory.com/entry/우분투ubunt-DNS-서버-구축-내부-DNS-서버를-만들기]
[링크 : http://cissnei.tistory.com/166]
[링크 : http://sangchul.kr/199]
'프로그램 사용 > bind' 카테고리의 다른 글
bind zone 파일 내용 (0) | 2016.10.17 |
---|---|
nslookup / bind (0) | 2014.08.25 |