From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 1/4] udev: Do not use MACVTAP for any wireless devices
Date: Thu, 29 Dec 2016 20:37:31 +0100 [thread overview]
Message-ID: <1483040254-15683-1-git-send-email-jonatan.schlag@ipfire.org> (raw)
[-- 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
next reply other threads:[~2016-12-29 19:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-29 19:37 Jonatan Schlag [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1483040254-15683-1-git-send-email-jonatan.schlag@ipfire.org \
--to=jonatan.schlag@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox