On Mon, Feb 16, 2015 at 2:44 AM, Flora Mittal <[email protected]> wrote:
> Hi All,
> We are facing a problem in
> ovs-vsctl set interface <interface> ofport_request=<no>
>
> The OutPut is as follows :
>
> [root@localhost student]# ovs-vsctl show
> bded31da-c5ad-4d51-93bd-136c0fbdde43
>     ovs_version: "1.4.2"
>
> [root@localhost student]# ovs-vsctl add-br br0
>
> [root@localhost student]# ovs-vsctl add-port br0 p1
>
> [root@localhost student]# ovs-vsctl show
> bded31da-c5ad-4d51-93bd-136c0fbdde43
>     Bridge "br0"
>         Port "br0"
>             Interface "br0"
>                 type: internal
>         Port "p1"
>             Interface "p1"
>     ovs_version: "1.4.2"
>
> [root@localhost student]# ovs-vsctl list interface
> _uuid               : 6e0dcdc9-d48f-40c5-bc9b-243817acc48a
> admin_state         : []
> cfm_fault           : []
> cfm_mpid            : []
> cfm_remote_mpids    : []
> duplex              : []
> external_ids        : {}
> ingress_policing_burst: 0
> ingress_policing_rate: 0
> lacp_current        : []
> link_resets         : []
> link_speed          : []
> link_state          : []
> mac                 : []
> mtu                 : []
> name                : "p1"
> ofport              : -1
> options             : {}
> other_config        : {}
> statistics          : {}
> status              : {}
> type                : ""
>
> _uuid               : 6dd7b916-574a-444e-867e-44150fff3a5f
> name                : "br0"
> type                : internal
> ...<edited>more info for br0
>
> [root@localhost student]# ovs-vsctl set interface p1 ofport=11
>
> [root@localhost student]# ovs-vsctl list interface
> _uuid               : 6e0dcdc9-d48f-40c5-bc9b-243817acc48a
> admin_state         : []
> cfm_fault           : []
> cfm_mpid            : []
> cfm_remote_mpids    : []
> duplex              : []
> external_ids        : {}
> ingress_policing_burst: 0
> ingress_policing_rate: 0
> lacp_current        : []
> link_resets         : []
> link_speed          : []
> link_state          : []
> mac                 : []
> mtu                 : []
> name                : "p1"
> ofport              : -1
> options             : {}
> other_config        : {}
> statistics          : {}
> status              : {}
> type                : ""
>
> _uuid               : 6dd7b916-574a-444e-867e-44150fff3a5f
> name                : "br0"
> type                : internal
> ...<edited>more info for br0
>
> [root@localhost student]# ovs-vsctl set interface p1 ofport_request=11
> ovs-vsctl: Interface does not contain a column whose name matches
> "ofport_request"

Such errors that indicate that column does not exist typically mean
that you are running old Open vSwitch version that has old OVSDB
schema definition.

Try to upgrade to 1.10 or later OVS version to get the OVSDB schema
that has ofport_request column.
>
>
> _______________________________________________
> discuss mailing list
> [email protected]
> http://openvswitch.org/mailman/listinfo/discuss
>
_______________________________________________
discuss mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/discuss

Reply via email to