-stable review patch. If anyone has any objections, please let us know. ------------------ --- net/bridge/netfilter/ebt_ip.c | 3 +++ 1 file changed, 3 insertions(+) --- linux-2.6.15.y.orig/net/bridge/netfilter/ebt_ip.c +++ linux-2.6.15.y/net/bridge/netfilter/ebt_ip.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include @@ -51,6 +52,8 @@ static int ebt_filter_ip(const struct sk if (!(info->bitmask & EBT_IP_DPORT) && !(info->bitmask & EBT_IP_SPORT)) return EBT_MATCH; + if (ntohs(ih->frag_off) & IP_OFFSET) + return EBT_NOMATCH; pptr = skb_header_pointer(skb, ih->ihl*4, sizeof(_ports), &_ports); if (pptr == NULL) --