-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add more coverage tests for indexers - Add coverage test for local IP addresses - Add test and coverage of DNS-over-TCP
- Loading branch information
Showing
8 changed files
with
468 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
local_address 127.0.0.1; | ||
run_dir "."; | ||
minfree_bytes 5000000; | ||
interface ./dnso1tcp.pcap.dist; | ||
dataset qtype dns All:null Qtype:qtype queries-only; | ||
dataset rcode dns All:null Rcode:rcode replies-only; | ||
dataset opcode dns All:null Opcode:opcode queries-only; | ||
dataset rcode_vs_replylen dns Rcode:rcode ReplyLen:msglen replies-only; | ||
dataset client_subnet dns All:null ClientSubnet:client_subnet queries-only max-cells=200; | ||
dataset qtype_vs_qnamelen dns Qtype:qtype QnameLen:qnamelen queries-only; | ||
dataset qtype_vs_tld dns Qtype:qtype TLD:tld queries-only,popular-qtypes max-cells=200; | ||
dataset certain_qnames_vs_qtype dns CertainQnames:certain_qnames Qtype:qtype queries-only; | ||
dataset client_subnet2 dns Class:query_classification ClientSubnet:client_subnet queries-only max-cells=200; | ||
dataset client_addr_vs_rcode dns Rcode:rcode ClientAddr:client replies-only max-cells=50; | ||
dataset chaos_types_and_names dns Qtype:qtype Qname:qname chaos-class,queries-only; | ||
dataset idn_qname dns All:null IDNQname:idn_qname queries-only; | ||
dataset edns_version dns All:null EDNSVersion:edns_version queries-only; | ||
dataset edns_bufsiz dns All:null EDNSBufSiz:edns_bufsiz queries-only; | ||
dataset do_bit dns All:null D0:do_bit queries-only; | ||
dataset rd_bit dns All:null RD:rd_bit queries-only; | ||
dataset tc_bit dns All:null TC:tc_bit any; | ||
dataset idn_vs_tld dns All:null TLD:tld queries-only,idn-only; | ||
dataset ipv6_rsn_abusers dns All:null ClientAddr:client queries-only,aaaa-or-a6-only,root-servers-net-only max-cells=50; | ||
dataset transport_vs_qtype dns Transport:transport Qtype:qtype queries-only; | ||
dataset client_port_range dns All:null PortRange:dns_sport_range queries-only; | ||
dataset client_port dns All:null Port:dns_source_port any; | ||
dataset direction_vs_ipproto ip Direction:ip_direction IPProto:ip_proto any; | ||
dataset ip_version ip All:null Version:ip_version any; | ||
dataset dns_ip_version dns All:null Version:dns_ip_version any; | ||
dataset qclass dns All:null Class:qclass any; | ||
dataset qname dns All:null Name:qname any; | ||
dataset qr_aa_bits dns Direction:ip_direction QRAABits:qr_aa_bits any; | ||
dataset server dns All:null IP:server any; | ||
dataset second_ld_vs_rcode dns Rcode:rcode SecondLD:second_ld replies-only max-cells=50; | ||
dataset third_ld_vs_rcode dns Rcode:rcode ThirdLD:third_ld replies-only max-cells=50; | ||
output_format XML; |
Oops, something went wrong.