mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
11 lines
285 B
Text
11 lines
285 B
Text
#
|
|
# @TEST-EXEC: zeek -b -r ${TRACES}/var-services-std-ports.trace %INPUT base/protocols/dns base/protocols/conn
|
|
# @TEST-EXEC: cat conn.log | zeek-cut service | grep -q dns
|
|
#
|
|
|
|
redef Analyzer::disable_all = T;
|
|
|
|
event zeek_init()
|
|
{
|
|
Analyzer::enable_analyzer(Analyzer::ANALYZER_DNS);
|
|
}
|