aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-2.6.30
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-01-25 00:25:49 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-01-25 00:25:49 +0000
commit23c966a388cf47306480358f4812d163dea22d91 (patch)
tree784dac9d8646c1c127d148b81f91198fee39daa0 /target/linux/generic/patches-2.6.30
parent0e6529d50cd7fb356c4d9d26f076d787f3f74c7c (diff)
downloadupstream-23c966a388cf47306480358f4812d163dea22d91.tar.gz
upstream-23c966a388cf47306480358f4812d163dea22d91.tar.bz2
upstream-23c966a388cf47306480358f4812d163dea22d91.zip
kernel: when bridging, do not forward EAP frames to other ports, only deliver them locally fixes WPA authentication issues with multiples APs that are connected to each other via bridges
SVN-Revision: 25095
Diffstat (limited to 'target/linux/generic/patches-2.6.30')
-rw-r--r--target/linux/generic/patches-2.6.30/280-bridge_no_eap_forward.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/generic/patches-2.6.30/280-bridge_no_eap_forward.patch b/target/linux/generic/patches-2.6.30/280-bridge_no_eap_forward.patch
new file mode 100644
index 0000000000..6d50a8076c
--- /dev/null
+++ b/target/linux/generic/patches-2.6.30/280-bridge_no_eap_forward.patch
@@ -0,0 +1,15 @@
+--- a/net/bridge/br_input.c
++++ b/net/bridge/br_input.c
+@@ -61,7 +61,11 @@ int br_handle_frame_finish(struct sk_buf
+
+ dst = NULL;
+
+- if (is_multicast_ether_addr(dest)) {
++ if (skb->protocol == htons(ETH_P_PAE)) {
++ skb2 = skb;
++ /* Do not forward 802.1x/EAP frames */
++ skb = NULL;
++ } else if (is_multicast_ether_addr(dest)) {
+ br->dev->stats.multicast++;
+ skb2 = skb;
+ } else if ((dst = __br_fdb_get(br, dest)) && dst->is_local) {