网络套接字命令

发布于 2024-07-05 16:02:18 字数 64 浏览 5 评论 0原文

Unix...>>netstat -al | grep 8787(将在端口 8787 上看到数据包)

Unix.....>>netstat -al | grep 8787 (will see packets on port 8787)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦罢 2024-07-12 16:02:18

如果你想查看实际的数据包,那么你需要使用 tcpdump。

使用 -s 选项指定您想要查看的数据包的大小(0 表示整个数据包),并使用 -X 选项获取十六进制和 ASCII 转储。

If you want to see the actual packets then you need to use tcpdump.

Use the -s option to specify how much of the packet you want to see (0 means the whole packet) and the -X option to get a Hex and ASCII dump.

中二柚 2024-07-12 16:02:18

使用命令

ifconfig -a

确定要侦听的接口。 然后使用

tcpdump -npi eth0 port 8787

侦听端口,其中 eth0 是您要侦听的接口(您通过 ifconfig 命令识别)。

Use the command

ifconfig -a

to determine the interface you want to listen on. Then use

tcpdump -npi eth0 port 8787

to listen on the port where eth0 is the interface you want to listen on that you identified from the ifconfig command.

南街女流氓 2024-07-12 16:02:18

这里问题的本质是什么? 您是否想查看端口 8787 上的数据包? 您是否正在寻找侦听端口 8787 的服务? 最重要的是,这是一个与编程相关的问题吗?

What is the nature of the question here? Are you trying to see packets on port 8787? Are you looking for services listening on port 8787? Most importantly, how is this a programming-related question?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文