본문 바로가기

네임서버

[네임서버] bind 통계 채널(bind statistics-channels)

반응형

bind 통계 채널(bind statistics-channels)

테스트 환경

$ cat /etc/redhat-release 
CentOS Linux release 7.9.2009 (Core)
$ named -v
BIND 9.11.4-P2-RedHat-9.11.4-26.P2.el7_9.10 (Extended Support Version) <id:7107deb>

bind 통계 채널 설정하기

named  설정 파일(named.conf)에서 통계 채널 설정하기

- zone-statistics

- statistics-channels

vim /etc/named.conf
// named.conf
options {
        listen-on port 53 { any; };
        directory "/var/named";
...
        zone-statistics yes;
...
};

statistics-channels {
        inet 192.168.0.62 port 7777 allow { 192.168.0.0/24; };
};

include "/etc/named.root.key";
include "/etc/named.logging.conf";
...

웹브라우저 : 192.168.0.62:7777

 

참고URL

- Operating statistics provided by BIND statistics channels : https://kb.isc.org/docs/aa-01123

- Using BIND's XML statistics-channels : https://kb.isc.org/docs/aa-00769

- Chapter 6. BIND 9 Configuration Reference: https://nsrc.org/workshops/2008/cctld-ams/Documentation/bind-arm/Bv9ARM.ch06.html

- 7.4. BIND Statistics : http://doc.kldp.org/KoreanDoc/html/PoweredByDNS-KLDP/statistics.html

 

반응형