如何在Windows中连接macvlan或ipvlan for docker网络?

fumotvh3  于 2023-05-06  发布在  Docker
关注(0)|答案(1)|浏览(350)

我试图在Windows上创建像macvlan这样的docker-network,但我无法在Windows上输入网络接口名称-我知道如何在Linux中做到这一点
下面以如何在docker中创建macvlan网络为例:

docker network create -d macvlan \
    --subnet=192.168.2.0/24 \
    --gateway=192.168.2.1  \
    -o parent=YourInterface \
     demo-macvlan-net

当我在Windows中执行ipconfig /all时,我的mi wi-fi适配器的名称为:“无线局域网适配器Wi-Fi”我也试图使用“netsh接口ipv4转储”-名称是什么也不合适,但这个名字不t the same as enp0s3 or wlan0 in Linux I try to write this names (Wireless LAN adapter Wi-Fi and Wi-Fi) in cmd (where -o parent=YourInterface) but it didn t工作?我收到了这个“来自守护程序的错误响应:invalid subinterface vlan name Wi-Fi,example formatting is eth0.10”What i do wrong?

bcs8qyzn

bcs8qyzn1#

macvlan网络驱动程序仅适用于Linux主机,不受Docker Desktop for Mac、Docker Desktop for Windows或Docker EE for Windows Server支持。
参考:macvlan tutorial

相关问题