열려있는 모든 port 확인 netstat -anp LISTEN 중인 포트 표시 netstat -anp | grep LISTEN 특정 host의 특정 port가 열려 있는지 확인 (netcat = nc) nc -z hostaddress portex) nc -z www.google.com 80result ex) Connection to www.google.com 80 port [tcp/http] succeded! 특정 host의 port 범위 지정 open port 확인 nc hostaddress -z startPort-endPortex) nc 10.20.30.40 -z 19-23result ex) Connection to 10.20.30.40 21 port [tcp/ftp] succeded!Connect..