Step 1. 상태 값 확인 하기
사용 방법: sudo ufw status
whitelife@whitelife-srv:~$ sudo ufw status
[sudo] password for whitelife:
Status: active
To Action From
-- ------ ----
22/tcp ALLOW Anywhere
7009/tcp ALLOW Anywhere
80/tcp ALLOW Anywhere
5432/tcp ALLOW Anywhere
10022/tcp ALLOW Anywhere
3306/tcp ALLOW Anywhere
3389/tcp ALLOW Anywhere
22/tcp ALLOW Anywhere (v6)
7009/tcp ALLOW Anywhere (v6)
80/tcp ALLOW Anywhere (v6)
5432/tcp ALLOW Anywhere (v6)
10022/tcp ALLOW Anywhere (v6)
3306/tcp ALLOW Anywhere (v6)
3389/tcp ALLOW Anywhere (v6)
Step 2. 특정 포트 열기
사용 방법: sudo ufw allow [port]/[protocol]
whitelife@whitelife-srv:~$ sudo ufw allow 3389/tcp
Rule added
Rule added (v6)
Step 3. 특정 포트 삭제
사용 방법: sudo ufw delete allow [port]/[protocol]
whitelife@whitelife-srv:~$ sudo ufw delete allow 3389/tcp
Rule deleted
Rule deleted (v6)
Step 4. 특정 포트 닫기
사용 방법: sudo ufw deny [port]/[protocol]
whitelife@whitelife-srv:~$ sudo ufw deny 3389/tcp
Rule updated
Rule updated (v6)
'Linux' 카테고리의 다른 글
gcc 컴파일 시 pcap.h no such file and directory 해결 방법 (0) | 2013.11.08 |
---|---|
find 명령어 사용하기 (0) | 2013.11.07 |
VirtualBox 폴더 공유 하기 (0) | 2013.07.28 |
CentOS 방화벽 설정 하기 (0) | 2013.04.26 |
Ubuntu 스크린샷 찍기 (0) | 2013.04.24 |