지금 어떤 포트가 사용되고 있는지 확인하고 싶을 때 어떻게 해야할까?!

뭐 사실 포트를 확인할 수 있는 명령어가 있다는 것은 누구나 알고 있지만,
어떤 옵션을 사용해야 편하게 현재 상태를 볼 수 있는지는 잘 기억이 나지 않는다.

그래서 기록해놓는 의미로 포스팅을 해본다.

내가 레퍼런스로 삼은 포스팅은 아래와 같다.

    - http://www.tutorialarena.com/blog/check-open-ports-on-ubuntu-linux.php


명령어와 옵션은 심플하다.


$ netstat -anltp

(Not all processes could be identified, non-owned process info

 will not be shown, you would have to be root to see it all.)

Active Internet connections (servers and established)

Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name

tcp        0      0 127.0.1.1:53                     0.0.0.0:*                   LISTEN         -               

tcp        0      0 0.0.0.0:22                        0.0.0.0:*                   LISTEN         -               

tcp        0      0 127.0.0.1:631                   0.0.0.0:*                   LISTEN          -               

tcp        0      0 10.0.2.15:57424                103.22.220.133:80      TIME_WAIT    -               

tcp6       0      0 :::22                               :::*                         LISTEN          -               

tcp6       0      0 ::1:631                            :::*                         LISTEN          -


위의 메시지를 유심히 잘 살펴보기 바란다.

결과 내용이 뭔가 부족하다.


$ sudo netstat -anltp

Active Internet connections (servers and established)

Proto Recv-Q Send-Q Local Address           Foreign Address         State         PID/Program name

tcp        0      0 127.0.1.1:53                     0.0.0.0:*                   LISTEN        1045/dnsmasq    

tcp        0      0 0.0.0.0:22                        0.0.0.0:*                   LISTEN        3517/sshd       

tcp        0      0 127.0.0.1:631                   0.0.0.0:*                   LISTEN         729/cupsd       

tcp        0      0 10.0.2.15:57424                103.22.220.133:80      TIME_WAIT   -               

tcp6       0      0 :::22                              :::*                          LISTEN         3517/sshd       

tcp6       0      0 ::1:631                           :::*                          LISTEN         729/cupsd


sudo 권한으로 실행하면 (root 권한) 위와 같이 보다 확실히 결과를 확인할 수 있다.


앞으로 포트 확인을 예쁘게 잘 해보자~!!!


반응형

+ Recent posts