Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何更改/确保我的多播 udp 数据报的 Windows 主机接收器设置为能够接收 1500 的 MTU?到目前为止,我阅读的文档是指 PPP 和 PPPoE,这似乎不适用于 udp 数据报。谢谢阿克
PPP/PPPoE与 UDP不互斥。前者是链路层协议,后者是传输层协议,参见TCP/IP。
如果您在谈论以太网-您已经拥有它。1500 是默认的以太网 MTU。
然后,您通常不会直接针对以太网工作。它是 UDP(多播),因此减去(至少)20 字节的IPv4 标头和 8 字节的UDP 标头。这为您提供最多 1472 字节的多播数据有效负载。