don't stop believing

nmap으로 열려있는 포트 확인 본문

Linux/Ubuntu

nmap으로 열려있는 포트 확인

Tongchun 2017. 12. 20. 15:22

Linux 서버를 사용하면서 포트가 열려 있는지 확인하는 일은 자주 있습니다. 궁금할때도 한번씩 확인하죠.

Ubuntu에서 nmap으로 열려있는 Port를 확인해 보겠습니다.


먼저 nmap이 먼저 확인해 봅시다. 아래처럼 설명되어 있네요.

Nmap is the world's leading port scanner, and a popular part of our hosted security tools. Nmap as an online port scanner is able to scan your perimeter network devices and servers from an external perspective; ie outside your firewall.

[https://nmap.org/bennieston-tutorial/]


Ubuntu에 nmap을 설치해 봅시다.

$ sudo apt-get install nmap

그리고 localhost에 열려 있는 포트를 확인하려면 아래처럼 명령을 합니다.

$ nmap localhost

Starting Nmap 7.01 ( https://nmap.org ) at 2017-12-20 15:21 KST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.000085s latency).
Not shown: 998 closed ports
PORT     STATE SERVICE
22/tcp   open  ssh
5432/tcp open  postgresql

Nmap done: 1 IP address (1 host up) scanned in 0.06 seconds

nmap의 다른 기능은 다음 기회에 확인해 보겠습니다.


'Linux > Ubuntu' 카테고리의 다른 글

[Ubuntu] Swift 4 설치하기  (0) 2018.03.09
ssh 패스워드 없이 자동 로그인  (0) 2018.01.02
curl을 이용해 ftp 파일 다운로드 하기  (0) 2017.09.27
Ubuntu locale 변경  (0) 2017.09.22
[Ubuntu] Swift 3 설치하기  (0) 2017.09.13
Comments