처 : http://www.v-eng.co.kr/bbs/board.php?bo_table=faq&wr_id=40
리눅스(Linux) 포트(port) 열기, 방화벽(firewall) 설정/해제 등 안내
--------------------------------------
리눅스 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 (직접 추가해도 가능.)http://blog.naver.com/PostView.nhn?blogId=jxs2&logNo=110147025566
-----------------------------------------------------------------
[참고 cdrom mount 예 : system 마다 다르므로 관리자에게 확인 필요]
mkdir /cdrom
mount -r -t iso9660 /dev/cdrom /cdrom
umount 는
umount /cdrom
*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
-----------------------------------------------------------------
[참고 cdrom mount 예 : system 마다 다르므로 관리자에게 확인 필요]
mkdir /cdrom
mount -r -t iso9660 /dev/cdrom /cdrom
umount 는
umount /cdrom
'linux > Web Server Setting' 카테고리의 다른 글
리눅스 톰캣, 아파치 연동 참고자료2! (0) | 2015.11.19 |
---|---|
아파치 웹서버 와 톰캣 연동하기 - tomcat connector(mod_jk) , reverse proxy(mod_proxy) 참고용2 (0) | 2015.11.19 |
CentOS Apache2 + Tomcat6 연동 참고용1 (0) | 2015.11.19 |
CentOS 6.5 리눅스에 JSP 서비스를 위한 Tomcat 설치하기 (0) | 2015.11.19 |
CentOS 6.5 리눅스에 JSP 서비스를 위한 JDK 설치하기 (0) | 2015.11.19 |