mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
11 lines
315 B
Text
11 lines
315 B
Text
module PacketAnalyzer::GRE;
|
|
|
|
export {
|
|
const default_analyzer: PacketAnalyzer::Tag = PacketAnalyzer::ANALYZER_IPTUNNEL &redef;
|
|
const gre_ports = { 4754/udp } &redef;
|
|
}
|
|
|
|
event zeek_init() &priority=20
|
|
{
|
|
PacketAnalyzer::register_for_ports(PacketAnalyzer::ANALYZER_UDP, PacketAnalyzer::ANALYZER_GRE, gre_ports);
|
|
}
|