8 .TH ovsdb\-client 1 "November 2009" "Open vSwitch" "Open vSwitch Manual"
9 .\" This program's name:
11 .\" SSL peer program's name:
15 ovsdb\-client \- command-line interface to \fBovsdb-server\fR(1)
18 \fBovsdb\-client \fR[\fIoptions\fR] \fBlist\-dbs\fI server\fR
20 \fBovsdb\-client \fR[\fIoptions\fR] \fBget\-schema\fI server database\fR
22 \fBovsdb\-client \fR[\fIoptions\fR] \fBget\-schema\-version\fI server database\fR
24 \fBovsdb\-client \fR[\fIoptions\fR] \fBlist\-tables\fI server database\fR
26 \fBovsdb\-client \fR[\fIoptions\fR] \fBlist\-columns\fI server database \fR[\fItable\fR]
28 \fBovsdb\-client \fR[\fIoptions\fR] \fBtransact\fI server transaction\fR
30 \fBovsdb\-client \fR[\fIoptions\fR] \fBdump\fI server database\fR
32 \fBovsdb\-client \fR[\fIoptions\fR] \fBmonitor\fI server database table\fR
33 [\fIcolumn\fR[\fB,\fIcolumn\fR]...]...
35 \fBovsdb\-client help\fR
36 .IP "Output formatting options:"
37 [\fB\-\-format=\fIformat\fR]
38 [\fB\-\-no\-heading\fR]
39 .so lib/daemon-syn.man
42 .so lib/ssl-bootstrap-syn.man
43 .so lib/common-syn.man
46 The \fBovsdb\-client\fR program is a command-line client for
47 interacting with a running \fBovsdb\-server\fR process. For each
48 command, the \fIserver\fR to connect to must be specified in one of
51 .so ovsdb/remote-active.man
52 .so ovsdb/remote-passive.man
56 The following commands are implemented:
57 .IP "\fBlist\-dbs\fI server\fR"
58 Connects to \fIserver\fR, retrieves the list of known databases, and
59 prints them one per line. These database names are the ones that may
60 be used for \fIdatabase\fR in the following commands.
62 .IP "\fBget\-schema\fI server database\fR"
63 Connects to \fIserver\fR, retrieves the schema for \fIdatabase\fR, and
64 prints it in JSON format.
66 .IP "\fBget\-schema\-version\fI server database\fR"
67 Connects to \fIserver\fR, retrieves the schema for \fIdatabase\fR, and
68 prints its version number on stdout. A schema version number has the form
69 \fIx\fB.\fIy\fB.\fIz\fR. See \fBovs\-vswitchd.conf.db\fR(5) for
72 Schema version numbers and Open vSwitch version numbers are
75 If \fIdatabase\fR was created before schema versioning was introduced,
76 then it will not have a version number and this command will print a
79 .IP "\fBlist\-tables\fI server database\fR"
80 Connects to \fIserver\fR, retrieves the schema for \fIdatabase\fR, and
81 prints a table listing the name of each table
84 .IP "\fBlist\-columns\fI server database \fR[\fItable\fR]"
85 Connects to \fIserver\fR, retrieves the schema for \fIdatabase\fR, and
86 prints a table listing the name and type of each
87 column. If \fItable\fR is specified, only columns in that table are
88 listed; otherwise, the tables include columns in all tables.
90 .IP "\fBtransact\fI server transaction\fR"
91 Connects to \fIserver\fR, sends it the specified \fItransaction\fR,
92 which must be a JSON array containing one or more valid OVSDB
93 operations, and prints the received reply on stdout.
95 .IP "\fBdump\fI server database\fR"
96 Connects to \fIserver\fR, retrieves all of the data in \fIdatabase\fR,
97 and prints it on stdout as a series of tables.
99 .IP "\fBmonitor\fI server database table\fR [\fIcolumn\fR[\fB,\fIcolumn\fR]...]..."
100 Connects to \fIserver\fR and monitors the contents of \fItable\fR in
101 \fIdatabase\fR. By default, the initial contents of \fItable\fR are
102 printed, followed by each change as it occurs. If at least one
103 \fIcolumn\fR is specified, only those columns are monitored. The
104 following \fIcolumn\fR names have special meanings:
107 Do not print the initial contents of the specified columns.
109 Do not print newly inserted rows.
111 Do not print deleted rows.
113 Do not print modifications to existing rows.
116 Multiple [\fIcolumn\fR[\fB,\fIcolumn\fR]...] groups may be specified
117 as separate arguments, e.g. to apply different reporting parameters to
118 each group. Whether multiple groups or only a single group is
119 specified, any given column may only be mentioned once on the command
122 If \fB\-\-detach\fR is used with \fBmonitor\fR, then \fBovsdb\-client\fR
123 detaches after it has successfully received and printed the initial
124 contents of \fItable\fR.
126 .SS "Output Formatting Options"
127 Much of the output from \fBovsdb\-client\fR is in the form of tables.
128 The following options controlling output formatting:
134 The daemon options apply only to the \fBmonitor\fR command. With any
135 other command, they have no effect.
138 .SS "Logging Options"
140 .SS "Public Key Infrastructure Options"
142 .so lib/ssl-bootstrap.man
147 \fBovsdb\-server\fR(1),
148 \fBovsdb\-client\fR(1),
149 and the OVSDB specification.