Contents

Views 1245 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

# 내 서버 설정 (firewall.sh)


#!/bin/bash
# iptables automation script
iptables -F

# open 22port first for ssh
iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT

# configure for basic policy
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT ACCEPT

# accept to localhost
iptables -A INPUT -i lo -j ACCEPT

# accept to established and related
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

# open 80 port for apache
iptables -A INPUT -p tcp --dport 80 -j ACCEPT

# save the configuration
/sbin/service iptables save

# print out
iptables -L -v





?

List of Articles
No. Category Subject Author Date Views
154 System/OS [windows] 98/ME 속도 빠르게 튜닝(부팅,메모리,레지스터) hooni 2003.04.23 50447
153 System/OS [windows] 도스 사용 팁 hooni 2003.04.23 17814
152 System/OS [windows] 여러가지 활용 팁 hooni 2003.04.23 19977
151 System/OS [windows] 배치(bat)파일 제작 방법 hooni 2003.04.23 17010
150 System/OS [linux] 패킷 스니퍼링 hooni 2003.04.23 16323
149 System/OS [linux] 패킷의 소스 주소 바꾸기 hooni 2003.04.23 18792
148 System/OS [linux] iptables 명령어 매뉴얼(options) hooni 2003.04.23 11342
147 System/OS [linux] 간단한 NAT 설정 script hooni 2003.04.23 12608
146 System/OS [linux] 랜카드 2개 설정 & iptables 로 사설 ip.. hooni 2003.04.23 14743
145 System/OS [linux] apache, php, jsp 환경설정하기.. hooni 2003.04.23 15246
144 System/OS [linux] Oracle8.1.6, Mysql+PHP+Zend Optimizer+APACHE+Tomcat(jsp,servlet)+IMAP+gd hooni 2003.04.23 32462
143 System/OS [linux] 특수문자 환경 설정(stty) hooni 2003.04.23 15288
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17