-antp:a: all n: 用数字而不是名称 (如用22而不是ssh)t: TCP p: PID grep :80: 将上述输出中含:80的行滤出 grep ESTABLISHED: 将上述grep输出中含ESTABLISHED的行滤出 grep httpd: 将上述第二个grep输出中含httpd的行滤出. 既然开始netstat用用数字而不是名称, 输出中不可能有httpd,应...
$ watch -d -n0 "netstat -atnp | grep ESTA" 1. 查看服务是否在运行 如果想看看http,smtp或ntp服务是否在运行,使用grep $ sudo netstat -aple | grep ntp udp 0 0 enlightened.local:ntp *:* root 17430 1789/ntpd udp 0 0 localhost:ntp *:* root 17429 1789/ntpd udp 0 0 *:ntp *:* root ...