Hello, I have a user that uses a website to upload a pdf files to a web site, when they try to upload the user sees the hour glass (circle) spinning and it eventually times out. This happens about 50% of the time. I have a wireshark capture and when looking for issues I see there is a time out with the website being the source and the user's pc being the destination. I have reviewed the router settings with the vendor and we are NOT blocking the communication. Any ideas of what to do to determine where the problem is? The vendor says they do not have any issues with anyone else. asked 22 Mar '16, 08:26 tucktech |
Many such issues are caused by wrong handling of MTU limitations somewhere on the path between the client and server, causing TCP segments to be lost due to unusually small MTU value on some portion of the network path combined with blocking of ICMP traffic requesting that the sender would segment the packet into smaller ones somewhere between this bottleneck and the sender. If you can, try to trim the MSS values in SYN packets forwarded by your router to smaller values and see whether it solves the issue (bear in mind that you have to trim the MSS value in both directions as you don't know which end does not receive the icmp feedback). Why it happens only in some cases could be explained by existence of several network paths between client and server, and only one of them to be dropping the icmp.
Look here for maybe better explanation of what happens.