반응형
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
반응형
'네임서버' 카테고리의 다른 글
[네임서버] bind bad owner name (check-names) (0) | 2023.01.16 |
---|---|
[네임서버] caching dns server(bind caching only dns server) (0) | 2023.01.16 |
[네임서버] centos에 bind 설치하기(install bind on centos) (0) | 2023.01.14 |
[네임서버] ubuntu에 bind 설치하기(install bind on ubuntu) (0) | 2023.01.13 |
[네임서버] bind(named) 성능 점검(queryperf) (0) | 2022.11.28 |