How can I determine which packet in Wireshark corresponds to what I sent via Postman?

只愿长相守 提交于 2019-12-05 03:33:51

To see the destination port in the packet list, you have to add a column by right clicking in a column header and selecting Column preferences.... Then click on the + sign, choose a column title, and put

tcp.dstport

as the Fields parameter.

You can also directly use the display filter with the expression:

tcp.dstport == 21609

(tested with Wireshark 2.2.0)

The answer is as short as:

tcp.port==53218

First that the new postman port is 53218, second the original Answer is tracking only the requests without the responses. So if you want to track the whole communication - tcp.port==53218 will do it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!