iptable 에 존재하는 테이블 목록은
filter / nat / mangle/ raw
네가지 이다.
[링크 : http://www.linuxreport.org/content/view/26/23/]
iptable 에서 "관리"하는 목록은 proc fs에 존재하며
해당 테이블의 규칙 보는 방법은 -L 옵션을 사용하면 된다.
[링크 : http://forum.soft32.com/linux2/iptables-list-tables-ftopict29473.html]
filter / nat / mangle/ raw
네가지 이다.
[링크 : http://www.linuxreport.org/content/view/26/23/]
[링크 : http://linux.die.net/man/8/iptables] |
iptable 에서 "관리"하는 목록은 proc fs에 존재하며
해당 테이블의 규칙 보는 방법은 -L 옵션을 사용하면 된다.
$ sudo cat /proc/net/ip_tables_names
mangle
$ sudo iptables -t mangle -L
Chain PREROUTING (policy ACCEPT)
target prot opt source destination
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 POSTROUTING (policy ACCEPT)
target prot opt source destination
|
'Linux > Ubuntu' 카테고리의 다른 글
Ubuntu 11.10 gdm 종료하기 (0) | 2012.02.10 |
---|---|
설치되어있는 패키지의 설치된 경로 알아내기 (0) | 2012.02.05 |
169.254.0.0/16 넌 누구니? (0) | 2012.01.19 |
2개의 망 동시에 사용하기 (0) | 2012.01.18 |
lshw - 하드웨어 목록 출력 (2) | 2012.01.14 |