netstatでlistenポート確認
2011年5月8日Table of Contents
メモ。
ポートが空いている場合
[shell]
$ netstat -na | grep “:25 ”
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN
$ netstat -na | grep “:587 ”
tcp 0 0 0.0.0.0:587 0.0.0.0:* LISTEN
$ netstat -na | grep “:110 ”
tcp 0 0 :::110 :::* LISTEN
[/shell]
ポートが空いていない場合は、grepから何も返ってこない