UDP Sink: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
(Deprecated in 3.9)
(Upgrade to new network block)
Line 1: Line 1:
[[Category:Block Docs]]
This block provides basic UDP data transmission capabilities with a few additional features for processing in custom receiving applications. A header can be added in various formats for trackingFor instance all headers also provide a sequence number that can be used to identify gaps in packets.
Write stream to an UDP socketCan be used with [[UDP Source]] from another flowgraph or just an external application.  
 
<br><code>Deprecated in 3.9</code>
Note that payload size impacts the overall size of a single UDP packet. For a normal network, a payload size of 1472 (1500-28 for UDP headers) represents the max size for a standard UDP packet. For jumbo frames, 8972 can be used (9000-28).  Be careful adjusting this parameter as you could inadvertently cause unnecessary packet fragmentation and reconstruction.
 
NOTES:<br>
* This block does support connecting to IPv6 addresses. If an IPv6 address is detected as the destination IP address, the block will automatically adjust for proper connection.  Just make sure your IPv6 stack is enabled.
* For best performance and to ensure UDP packets are not dropped, add the following lines to your <code>/etc/sysctl.conf</code> and reboot (the reboot is required).<br>
<pre>
net.core.rmem_default=26214400
net.core.rmem_max=104857600
net.core.wmem_default=65536
net.core.wmem_max=104857600
</pre>
 
IT IS HIGHLY RECOMMENDED that the example test_udp_source/sink flowgraphs be tested with the sequence number header enabled (the default in those flowgraphs) as a validation that no network or IP stack bottlenecks may cause dropped packets at the rates planned in your environment before using in production, especially if headers will not be used in your environment to track dropped packets.


== Parameters ==
== Parameters ==
; IP Address
<code>For the version with 4 params depreciated in 3.9, see [https://wiki.gnuradio.org/index.php?title=UDP_Sink&oldid=8002 this page]</code>
: The name or IP address of the transmitting host; can be NULL, None, or "0.0.0.0" to allow reading from any interface on the host


; Port
; Address
: The port number on which to receive data; use 0 to have the system assign an unused port number
: IP address; default: 127.0.0.1 (localhost)


; Payload Size
; Destination Port
: UDP payload size by default set to 1472 = (1500 MTU - (8 byte UDP header) - (20 byte IP header))
: default: 2000


; Null Packet is EOF
; Header
: Interpret zero-length packet as EOF (default: true)
: options: [None, 64-bit Sequence Number, Sequence + 16-bit data size, CHDR
:        (64-bit)]
 
; UDP Packet Data Size
: default: 1472
 
; Send Null Packet as EOF
: options: [No, Yes]
 
; Vec Length
: vector length; default: 1


== Example Flowgraph ==
== Example Flowgraph ==
Line 25: Line 46:


; C++ files
; C++ files
: [https://github.com/gnuradio/gnuradio/blob/master/gr-network/lib/udp_sink_impl.cc 1]
: [https://github.com/gnuradio/gnuradio/blob/master/gr-network/lib/udp_sink_impl.cc]


; Header files
; Header files
: [https://github.com/gnuradio/gnuradio/blob/master/gr-network/lib/udp_sink_impl.h 2]
: [https://github.com/gnuradio/gnuradio/blob/master/gr-network/lib/udp_sink_impl.h]


; Public header files
; Public header files
: [https://github.com/gnuradio/gnuradio/blob/master/gr-network/include/gnuradio/network/udp_sink.h 3]
: [https://github.com/gnuradio/gnuradio/blob/master/gr-network/include/gnuradio/network/udp_sink.h]


; Block definition
; Block definition
: [https://github.com/gnuradio/gnuradio/blob/master/gr-network/grc/network_udp_sink.block.yml 4]
: [https://github.com/gnuradio/gnuradio/blob/master/gr-network/grc/network_udp_sink.block.yml]
 
[[Category:Block Docs]]

Revision as of 21:03, 11 February 2021

This block provides basic UDP data transmission capabilities with a few additional features for processing in custom receiving applications. A header can be added in various formats for tracking. For instance all headers also provide a sequence number that can be used to identify gaps in packets.

Note that payload size impacts the overall size of a single UDP packet. For a normal network, a payload size of 1472 (1500-28 for UDP headers) represents the max size for a standard UDP packet. For jumbo frames, 8972 can be used (9000-28). Be careful adjusting this parameter as you could inadvertently cause unnecessary packet fragmentation and reconstruction.

NOTES:

  • This block does support connecting to IPv6 addresses. If an IPv6 address is detected as the destination IP address, the block will automatically adjust for proper connection. Just make sure your IPv6 stack is enabled.
  • For best performance and to ensure UDP packets are not dropped, add the following lines to your /etc/sysctl.conf and reboot (the reboot is required).
net.core.rmem_default=26214400
net.core.rmem_max=104857600
net.core.wmem_default=65536
net.core.wmem_max=104857600

IT IS HIGHLY RECOMMENDED that the example test_udp_source/sink flowgraphs be tested with the sequence number header enabled (the default in those flowgraphs) as a validation that no network or IP stack bottlenecks may cause dropped packets at the rates planned in your environment before using in production, especially if headers will not be used in your environment to track dropped packets.

Parameters

For the version with 4 params depreciated in 3.9, see this page

Address
IP address; default: 127.0.0.1 (localhost)
Destination Port
default: 2000
Header
options: [None, 64-bit Sequence Number, Sequence + 16-bit data size, CHDR
(64-bit)]
UDP Packet Data Size
default: 1472
Send Null Packet as EOF
options: [No, Yes]
Vec Length
vector length; default: 1

Example Flowgraph

This flowgraph can be found at [1]

Test udp sink fg.png

Source Files

C++ files
[2]
Header files
[3]
Public header files
[4]
Block definition
[5]