gpt4 book ai didi

linux - 在Linux中,如何连接两个vNIC?

转载 作者:太空宇宙 更新时间:2023-11-04 05:00:54 25 4
gpt4 key购买 nike

这是我的问题:我在 Centos 上创建了 VLAN 设备 eth0.10 和 veth-pair(if_in 和 if_out),如何将 eth0.10 连接到 if_in ??

ip 链接添加链接 eth0 名称 eth0.10 类型 vlan 协议(protocol) 802.1Q id 100

ip 链接添加名称 if_in 类型 veth 对等名称 if_out

我对linux虚拟网络不是很了解,有什么办法可以解决这个问题吗?我真的很感激

最佳答案

您可以使用虚拟交换机或网桥,如 this page 中所述。 .

尽管该页面使用了网络命名空间,但基本思想仍然是将 eth0.10 和 if_in 添加到同一个 vswitch/bridge 中,并让 openvswitch/linux 桥来完成工作。

使用 Linux 桥接器的一个示例:

# create the switch
BRIDGE=br-test
brctl addbr $BRIDGE
brctl stp $BRIDGE off
ip link set dev $BRIDGE up
brctl addif br-test eth0.10
brctl addif br-test if_in

关于linux - 在Linux中,如何连接两个vNIC?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33387438/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com