Contents

Views 1386 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





?

  1. macOS에 node, npm 설치하기 (homebrew)

  2. [js] URL 파싱하기 (jQuery 안쓰고)

  3. [ppt] 전자금융보안론 발표/설치 자료

  4. [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치

  5. [ios] GPS 이용 상태 확인

  6. [android] How can I place app icon on launcher home screen?

  7. [linux] yum 업데이트 시 커널 제외하기

  8. [ios] 동영상 플레이어 샘플 (for PIP Player)

  9. [linux] iptables 초간단 세팅 스크립트

  10. [vim] vim 명령으로  문자 제거하기 (remove 65279 bomb)

  11. [ppt] Macro for board game 발표자료 (@Team Study 2013.01.18)

  12. [mysql] ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

Board Pagination Prev 1 ... 80 81 82 83 84 85 86 87 88 89 ... 98 Next
/ 98