Does mtu affect udp?

hi,

i want to reduce the maximum transmission per unit for udp is it possible and how to reduce udp buffer can anyone help me optimize sent udp packets ro far away server

1 Like
  • Since MTU refers to frames (Layer 2) and UDP is a Layer 4 concept, yes.
  • Since you didn't ask now - I didn't include that information and assume you know (if not, feel free to ask away! :smiley:)

Again, yes - and it's not specific to UDP.

#in /etc/sysctl.conf:

net.core.rmem_default=<change>
net.core.rmem_max=<change>
  • Is this related to your other two questions?
  • There's no way to control a packet after it leaves your WAN port
  • The usual goal/point of UDP is less need for special optimizations - not more

Lastly, regarding the question in your title - yes, the MTU of any packet could affect it. This is not specific to UDP. Perhaps you should explain your use case.

4 Likes