Changes since 2.8.1:
- Add support for receiving DNS messages over DNSTAP
- Fix bug with listening for SIGINT when in foreground mode
- Unlink UNIX socket on exit if successfully initiated
- Fix startup bug, exit() if unable to initialize
- Add new configuration options to dnstap_unixsock to control
ownership and permissions for the DNSTAP socket file
- Update the built in known TLDs table and adds the optional
configuration option knowntlds_file
- Fix a 17-year old code cut&paste mistake in the classification
indexer, until now it's been classifying funny query types based
on the query class, submitted by Jim Hague (Sinodun)
PR: 248728
Submitted by: Leo Vandewoestijne (maintainer)
(From the PR) The sample configuration refers to an invalid PID
file location, and a non-existent data directory.
- Set PID file location to match RC script default
- Create default data directory
- While here, drop dependency on dns/dsp, which is not required
to collect stats
PR: 245141
Submitted by: John W. O'Brien
Approved by: Leo Vandewoestijne (maintainer timeout, 2 weeks)
- New indexer 'response_time'
- Support for MaxMind DB (GeoIP2)
- Update 'pcap_layers' with fixes for 'scan-build' warnings
- Fix port in debug output of DNS message
Changes made in addition to the PR supplied patch:
- The port had USES=shebangfix but none of the SHEBANG_ variables
were set; replace the cron_upload-prep.pl patch with a working
shebangfix setup and then use REINPLACE_CMD to adjust the conf
path in upload-prep.pl
- While we're here use REINPLACE_CMD to obey PREFIX in other
files
PR: 235711
Submitted by: Leo Vandewoestijne (maintainer)
Reviewed by: ler (mentor)
Approved by: ler (mentor)
Differential Revision: https://reviews.freebsd.org/D19187
so configure finds pcap/sll.h. Add a rc.d script. Fix the path
to the config directory in upload-prep.pl or else it silently
exits without doing anything when it doesn't find any configs.
PR: 230661
Reviewed by: ler (mentor)
Approved by: Leo Vandewoestijn (maintainer), ler (mentor)
Differential Revision: https://reviews.freebsd.org/D16925
While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight
DSC (originally developed by The Measurement Factory and now developed
by DNS-OARC) is a system for collecting and exploring statistics from
busy DNS servers. It uses a distributed architecture with collectors
running on or near nameservers sending their data to one or more
central presenters for display and archiving. Collectors use pcap to
sniff network traffic. They transmit aggregated data to the presenter
as XML data. dsc is configurable to allow the administrator to capture
any kind of data that he or she chooses.
WWW: https://www.dns-oarc.net/dsc/
PR: 226631
Submitted by: Leo Vandewoestijne <freebsd@dns.company>