网络套接字命令
Unix...>>netstat -al | grep 8787(将在端口 8787 上看到数据包)
Unix.....>>netstat -al | grep 8787 (will see packets on port 8787)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Unix...>>netstat -al | grep 8787(将在端口 8787 上看到数据包)
Unix.....>>netstat -al | grep 8787 (will see packets on port 8787)
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果你想查看实际的数据包,那么你需要使用 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.使用命令
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.
这里问题的本质是什么? 您是否想查看端口 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?