google下,大神说一个用netstat -anL
但是这个无法查看连接的协议
我部机输出是:
Current listen queue sizes (qlen/incqlen/maxqlen)
Listen Local Address
0/0/128 *.80
0/0/128 ::1.25035
0/0/128 127.0.0.1.25035
0/0/50 *.3306
0/0/128 *.88
0/0/128 *.88
0/0/128 127.0.0.1.631
0/0/128 ::1.631
0/0/128 *.445
0/0/128 *.445
0/0/128 *.548
0/0/128 *.548
另外一个大神说用 lsof -ni | grep LISTEN
输出:
GitHub 497 pro 15u IPv4 0xa6e56565db9d8793 0t0 TCP 127.0.0.1:25035 (LISTEN)
GitHub 497 pro 16u IPv6 0xa6e56565d61219b3 0t0 TCP [::1]:25035 (LISTEN)
有没有更好的方法?
可以输出
netstat -tunlp的效果
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 2493/portmap
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 2776/cupsd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 2808/sendmail: acce
tcp 0 0 0.0.0.0:1020 0.0.0.0:* LISTEN 2534/rpc.statd
tcp 0 0 :::3306 :::* LISTEN 15681/mysqld
tcp 0 0 :::22 :::* LISTEN 2767/sshd
1
sunjourney 2015-03-19 07:56:44 +08:00 1
netstat -a | grep LISTEN
|
2
dorentus 2015-03-19 14:27:42 +08:00
/usr/sbin/lsof -i
|
3
miterleo 2015-03-19 15:25:43 +08:00
lsof -iTCP -sTCP:LISTEN -nP
|
4
wind3110991 OP @sunjourney 你的这个方法稍微好一些~~谢谢!
|
5
beordle 2015-03-20 03:54:33 +08:00
楼主最近刷屏节奏。。yuki头像。。每次都会手贱点进来。。
|
6
wind3110991 OP @beordle 我错了嘛~么么大
|