Contents

Views 1402 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
93 System/OS [linux] 네트워크 커널 설정.. hooni 2003.04.23 16554
92 System/OS [linux] 커널 컴파일, 설정 hooni 2003.04.23 17916
91 System/OS [linux] 네트웍 트래픽 모니터링(MRTG) hooni 2003.04.23 42400
90 System/OS [linux] DHCP(Dynamic Host Configuration Protocol) 서버 hooni 2003.04.23 13096
89 System/OS [linux] Masquerade 가상 ip분할기법 hooni 2003.04.23 48022
88 System/OS [linux] DNS(Domain Name System) 설치, 설정 hooni 2003.04.23 12522
87 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 14640
86 System/OS [linux] 이기종간의 파일 공유(Samba) hooni 2003.04.23 14955
85 System/OS [linux] 텔넷, FTP 텍스트 모드에서 사용 hooni 2003.04.23 12004
84 System/OS [linux] 랜카드가 2개 일 때 네트워크 설정 hooni 2003.04.23 30133
83 System/OS [linux] 아파치설치/설정 - 알리어싱(aliasing) hooni 2003.04.23 51455
82 System/OS [linux] 아파치설치/설정 - 사용인증 hooni 2003.04.23 15150
Board Pagination Prev 1 ... 86 87 88 89 90 91 92 93 94 95 ... 98 Next
/ 98