Welcome, Guest. Please login or register.

Author Topic: Maximum size of network packets in TCP/UDP etc. ..etc.  (Read 2173 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline Zac67

  • Hero Member
  • *****
  • Join Date: Nov 2004
  • Posts: 2890
    • Show all replies
Re: Maximum size of network packets in TCP/UDP etc. ..etc.
« on: August 27, 2007, 08:43:19 PM »
Size of MTU depends on the network topology and conventions. On most Ethernet networks it's actually a bit larger.

MTU on Ethernet is (mostly) 1500 (1518 bytes/frame - 18 bytes header&checksum). UDP overhead reduces this by 16 bytes, TCP by 32 bytes.

Sending large packets over unknown territory can lead to fragmentation and reassembly: MTU

The values you've stated are the largest packets guaranteed not to be fragmented, regardless of layer and topology - if that's what you were looking for. ;-)