查看交换机中的所有 Table
ovs-ofctl dump-tables ovs-switch
查看交换机中的所有流表项
ovs-ofctl dump-flows ovs-switch
删除编号为 100 的端口上的所有流表项
ovs-ofctl del-flows ovs-switch "in_port=100"
查看交换机上的端口信息
ovs-ofctl show ovs-switch
Configure openVswitch with POX controller
Configure openVswitch in openVswitch in PC1
PC1 eth0.10 interface IP is 192.168.10.100
#We attach PC1 eth0.10 interface to the bridge connection between openVswitch in PC1 and controller
$sudo ovs-vsctl add-br br0
$sudo ovs-vsctl add-port br0 eth0.10
$sudo ifconfig br0 192.168.10.100 netmask 255.255.255.0
// Define the switch's policy if connection with the server is lost
// standalone or secure, see ovs-vsctl manual
root@debian:/# ovs-vsctl set-fail-mode ovs-switch standalon
#Attach OpenvSwitch to the Controller which is in 192.168.100.30
$ovs-vsctl set-controller br0 tcp:192.168.100.30:6633
To remove openVswitch bridge connection
$sudo ovs-vsctl del-br br-0
$sudo ovs-vsctl del-port br-0 eth0.10
To remove the Controller
$sudo ovs-vsctl del-controller br-0
http://windysdn.blogspot.com/2013/10/configure-openvswitch-with-pox.html
No comments:
Post a Comment