Created
September 29, 2014 23:08
-
-
Save mrunalp/a1b82375a21684465f27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@localhost ~]# ovs-vsctl show | |
60741b68-4d89-4cee-989c-1e5a7718731e | |
Bridge "br0" | |
fail_mode: secure | |
Port vethd | |
Interface vethd | |
Port vethc | |
Interface vethc | |
Port "vxlan0" | |
Interface "vxlan0" | |
type: vxlan | |
options: {remote_ip="192.168.122.207"} | |
Port "br0" | |
Interface "br0" | |
type: internal | |
ovs_version: "2.3.0" | |
[root@localhost ~]# ovs-ofctl -O OpenFlow13 dump-flows br0 | |
OFPST_FLOW reply (OF1.3) (xid=0x2): | |
cookie=0x0, duration=744.381s, table=0, n_packets=10, n_bytes=756, actions=NORMAL | |
[root@localhost ~]# lsmod | grep open | |
openvswitch 69940 0 | |
gre 13535 1 openvswitch | |
vxlan 37333 1 openvswitch | |
libcrc32c 12603 1 openvswitch | |
[root@localhost ~]# | |
[root@localhost ~]# ovs-vsctl show | |
a835fb57-fb1f-452d-bdc4-09ba3c3b29ca | |
Bridge "br0" | |
fail_mode: secure | |
Port vethb | |
Interface vethb | |
Port vetha | |
Interface vetha | |
Port "vxlan0" | |
Interface "vxlan0" | |
type: vxlan | |
options: {remote_ip="192.168.122.26"} | |
Port "br0" | |
Interface "br0" | |
type: internal | |
ovs_version: "2.3.0" | |
[root@localhost ~]# ovs-ofctl -O OpenFlow13 dump-flows br0 | |
OFPST_FLOW reply (OF1.3) (xid=0x2): | |
cookie=0x0, duration=553.580s, table=0, n_packets=9, n_bytes=378, actions=NORMAL | |
[root@localhost ~]# lsmod | grep open | |
openvswitch 69940 0 | |
gre 13535 1 openvswitch | |
vxlan 37333 1 openvswitch | |
libcrc32c 12603 1 openvswitch | |
[root@localhost ~]# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment