"리눅스 iptables IP 차단"의 두 판 사이의 차이

잔글 (Iptables IP 차단 문서를 리눅스 iptables IP 차단(으)로 옮김)
19번째 줄: 19번째 줄:


;실행예시
;실행예시
<source lang='dos'>
[root@jmnote ~]# iptables -A INPUT -s 111.222.33.44 -j DROP
[root@jmnote ~]# iptables -L
Chain INPUT (policy ACCEPT)
target    prot opt source              destination       
DROP      all  --  111.222.33.44      anywhere           
Chain FORWARD (policy ACCEPT)
target    prot opt source              destination       
Chain OUTPUT (policy ACCEPT)
target    prot opt source              destination       
</source>


==같이 보기==
==같이 보기==

2013년 2월 21일 (목) 01:01 판

리눅스 iptables IP 차단
리눅스 OS방화벽으로 특정 IP 차단

1 방법

명령어
iptables -A INPUT -s 아이피 -j DROP
명령어 예시
iptables -A INPUT -s 111.222.33.44 -j DROP
→ 111.222.33.44 차단
iptables -A INPUT -s 111.222.33.0/24 -j DROP
→ 111.222.33.X 대역 차단
실행예시
[root@jmnote ~]# iptables -A INPUT -s 111.222.33.44 -j DROP
[root@jmnote ~]# iptables -L
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
DROP       all  --  111.222.33.44       anywhere            

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}