public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/4] udev: Do not use MACVTAP for any wireless devices
@ 2016-12-29 19:37 Jonatan Schlag
  2016-12-29 19:37 ` [PATCH 2/4] network: Support bridge mode for zones Jonatan Schlag
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jonatan Schlag @ 2016-12-29 19:37 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1034 bytes --]

Fixes #11179

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 config/udev/network-hotplug-rename | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/config/udev/network-hotplug-rename b/config/udev/network-hotplug-rename
index aaae641..1f8d5e1 100644
--- a/config/udev/network-hotplug-rename
+++ b/config/udev/network-hotplug-rename
@@ -67,11 +67,21 @@ for zone in ${ZONES}; do
 
 	# If a matching interface has been found we will
 	# print the name to which udev will rename it.
-	if [ "${!mode}" = "macvtap" ]; then
-		echo "${!device}phys"
-	else
-		echo "${!device}"
-	fi
+	case "${!mode}" in
+		macvtap)
+			# MACVTAP mode doesn't work for WiFi devices
+			if [ -d "/sys/class/net/${INTERFACE}/phy80211" ]; then
+				logger -t network "MACVTAP mode is not supported for wireless devices"
+				echo "${!device}"
+			else
+				echo "${!device}phys"
+			fi
+			;;
+
+		*)
+			echo "${!device}"
+			;;
+	esac
 
 	exit 0
 done
-- 
2.7.4


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-12-29 19:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-29 19:37 [PATCH 1/4] udev: Do not use MACVTAP for any wireless devices Jonatan Schlag
2016-12-29 19:37 ` [PATCH 2/4] network: Support bridge mode for zones Jonatan Schlag
2016-12-29 19:37 ` [PATCH 3/4] network: Rename MACVTAP script Jonatan Schlag
2016-12-29 19:37 ` [PATCH 4/4] core109: Ship network bridge changes Jonatan Schlag

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox