其他分享
首页 > 其他分享> > Openvswitch手册(8): ovs-vsctl的DB的操作

Openvswitch手册(8): ovs-vsctl的DB的操作

作者:互联网

 

ovs-vsctl的DB的操作

 

如果你在命令行里面找不到相应的命令创建和删除对象,则可以直接删除数据库

[−−if−exists] [−−columns=column[,column]...] list table [record]...

$ sudo ovs-vsctl list bridge 
_uuid               : 91cd3178-fe2d-4004-85b6-f0f01fcc8b51 
controller          : [] 
datapath_id         : "00007a31cd910440" 
datapath_type       : "" 
external_ids        : {} 
fail_mode           : [] 
flood_vlans         : [] 
flow_tables         : {} 
ipfix               : [] 
mirrors             : [] 
name                : helloother 
netflow             : [] 
other_config        : {} 
ports               : [20682bfb-ea46-497e-940f-43f48f00da84, 7dce6e3c-cedd-4bf0-b9dc-f8e90e8788c2, 83489fb4-f8c3-4a32-9bc4-b4cb484dd684] 
protocols           : [] 
sflow               : [] 
status              : {} 
stp_enable          : false

_uuid               : b491acba-c237-4942-94c8-14afad6d1a36 
controller          : [] 
datapath_id         : "0000baac91b44249" 
datapath_type       : "" 
external_ids        : {} 
fail_mode           : [] 
flood_vlans         : [] 
flow_tables         : {} 
ipfix               : [] 
mirrors             : [] 
name                : hello 
netflow             : [] 
other_config        : {} 
ports               : [90a3fc08-5eea-4d69-bb00-c25250d94d33, bbdf854e-06d5-42f9-8074-98f608248860, c1a8c0f7-11c7-42fd-a272-0961a9aa6522, c5e0caca-5387-4e19-b4d5-25c58eb1257c, e7b71762-f0ac-4cf9-afb6-686e10c23518] 
protocols           : [] 
sflow               : [] 
status              : {} 
stp_enable          : false

[−−columns=column[,column]...] find table [column[:key]=value]...

$ sudo ovs-vsctl find port name=first_br 
_uuid               : c5e0caca-5387-4e19-b4d5-25c58eb1257c 
bond_downdelay      : 0 
bond_fake_iface     : false 
bond_mode           : [] 
bond_updelay        : 0 
external_ids        : {} 
fake_bridge         : false 
interfaces          : [b0645fc3-c977-42ca-a234-5e84f1a9801a] 
lacp                : [] 
mac                 : [] 
name                : first_br 
other_config        : {} 
qos                 : ce7cfd43-8369-4ce6-a7fd-4e0b79307c10 
statistics          : {} 
status              : {} 
tag                 : [] 
trunks              : [] 
vlan_mode           : []

 

[−−if−exists] [−−columns=column[,column]...] list table [record]...

[−−columns=column[,column]...] find table [column[:key]=value]...

[−−if−exists] [−−id=@name] get table record [column[:key]]...

[−−if−exists] set table record column[:key]=value...

[−−if−exists] add table record column [key=]value...

[−−if−exists] remove table record column value...

[−−if−exists] remove table record column key...

[−−if−exists] remove table record column key=value...

[−−if−exists] clear table record column...

[−−id=@name] create table column[:key]=value...

[−−if−exists] destroy table record...

−−all destroy table

标签:ovs,vsctl,exists,column,DB,value,record,key,table
来源: https://www.cnblogs.com/liuhongru/p/11402065.html