玩转Openvswitch之综合篇
这是一个Openvswitch的综合实例。
1. 创建一个bridge
ovs-vsctl add-br helloworld
创建四个veth pair
ip link add first_br type veth peer name first_if
ip link add second_br type veth peer name second_if
ip link add third_br type veth peer name third_if
ip link add forth_br type veth peer name forth_if
添加四个端口port,ofport_request是指定端口号
ovs-vsctl add-port helloworld first_br -- set Interface first_br ofport_request=1
ovs-vsctl add-port helloworld second_br -- set Interface second_br ofpor
共有 0 条评论