XMPP 的地址格式是什么?

XMPP 的地址格式是什么?

如果我在 CMD 上输入“netstat -an”,我如何知道哪些连接是基于消息服务 - 特别是 XMPP?

答案1

如果已建立连接的 XMPP 服务器使用标准端口,则可以过滤以下端口:

5222 TCP     XMPP client connection (RFC 3920)        Official  
5223 TCP     XMPP client connection over SSL          Unofficial
5269 TCP     XMPP server connection (RFC 3920)        Official
5298 TCP UDP XMPP JEP-0174: Link-Local Messaging /    Official
         XEP-0174: Serverless Messaging
8010 TCP     XMPP File transfers                      Unofficial

除此之外,您无法通过查看 TCP 连接来确定哪个连接由哪个协议使用。您必须使用数据包嗅探器 (Wireshark) 来嗅探连接。Wireshark 确实包含协议过滤器。

相关内容