1822449 Members
2473 Online
109642 Solutions
New Discussion юеВ

Re: What is MTU?

 
ericfjchen
Regular Advisor

What is MTU?

# netstat -in
Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll
lan1 1500 10.xx.xx.0 10.xx.xx.21 126236617 0 2236321179 0
0
-----
Can you explain what MTU is?
6 REPLIES 6
Muthukumar_5
Honored Contributor

Re: What is MTU?

MTU referers Maximum Transfer Unit. It specifies maximum number of transfer units in the interface.

hth.
Easy to suggest when don't know about the problem!
Pete Randall
Outstanding Contributor

Re: What is MTU?

Maximum Transmission Unit


Pete

Pete
Muthukumar_5
Honored Contributor

Re: What is MTU?

Another good definition as,

The Maximum Transmission Unit (MTU) is a parameter that determines the largest datagram than can be transmitted by an IP interface (without it needing to be broken down into smaller units). The MTU should be larger than the largest datagram you wish to transmit unfragmented. Note: this only prevents fragmentation locally. Some other link in the path may have a smaller MTU: the datagram will be fragmented at that point. Typical values are 1500 bytes for an ethernet interface, or 576 bytes for a SLIP interface.

hth.
Easy to suggest when don't know about the problem!
Raj D.
Honored Contributor

Re: What is MTU?

Hi ericfjchen ,


MTU is Maximum Transmission Unit .
The Maximum Transmission Unit (MTU) is a parameter that determines the largest datagram than can be transmitted by an IP interface

To find the current mtu size :
# netstat -i | grep -i mtu
# lanadmin -m 0

To change the mtu size from 1300 to 1500, of interface with PPA number 0 is :

# lanadmin -M 1500 0

Cheers ,

Raj.
-------

" If u think u can , If u think u cannot , - You are always Right . "
Florian Heigl (new acc)
Honored Contributor

Re: What is MTU?

For Your information, the MTU also has a friend called MRU (Maximum Response Unit), which is helpful with WAN scenarios were some line has a lower paket size.

i.e. when routing through a DSL VPN or Wavelan bridge line, it can be helpful to lower both values to the maximum packet size that line handles (i.e. 1462bytes) so that less fragmentation of the packets well be neccessary. This can help to lower WAN latencies a bit as the packets won't be broken into pieces by routers on the way Your data takes.
yesterday I stood at the edge. Today I'm one step ahead.
KRS_1
Frequent Advisor

Re: What is MTU?

it's used to set transmitting unit size.

MTU - Maximum Number of bytes that can be tranmitted in one packet.


Thanks and Regards

KRS