Skip to main content

Udp

Provide UDP networking capabilities for sending and receiving data packets. Supports both unicast and multicast communication, with configurable socket buffers, MTU settings, and peer locking. Essential for network I/O operations in the pipeline.

Tags: NETWORKING, IO, INGRESS, EGRESS

FieldTypeLabelDescriptionDefault Value
InputStringOptional
OutputStringOptional
Local AddressStringOptionalLocal address to receive packets. If set without a remote address, incoming packets are dropped until a packet is received, and the remote address then becomes the source.127.0.0.1:1234
Remote AddressStringOptionalRemote address to send packets to.10.0.0.1:1234
InterfaceStringOptionalInterface to bind to, leave unset to determined by either local or remote address.eth0
MtuInt32OptionalMaximum transmission unit (MTU) in bytes.1452
Socket Buffer SizeInt32OptionalSocket buffer size in bytes.2097152
Multicast TtlUint32OptionalThe multicast time-to-live (TTL) value.1
Multicast GroupStringOptionalThe multicast group to join.244.0.0.1
Lock To First PeerBoolDetermines if the UDP socket should lock to the first peer it receives a packet from. Meaning that it will only send and receive packets from that peer.true