Linux;如果我正在运行的程序使用某些端口,如何查找日志?
我正在运行带有 csf 防火墙的 CentOS 5。我正在运行一个无法连接到另一台服务器的程序(我认为使用了一些被 csf 阻止的端口)。 “端口”的日志文件在哪里?
I am running CentOS 5 with csf firewall. I'm running a program that can't connect to another server (using some port that is blocked by csf I presume). Where is the log file for 'ports'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Netstat 是用于获取端口和网络活动的命令。为了诊断服务器进程,我通常使用:
这会在 tcp 模式侦听下产生端口编号。要识别关联的进程,您还可以使用 -p 来获取 pid。以下是 IANA 端口列表。
Netstat is the command to use to get ports and network activity. To diagonise server processes I usually use:
This yields port numbers in tcp mode listening. To identify associated processes you can also use -p to grab the pid. Here is the IANA ports list.
在搜索了更多线程后,我找到了答案。
显示 UDP 消息,但不显示端口...嗯...
I found my answer right after searching a few more threads.
Shows the UDP message but not the port.... Hmm....