During sending a large amount of data (~1 TB) there are some kind of connection errors which I want to track out. If I capture the whole How to capture my Thanks. asked 11 Jun '12, 05:30 baranovdmi |
One Answer:
You could capture the traffic with a packet size limitation (for example 64 bytes) if you do not need the payload. The size should be selected based on the length of the headers you need to keep when capturing. For an ethernet based tcp/ip packet 64 bytes is usually enough if all you need to see is up to the TCP layer. You can set this limit at the capture interface settings. There is a checkmark called "Limit each packet to" which is usually not checked and has a default size of 65535 bytes. Activate the checkbox and set the limit to whatever suits you. answered 11 Jun '12, 05:38 Jasper ♦♦ |