2.6.x Kernel 에서 bridge firewall 구성 시 Forward Drop 문제
기존 kernel 2.4 환경에서 bridge firewall 구성 시, iptables 에 패치를 통해 이러한 문제가 없었는데..
2.6 환경에서는 forward 부분에서 drop 을 시켜도 모두 accept 되는 현상이 나타난다.
2.6 환경에서 firewall 밑에 서버들에게 패킷을 forward 할때 정상적으로 drop, accept rule 을 적용하기
위해서는 아래 커널 파라메터 설정이 필요하다.
sysctl -w net.bridge.bridge-nf-call-iptables=1
sysctl -w net.bridge.bridge-nf-call-ip6tables=1
sysctl -w net.bridge.bridge-nf-call-arptables=1
soft jazz