Packet Length greater than MTU


 
Thread Tools Search this Thread
Special Forums IP Networking Packet Length greater than MTU
# 1  
Old 02-28-2011
Packet Length greater than MTU

Hello,

I would appreciate some help with the following. We have 3 SUN X4450 servers, each of these servers talk to each other, one is an application server the other is a database server and the third is a web server. We also have numerous workstation and ACD connections.

When I snoop the application server I can see the following message a lot and I mean a lot

(warning) packet length greater than MTU in buffer offest

The NIC cards on the servers are all set as 1500 and the customer ensures us each router/switch/firewall has the same MTU.

When I snoop a particular packet I can see the Packet size as 1967 which based on the MTU doesn't seem possible. Also the do not fragment bit it set to 1.

So much questions are this;

1) Would there be a network device that is advertising an MTU greater than 1500
2) Would there be a problem with the Solaris server config, the e1000g.conf file hasn't be changed from the default

Any help would be greatly appreciated as finding where the issues lies is proving rather difficult.

Thanks,
Giles

Last edited by giles.cardew; 02-28-2011 at 01:14 PM.. Reason: grammer and spelling
# 2  
Old 03-01-2011
Sometimes localhost, a software device, has a big MTU, like 8K, and it may apply for all local packets. Ethernet is 1500 total, and the payload is less IPV4 40 bytes plus 4 x any options. It seems like the app should be allowing frag if using non-tcp, and tcp is a stream, so the app has no business fussing with packet bits and lengths.

It may be PATH MTU testing, where the routing tables is extended with dynamic host route lines and the MTU of path to host. If ICMP says the packet does not fit, it will retry with a lower size, hence it does not want fragmentation, it wants PATH MTU information. Black holes are when firewalls block that ICMP informations, and the PATH MTU has to time out and assume it went into a black hole, and try a lower packet size to ensure a route exists.

Not Solaris, but you should see similar:
Code:
$ netstat -rn
Routing tables
Dest/Netmask          Gateway            Flags  Refs       Use  Interface  Pmtu
127.0.0.1             127.0.0.1          UH       0   64980021  lo0        4136
191.136.182.236       191.136.182.236    UH       0   23515341  lan7       4136
191.136.182.0         191.136.182.236    U        2          0  lan7       1500
127.0.0.0             127.0.0.1          U        0          0  lo0        4136
default               191.136.182.1      UG       0          0  lan7       1500
$

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Set MTU value for ipv6 interfaces

Hi, I am trying to set mtu value for ipv6 interfaces. I know how to set it for ipv4 interfaces ifconfig net1 mtu 1240 Do I need to add any iptype for the above command ? Note: OS:Solaris 10 TIA (3 Replies)
Discussion started by: Sumanthsv
3 Replies

2. AIX

Packet loss coming with big packet size ping

(5 Replies)
Discussion started by: Vishal_dba
5 Replies

3. UNIX for Dummies Questions & Answers

MTU setting for IRIX

Couldn't find an IRIX forum, so I'm posting to this one... Just had our SAs rebuild an IRIX machine and now I need to set the MTU to 1344 (vice 1500 default). I can set it manually using the ifconfig command, but it won't survive a reboot. I made an entry into the /etc/init.d/ifconfig-1.options... (0 Replies)
Discussion started by: scottwevans
0 Replies

4. Shell Programming and Scripting

Delete words greater than a specific length

HI All, I have a file with contents like this: apple computer terminal applecomputernetworkrouterterminalrouter network router applecomputernetworkrouterterminalrouter I want to remove all lines with length greater than "18 alphabets". Hence, my output should be: apple computer... (1 Reply)
Discussion started by: shoaibjameel123
1 Replies

5. HP-UX

MTU size

Hi, Just want to ask on how to check and change the MTU size of the nodes from 1500 to 9000? I need to match the MTU size of some cluster nodes which has 1500 to the others with 9000 because they are inconsistent. Thanks (1 Reply)
Discussion started by: criphaze22
1 Replies

6. IP Networking

Importance of LS length in DB exchange start packet (OSPF protocol)?

Is there any importance of LS length in DB exchange packet of OSPF protocol as its should be always be 20 bytes. Is this length to be ignored (2 Replies)
Discussion started by: cosmic_egg
2 Replies

7. Solaris

how to find MTU size on solaris.

How do i find the MTU size on solaris, which file to look into. Please help I'm a newbie to administration. (1 Reply)
Discussion started by: ramky79
1 Replies

8. Solaris

MTU Value

Hi guys, Do anyone know how to change the MTU value on an interface on Solaris 10 server? (2 Replies)
Discussion started by: shabu
2 Replies

9. UNIX for Dummies Questions & Answers

length of data greater than 11

I need to get all the rows in a file, for which length of field at column 6 is greater than 11. I tried awk '{ if ($#1 >11) print $1}' filename But Iam getting some errors I tried different combinations like awk '{ if (${#$1} >11) print $1}' filename awk '{ if (${#1} >11) print... (2 Replies)
Discussion started by: thanuman
2 Replies

10. UNIX for Advanced & Expert Users

How to change the MTU in Unix registry?

Does anyone know how to or know of a web page where I can find how to change the MTU speed in Unix registry? Any info. would be greatly appreciated. Thanks, Techie (2 Replies)
Discussion started by: Techie_girl
2 Replies
Login or Register to Ask a Question