You cannot add wireless LAN interfaces to bridge interfaces on Linux (Ubuntu 16.04.4 LTS).
#brctl addbr br0
# brctl addif br0wlp1s0
can't add wlp1s0 to bridge br0: Operation not supported
wlp1s0
is the interface of the wireless LAN.
The PC is Surface pro3 and the wireless LAN is mwifiex_pcie
.
How can I add it to the bridge interface?
linux
< p > get answers itself, < / >
I was looking at the source of the Linux kernel.
net/wireless/core.c
code
if ((wdev->iftype==NL80211_IFTYPE_STATION||
wdev->iftype==NL80211_IFTYPE_P2P_CLIENT||
wdev->iftype==NL80211_IFTYPE_ADHOC)&!wdev->use_4addr)
dev->priv_flags | =IFF_DONT_BRIDGE;
It seems that the wireless LAN interface cannot be added to the bridge.
There seems to be no other way but to modify the kernel.
613 GDB gets version error when attempting to debug with the Presense SDK (IDE)
578 Understanding How to Configure Google API Key
922 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
573 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
© 2024 OneMinuteCode. All rights reserved.