I am troubleshooting an issue were large SFTP file transfers of > 3gb never reach speeds faster than 10mbs on a 25mbs circuit (there is no other traffic at the time of transfer). I understand the concept of how TCP windowing works. In researching the SFTP protocol I understand the SFTP does some form of its own windowing and further places restraints or limits on payload size that are much smaller than that is allowed in SSH2. As I don't have a capture yet to analyze. I am looking for advise as to what to look for? Thank you for your time. asked 11 Sep '14, 16:37 EdJ |
One Answer:
If you have a situation where maximum theoretical speed can't be achieved (well, it is always a little less than the theoretical maximum, of course, even in best case situations), you need to look for where the time is lost. There are a couple of causes for lost time (the list is probably not close to complete, but just to have a few):
In Wireshark, you might want to take a look at the IOGraph in the statistics menu to see if there is a pattern. Otherwise, find the packets with the largest delta times and determine why those happen. answered 11 Sep '14, 18:34 Jasper ♦♦ |