玩转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

玩转Openvswitch之综合篇最先出现在Python成神之路

版权声明:
作者:admin
链接:https://www.techfm.club/p/10491.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>