Web 服务的 MTU
我们有一个 ERP 应用程序,所有客户端都使用 WebService 连接。 我的网络工程师告诉我,Web 服务的 MTU 太小,我们希望增加它以提高性能。 据我所知,dotnet Web 服务没有 MTU 的配置部分。 关于我们可以在哪里配置这个的任何想法?
We have an ERP application which has all clients connect using WebService. My network engineer tells me that the MTU of the webservice is too small and we would like to increase it to improve performance. As far as I can tell there is no config section for MTU for dotnet web services. Any ideas on where we could configure this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Web 服务没有 MTU - 它由服务器操作系统(在本例中为 Windows)控制。
调整 MTU 和其他 TCP 设置的最佳工具之一是 SG TCP 优化器。
A web service doesn't have an MTU - it's controlled by the server OS, in this case Windows.
One of the best tools for tweaking MTU and other TCP settings is SG TCP optimizer.
感谢您的回复。 我下载了该工具并运行它,它给了我与手动运行 ping 相同的结果......但是 GUI 工具很灵活,可以让我轻松测试。
我将来会使用它。
Thanks for the response. I downloaded the tool and ran it and it gave me the same result as running ping manually....but the GUI tool is slick and allows me to test easily.
I will use it in future.