Answers:
执行以下命令 netsh interface ip show joins
在命令行提示符下。
它将显示计算机的所有网络接口,并为每个网络接口显示接口正在侦听/注册的多播地址:
C:\Users\gpr>netsh interface ip show joins
Interface 1: Loopback Pseudo-Interface 1
Scope References Last Address
---------- ---------- ---- ------------------
0 1 Yes 239.255.255.250
Interface 12: Local Area Connection
Scope References Last Address
---------- ---------- ---- ------------------
0 0 Yes 224.0.0.1
0 1 Yes 224.0.0.251
0 1 Yes 224.0.0.252
0 1 Yes 239.255.255.250
正如Spiff所说,要在多播地址上发送数据包,您可以使用 ping
命令,但如果您想将它用于应用程序目的,请选择使用 私有多播地址 (在...范围内) 239.255.x.y
而不是使用 标准多播地址 ( 224.x.y.z
)。