下面有两个应用程序。我使用java MulticastSocket
发送和接收DatagramPacket
。
发件人
public class Sender {
public static void main(String[] args) throws IOException {
int port = 5000;
String group = "225.4.5.6";
final MulticastSocket s = new MulticastSocket();
byte[] buf = new byte[10];
for (int i = 0; i < buf.length; i++) {
buf[i] = (byte) i;
}
final DatagramPacket pack = new DatagramPacket(buf, buf.length,
InetAddress.getByName(group), port);
Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
try {
s.send(pack);
System.out.println("Sent");
} catch (IOException ex) {
Logger.getLogger(Sender.class.getName()).log(Level.SEVERE, null, ex);
}
}
}, 0, 1000);
//s.close();
}
}
接收机
public class Receiver {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws IOException {
int port = 5000;
String group = "225.4.5.6";
MulticastSocket s = new MulticastSocket(port);
s.joinGroup(InetAddress.getByName(group));
byte[] buf = new byte[1024];
DatagramPacket pack = new DatagramPacket(buf, buf.length);
while (true) {
s.receive(pack);
System.out.println("Received data from: " + pack.getAddress().toString()
+ ":" + pack.getPort() + " with length: "
+ pack.getLength());
System.out.write(pack.getData(), 0, pack.getLength());
System.out.println();
}
// s.leaveGroup(InetAddress.getByName(group));
// s.close();
}
}
当我在localhost上运行它时,此代码工作正常。但是,当我尝试通过局域网在两台不同的计算机上运行它时,我无法接收数据包。
我已关闭两台计算机上的防火墙
任何人都可以解释原因吗?
修改
我的路线表:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.0.1 192.168.0.103 25
127.0.0.0 255.0.0.0 On-link 127.0.0.1 306
127.0.0.1 255.255.255.255 On-link 127.0.0.1 306
127.255.255.255 255.255.255.255 On-link 127.0.0.1 306
192.168.0.0 255.255.255.0 On-link 192.168.0.103 281
192.168.0.103 255.255.255.255 On-link 192.168.0.103 281
192.168.0.255 255.255.255.255 On-link 192.168.0.103 281
192.168.164.0 255.255.255.0 On-link 192.168.164.1 276
192.168.164.1 255.255.255.255 On-link 192.168.164.1 276
192.168.164.255 255.255.255.255 On-link 192.168.164.1 276
224.0.0.0 240.0.0.0 On-link 127.0.0.1 306
224.0.0.0 240.0.0.0 On-link 192.168.164.1 276
224.0.0.0 240.0.0.0 On-link 192.168.0.103 281
255.255.255.255 255.255.255.255 On-link 127.0.0.1 306
255.255.255.255 255.255.255.255 On-link 192.168.164.1 276
255.255.255.255 255.255.255.255 On-link 192.168.0.103 281
答案 0 :(得分:3)
您是否添加了多播地址的路由?在Linux上你必须这样做:
route add -net 224.0.0.0/4 eth0
(假设连接两台机器的网络接口是eth0)
在Windows上,在控制台(cmd.exe)提示符下键入route print
(您可能需要管理员权限)并检查此类行:
224.0.0.0 240.0.0.0 En vínculo 127.0.0.1 306
224.0.0.0 240.0.0.0 En vínculo 192.168.56.1 276
224.0.0.0 240.0.0.0 En vínculo 192.168.10.100 266
224.0.0.0 240.0.0.0 En vínculo 192.168.79.1 276
224.0.0.0 240.0.0.0 En vínculo 192.168.34.1 276
(这是一台西班牙语机器:“Envínculo”的意思是“链接到”)
Windows为多播数据包列出了多条可能的路由。发件人程序实际使用的路由是具有最低度量(最后一列编号)的路由。在我的设置中,它是使用192.168.10.100
(我的主网卡)上的网络接口的路由。
检查您的计算机是否将其网卡列为组播的最低度量标准接口。您可以使用127.0.0.1
作为多播(localhost)的主要接口,而不是物理网络接口。
此外,您可能希望使用多播组地址224.0.0.1
来测试可访问性。这是全主机组播组。假定任何多播数据包都能够被同一子网内的任何主机接收。有关多播地址对齐的更多信息,请查看RFC 5771:http://tools.ietf.org/html/rfc5771
请注意,如果两台计算机位于同一子网(例如,连接到同一个交换机),则多播可以更好地工作。如果介于两者之间,事情要复杂得多。