내가 레퍼런스로 삼은 포스팅은 아래와 같다.
- 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 권한) 위와 같이 보다 확실히 결과를 확인할 수 있다.
앞으로 포트 확인을 예쁘게 잘 해보자~!!!
'OS > Ubuntu' 카테고리의 다른 글
Linux Mint (Global #1 리눅스 배포판) (0) | 2018.02.03 |
---|---|
Xpad - 포스트잇 for 리눅스 (Ubuntu 14.04 64bit) (0) | 2018.01.24 |
tightVNC Server 설치하기 (Ubuntu 12.04, 14.04, 16.04) (0) | 2016.06.09 |
VNC Server 설치하기 (Ubuntu 12.04, 14.04, 16.04) (5) | 2016.06.06 |
dnsmasq error (Ubuntu 12.04) (0) | 2015.11.15 |