mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00

This is based on commit 2731def9159247e6da8a3191783c89683363689c from the zeek-docs repo.
99 lines
2.7 KiB
ReStructuredText
99 lines
2.7 KiB
ReStructuredText
:tocdepth: 3
|
|
|
|
base/packet-protocols/geneve/main.zeek
|
|
======================================
|
|
.. zeek:namespace:: GLOBAL
|
|
.. zeek:namespace:: PacketAnalyzer::Geneve
|
|
|
|
|
|
:Namespaces: GLOBAL, PacketAnalyzer::Geneve
|
|
|
|
Summary
|
|
~~~~~~~
|
|
Redefinable Options
|
|
###################
|
|
===================================================================================== =============================================
|
|
:zeek:id:`PacketAnalyzer::Geneve::geneve_ports`: :zeek:type:`set` :zeek:attr:`&redef` The set of UDP ports used for Geneve traffic.
|
|
===================================================================================== =============================================
|
|
|
|
Types
|
|
#####
|
|
================================================================ ================
|
|
:zeek:type:`PacketAnalyzer::Geneve::Option`: :zeek:type:`record` A Geneve option.
|
|
:zeek:type:`geneve_options_vec`: :zeek:type:`vector`
|
|
:zeek:type:`geneve_options_vec_vec`: :zeek:type:`vector`
|
|
================================================================ ================
|
|
|
|
Redefinitions
|
|
#############
|
|
==================================================================== =
|
|
:zeek:id:`likely_server_ports`: :zeek:type:`set` :zeek:attr:`&redef`
|
|
==================================================================== =
|
|
|
|
|
|
Detailed Interface
|
|
~~~~~~~~~~~~~~~~~~
|
|
Redefinable Options
|
|
###################
|
|
.. zeek:id:: PacketAnalyzer::Geneve::geneve_ports
|
|
:source-code: base/packet-protocols/geneve/main.zeek 8 8
|
|
|
|
:Type: :zeek:type:`set` [:zeek:type:`port`]
|
|
:Attributes: :zeek:attr:`&redef`
|
|
:Default:
|
|
|
|
::
|
|
|
|
{
|
|
6081/udp
|
|
}
|
|
|
|
|
|
The set of UDP ports used for Geneve traffic. Traffic using this
|
|
UDP destination port will attempt to be decapsulated. Note that if
|
|
if you customize this, you may still want to manually ensure that
|
|
:zeek:see:`likely_server_ports` also gets populated accordingly.
|
|
|
|
Types
|
|
#####
|
|
.. zeek:type:: PacketAnalyzer::Geneve::Option
|
|
:source-code: base/packet-protocols/geneve/main.zeek 11 20
|
|
|
|
:Type: :zeek:type:`record`
|
|
|
|
|
|
.. zeek:field:: class :zeek:type:`count`
|
|
|
|
The class of the option.
|
|
|
|
|
|
.. zeek:field:: critical :zeek:type:`bool`
|
|
|
|
The critical bit of the type.
|
|
|
|
|
|
.. zeek:field:: typ :zeek:type:`count`
|
|
|
|
The type field of the option with the critical bit masked.
|
|
|
|
|
|
.. zeek:field:: data :zeek:type:`string`
|
|
|
|
The data field of the option.
|
|
|
|
|
|
A Geneve option.
|
|
|
|
.. zeek:type:: geneve_options_vec
|
|
:source-code: base/packet-protocols/geneve/main.zeek 43 43
|
|
|
|
:Type: :zeek:type:`vector` of :zeek:type:`PacketAnalyzer::Geneve::Option`
|
|
|
|
|
|
.. zeek:type:: geneve_options_vec_vec
|
|
:source-code: base/packet-protocols/geneve/main.zeek 44 44
|
|
|
|
:Type: :zeek:type:`vector` of :zeek:type:`geneve_options_vec`
|
|
|
|
|
|
|