Port 확인
Ubuntu(우분투)에서 열려있는 포트 목록 보기
PORT STATE SERVICE
21/tcp open ftp
22/tcp open ssh
25/tcp open smtp
53/tcp open domain
80/tcp open http
110/tcp open pop3
143/tcp open imap
993/tcp open imaps
995/tcp open pop3s
Open port 80
Open flle /etc/sysconfig/iptables:# vi /etc/sysconfig/iptables
Append rule as follows:-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
Save and close the file. Restart iptables:# /etc/init.d/iptables restart
Open port 110
Append rule as follows:-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 110 -j ACCEPT
Open port 143
Append rule as follows:-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 143 -j ACCEPT
Restart iptables service
Type the following command:# service iptables restart
Verify that port is open
Run following command:netstat -tulpn | less
Make sure iptables is allowing port 80 / 110 / 143 connections:iptables -L -n
Refer to iptables man page for more information about iptables usage and syntax:man iptables
[출처] [Linux] Port 관리 명령어|작성자 DisRush
'Technology > Operating Systems' 카테고리의 다른 글
Linux / dmidecode, 리눅스 Hardware 정보 (0) | 2011.06.09 |
---|---|
Linux / Console에서 그래픽모드 실행하기 (0) | 2011.05.25 |
Linux / Screen (0) | 2011.01.10 |
Linux / package install (0) | 2011.01.10 |
Linux / 리눅스 커널 컴파일 설치(kernel compile) (0) | 2009.12.05 |