Specifying what network interface an UDP multicast should go to in .NET(在 .NET 中指定 UDP 多播应该转到的网络接口)
问题描述
在具有活动无线网卡和 LAN 端口的计算机上,通过交叉电缆连接到运行相同应用程序的另一台计算机,我们需要通过 LAN 线向另一台计算机发送 UDP 多播.使用 C# 套接字,Windows 似乎每次都尝试通过 WLAN 适配器路由消息.
On a computer with both an active Wireless Card and a LAN-Port with a crossover cable hooked up to another machine running the same application, we need to send a UDP multicast over the LAN wire to the other computer. Using C# Sockets, Windows seems to try to route the message over the WLAN adapter every time.
有没有办法指定在哪个网络接口上发送 UDP 多播?
Is there a way to specify what network interface to send a UDP multicast on?
推荐答案
您可能正在寻找 SocketOptionName.MulticastInterface
.这里是 MSDN 上的一篇文章,可能会对您有所帮助.
You are probably looking for SocketOptionName.MulticastInterface
. Here's an article on MSDN that might help you.
除此之外,如果您更新本地路由表以具有与多播地址匹配并指向正确接口的确切条目,它应该可以正常工作.
Other then that if you update your local routing table to have an exact entry matching the multicast address and pointing to the right interface it should just work.
这篇关于在 .NET 中指定 UDP 多播应该转到的网络接口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 .NET 中指定 UDP 多播应该转到的网络接口
基础教程推荐
- 如何激活MC67中的红灯 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- c# Math.Sqrt 实现 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- rabbitmq 的 REST API 2022-01-01