LXC:无法将wlan0接口物理地传递给容器

我正在尝试从主机移动到以下configuration容器wlan0接口,

 lxc.network.type = phys lxc.network.link = wlan0 lxc.network.hwaddr = ab:cd:ef:gh:ij lxc.network.flags = up 

这与我的外部TP-Link WiFiencryption狗完美配合,通过运行ifconfig可以看到容器内可用的wlan0接口

但我也有一个集成的ALPS WIFI芯片,相同的容器configuration将无法正常工作,并出现以下错误。

 lxc-start 20170704134254.641 ERROR lxc_conf - conf.c:lxc_assign_network:3102 - failed to move 'wlan0' to the container : Operation not permitted lxc-start 20170704134254.641 ERROR lxc_start - start.c:lxc_spawn:1199 - Failed to create the configured network. lxc-start 20170704134254.641 INFO lxc_conf - conf.c:lxc_delete_network:2926 - Interface "eth0" with index 6 already deleted or existing in different network namespace. lxc-start 20170704134254.710 INFO lxc_conf - conf.c:lxc_delete_network:2961 - Removed interface "vethQVT9W2" from host. lxc-start 20170704134254.711 ERROR lxc_start - start.c:__lxc_start:1338 - Failed to spawn container "my-cont". lxc-start 20170704134254.779 WARN lxc_commands - commands.c:lxc_cmd_rsp_recv:172 - command get_cgroup failed to receive response lxc-start 20170704134259.784 ERROR lxc_start_ui - lxc_start.c:main:360 - The container failed to start. lxc-start 20170704134259.784 ERROR lxc_start_ui - lxc_start.c:main:362 - To get more details, run the container in foreground mode. lxc-start 20170704134259.784 ERROR lxc_start_ui - lxc_start.c:main:364 - Additional information can be obtained by setting the --logfile and --logpriority options. 

我也发现一个线程 ,直到sysfs虚拟化没有最终确定内核将有这个限制。

如果是这样的话,它是如何工作的,我的外部WiFiencryption狗?

或者是我错过的其他东西?