收发UDP数据包

Posted pengsn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了收发UDP数据包相关的知识,希望对你有一定的参考价值。

linux下命令发送UDP数据包

安装nc工具
yum install nc

发送UDP到指定ip port
nc -4u 101.69.229.4 7709

发送udp数据包到指定的ip port
echo "pengsn hello word" |nc -4u 101.69.229.4 1001

代码实现收发UDP数据包

发送数据包

try(DatagramSocket ds = new DatagramSocket()){
	byte[] data = "This is a Message send by UDP.".getBytes("utf-8");
	DatagramPacket dp = new DatagramPacket(data, data.length, InetAddress.getByName("ip"), port);
	ds.send(dp);
}catch(Exception e) {
	
}

接收数据包

try(DatagramSocket ds = new DatagramSocket(1001)){
	byte[] buf = new byte[1024];
	DatagramPacket dp = new DatagramPacket(buf, buf.length);
	ds.receive(dp);
	String ip = dp.getAddress().getHostAddress();
	System.out.println(ip);
	System.out.println("dd:" + new String(dp.getData(), 0, dp.getLength()));
}catch(Exception e) {
	
}

捕获数据包

windows 下wireshark工具抓取
linux 下通过tcpdump命令抓包

tcpdump -i any -s 0 udp port xx -w save.pcap

以上是关于收发UDP数据包的主要内容,如果未能解决你的问题,请参考以下文章

Linux内核分析_UDP协议中数据包的收发处理过程

VB.net Socket Udp收发数据包示例源码

网络数据传输基于FPGA的百兆网/兆网千UDP数据包收发系统开发,PC到FPGA

MicroPython ESP32 UDP和TCP数据收发通讯综合实例

Erlang Udp 服务器丢弃大量数据包

基于UDP的通讯