리눅스 port를 열기 위해서는 iptables를 통해서, 포트를 열고 막고를 할 수 있습니다.
아래의 예제 부분만 따라 하시면 해당 port에 대해 모두 열 수 있습니다.
Inbound (외부에서 서버로 들어오는) , Outbound( 서버에서 외부로 나가는 ) 모두 port를 열기 위해서는 아래의 iptables로 INPUT, OUPUT 을 해주면 모두 열립니다.
권한은 root에서 해주시기 바랍니다.
iptables -I INPUT 1 -p tcp --dport 5900 -j ACCEPT
iptables -I OUTPUT 1 -p tcp --dport 5900 -j ACCEPT
예를 들면 ) FTP port 21번을 열고 싶다.
#iptables -I INPUT 1 -p tcp --dport 21 -j ACCEPT
#iptables -I OUTPUT 1 -p tcp --dport 21 -j ACCEPT
아래의 예제 부분만 따라 하시면 해당 port에 대해 모두 열 수 있습니다.
Inbound (외부에서 서버로 들어오는) , Outbound( 서버에서 외부로 나가는 ) 모두 port를 열기 위해서는 아래의 iptables로 INPUT, OUPUT 을 해주면 모두 열립니다.
권한은 root에서 해주시기 바랍니다.
iptables -I INPUT 1 -p tcp --dport 5900 -j ACCEPT
iptables -I OUTPUT 1 -p tcp --dport 5900 -j ACCEPT
예를 들면 ) FTP port 21번을 열고 싶다.
#iptables -I INPUT 1 -p tcp --dport 21 -j ACCEPT
#iptables -I OUTPUT 1 -p tcp --dport 21 -j ACCEPT
#service iptables save
#/etc/init.d/iptables restart
#/etc/init.d/iptables restart
*확인 /etc/sysconfig/iptables (직접 추가해도 가능.)
*iptables 방화벽 켜고 /끄기
Task: Disable / Turn off Linux Firewall (Red hat/CentOS/Fedora Core)
Type the following two commands (you must login as the root user):# /etc/init.d/iptables save
# /etc/init.d/iptables start
# /etc/init.d/iptables stop
[출처] [리눅스 iptables] port 열기 / 방화벽 켜고 끄기.|작성자 jxs2
'Linux' 카테고리의 다른 글
리눅스에서 nfs(network file system)사용하기 (0) | 2013.01.29 |
---|---|
잘정리된 iptables 사용법 (0) | 2013.01.28 |
리눅스 프로세스 상태 보기(ps명령) (0) | 2012.11.19 |
mpich2 를 이용한 클러스터링 셋업 (0) | 2012.11.16 |
yum으로 tomcat 인스톨후 초기화 방법 (0) | 2012.11.13 |