在 Linux 中,如何创建 3 个虚拟接口,通过虚拟交换机桥接在一起,以便它们可以互相 ping 通?
我做了什么:
tunctl -t tap1i
tunctl -t tap2i
tunctl -t tap3i
ip addr add scope link fd80::1/56 dev tap1i
ip addr add scope link fd80::2/56 dev tap2i
ip addr add scope link fd80::3/56 dev tap3i
ip link set dev tap1i up
ip link set dev tap2i up
ip link set dev tap3i up
brctl addbr r2
brctl addif r2 tap1i tap2i tap3i
问题是,brctl showstp r2
端口显示为“已禁用”,而不是预期的“转发”,并且 ping 不起作用。
我想要的是ping6 -I tap1i fd80::2
工作。
谢谢。