Commit 1e253c3b8a1aeed51eef6fc366812f219b97de65
Committed by
David S. Miller
1 parent
a5c30b349b
Exists in
master
and in
7 other branches
bridge: Forward reserved group addresses if !STP
Make all frames sent to reserved group MAC addresses (01:80:c2:00:00:00 to 01:80:c2:00:00:0f) be forwarded if STP is disabled. This enables forwarding EAPOL frames, among other things. Signed-off-by: Benjamin Poirier <benjamin.poirier@polymtl.ca> Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
net/bridge/br_input.c
... | ... | @@ -159,7 +159,7 @@ |
159 | 159 | goto drop; |
160 | 160 | |
161 | 161 | /* If STP is turned off, then forward */ |
162 | - if (p->br->stp_enabled == BR_NO_STP && dest[5] == 0) | |
162 | + if (p->br->stp_enabled == BR_NO_STP) | |
163 | 163 | goto forward; |
164 | 164 | |
165 | 165 | if (NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_IN, skb, skb->dev, |