iptables 관련

· 13년 전 · 1075
Describe iptables 관련 자료 here

  • 체인 생성 (-N).
  • 체인 제거 (-X).
  • 체인 정책 변경 (-P)
  • 체인 규칙 나열 (-L)
  • 체인 규칙들 삭제 (-F)
  • 체인 규칙 패킷과 바이트 카운드 0 (-Z)

체인 내부 규칙 조작 


  • 규칙 추가 (-A)
  • 규칙 삽입 (-I)
  • 규칙 교환 (-R)
  • 규칙 제거 (-D) 

세부 내용 


  • 127.0.0.1 은 'loopback' 인터페이스
  • 테스트에 유용
byoungguk@linuxtip:~$ ping -c 1 127.0.0.1
PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.
64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.040 ms

--- 127.0.0.1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.040/0.040/0.040/0.000 ms

[root@localhost ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination  

  • ping 막기
[root@localhost ~]# iptables -A INPUT -s 127.0.0.1 -p icmp -j DROP
[root@localhost ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
DROP       icmp --  127.0.0.1            0.0.0.0/0          

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         
[root@localhost ~]# ping -c 1 127.0.0.1
PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.

--- 127.0.0.1 ping statistics ---
1 packets transmitted, 0 received, 100% packet loss, time 0ms


  • 규칙 제거
[root@localhost ~]# iptables -D INPUT 1
[root@localhost ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination  
[root@localhost ~]# iptables -D INPUT -s 127.0.0.1 -p icmp -j DROP
[root@localhost ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         

  • 옵션
'-s', '--source', '--src'
'-d', '--destination', '--dst'
'-s ! localhost' => localhost 로 부터 오는 패킷 아닌 경우
'-p ! TCP'
'-i'('--in-interface')와 '-o'('--out-interface')

  • 체인 생성
[root@localhost ~]# iptables -N byoungguk
[root@localhost ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         

Chain byoungguk (0 references)
target     prot opt source               destination

  • 체인 삭제
[root@localhost ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination 

  • 체인 세부 내용 비우기
[root@localhost ~]# iptables -F FORWARD

  • 모든 체인 내용 비우기
[root@localhost ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
DROP       icmp --  127.0.0.1            0.0.0.0/0           

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         
DROP       icmp --  127.0.0.1            0.0.0.0/0           

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         
DROP       icmp --  127.0.0.1            0.0.0.0/0           
[root@localhost ~]# iptables -F
[root@localhost ~]# iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination    
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
13년 전 조회 2,121
13년 전 조회 2,790
13년 전 조회 1,487
13년 전 조회 1,378
13년 전 조회 2,749
13년 전 조회 1,338
13년 전 조회 1,310
13년 전 조회 1,625
13년 전 조회 1,349
13년 전 조회 1,221
13년 전 조회 1,622
13년 전 조회 1,749
13년 전 조회 1,760
13년 전 조회 1,510
13년 전 조회 2,486
13년 전 조회 1,670
13년 전 조회 1,244
13년 전 조회 1,498
13년 전 조회 2,068
13년 전 조회 1,558
13년 전 조회 1,201
13년 전 조회 1,722
13년 전 조회 2,247
13년 전 조회 1,245
13년 전 조회 1,245
13년 전 조회 1,134
13년 전 조회 1,474
13년 전 조회 1,153
13년 전 조회 1,743
13년 전 조회 1,713
13년 전 조회 2,195
13년 전 조회 1,324
13년 전 조회 1,544
13년 전 조회 5,278
13년 전 조회 1,782
13년 전 조회 1,134
13년 전 조회 1,183
13년 전 조회 1,357
13년 전 조회 1,800
13년 전 조회 1,133
13년 전 조회 2,066
13년 전 조회 2,324
13년 전 조회 1,202
13년 전 조회 1,097
13년 전 조회 1,254
13년 전 조회 2,855
13년 전 조회 1,086
13년 전 조회 1,225
13년 전 조회 1,081
13년 전 조회 1,076
13년 전 조회 1,572
13년 전 조회 1,763
13년 전 조회 1,071
13년 전 조회 1,186
13년 전 조회 1,636
13년 전 조회 1,083
13년 전 조회 1,862
13년 전 조회 2,205
13년 전 조회 4,620
13년 전 조회 1,608
13년 전 조회 1,831
13년 전 조회 1,273
13년 전 조회 1,227
13년 전 조회 1,284
13년 전 조회 1,674
13년 전 조회 2,850
13년 전 조회 1,374
13년 전 조회 2,378
13년 전 조회 2,463
13년 전 조회 2,823
13년 전 조회 1,464
13년 전 조회 1,763
13년 전 조회 1,480
13년 전 조회 1,563
13년 전 조회 1,476
13년 전 조회 1,341
13년 전 조회 1,483
13년 전 조회 1,510
13년 전 조회 1,612
13년 전 조회 2,431
13년 전 조회 1,115
13년 전 조회 1,484
13년 전 조회 1,244
13년 전 조회 1,017
13년 전 조회 1,504
13년 전 조회 3,473
13년 전 조회 2,587
13년 전 조회 2,143
13년 전 조회 1,096
13년 전 조회 1,748
13년 전 조회 2,562
13년 전 조회 1,686
13년 전 조회 1,744
13년 전 조회 1,484
13년 전 조회 1,651
13년 전 조회 2,637
13년 전 조회 1,123
13년 전 조회 1,476
13년 전 조회 2,832
13년 전 조회 1,622