WebRTC网络协议分析

webRTC网络协议分析

常用工具
Linux服务端用tcpdump
其他端WireShark

tcpdump
tcpdump -i eth0 src port 80 -xx -Xs 0 -w test.cap
-i:指定网卡 eth0就是网卡的名称
src:指明包的来源
port:指明端口号
-xx:指抓到的包以10进制显示
-X:指以ASCII码显示
-s 0:指明抓整个包
-w:写到文件中 test.cap

.cap后面用到工具wireshark 可以进行读取的

WireShark
1、使用WireShark可以按协议进行过滤进行查看:
比如:可以通过udp、tcp、stun等协议

2、使用WireShark可以按ip进行过滤进行查看:
比如:
ip.dst==192.168.1.2 目的ip地址 按发送目的地址进行查询

ip.src==192.168.1.2 来源ip地址 按源地址进行查询

ip.addr==192.168.1.2 指定ip来查询

3、使用WireShark可以按port进行过滤进行查看:
tcp.port==8080

udp.port==3478

udp.dstport==3478 目的端口

udp.srcport==3478 源端口

4、使用WireShark可以按长度进行过滤进行查看:
tcp.length<30

udp.length<30

http.content_length<30

你可能感兴趣的:(webRTC)