From patchwork Thu Apr 20 15:39:26 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lance Richardson X-Patchwork-Id: 752850 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from mail.linuxfoundation.org (mail.linuxfoundation.org [140.211.169.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3w83332lPgz9s4s for ; Fri, 21 Apr 2017 01:39:59 +1000 (AEST) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id 861F3C2F; Thu, 20 Apr 2017 15:39:29 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@mail.linuxfoundation.org Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id 3FC03BC5 for ; Thu, 20 Apr 2017 15:39:28 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id C8BAB14F for ; Thu, 20 Apr 2017 15:39:27 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3BFD94E4CA for ; Thu, 20 Apr 2017 15:39:27 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 3BFD94E4CA Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=lrichard@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 3BFD94E4CA Received: from thinkcentre.localdomain.com (ovpn-124-242.rdu2.redhat.com [10.10.124.242]) by smtp.corp.redhat.com (Postfix) with ESMTP id 00C9D8F128 for ; Thu, 20 Apr 2017 15:39:26 +0000 (UTC) From: Lance Richardson To: dev@openvswitch.org Date: Thu, 20 Apr 2017 11:39:26 -0400 Message-Id: <20170420153926.4170-1-lrichard@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Thu, 20 Apr 2017 15:39:27 +0000 (UTC) X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.linux-foundation.org Subject: [ovs-dev] [PATCH 1/3] ovsdb: add xml equivalents of remote man page fragments X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: ovs-dev-bounces@openvswitch.org Errors-To: ovs-dev-bounces@openvswitch.org Add XML equivalents for remote-active.man and remote-passive.man for inclusion by man pages using XML format. Signed-off-by: Lance Richardson --- ovsdb/remote-active.xml | 30 ++++++++++++++++++++++++++++++ ovsdb/remote-passive.xml | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 ovsdb/remote-active.xml create mode 100644 ovsdb/remote-passive.xml diff --git a/ovsdb/remote-active.xml b/ovsdb/remote-active.xml new file mode 100644 index 0000000..fe4801c --- /dev/null +++ b/ovsdb/remote-active.xml @@ -0,0 +1,30 @@ + +
+
ssl:ip:port
+
+ The specified SSL port on the host at the given ip, + which must be expressed as an IP address (not a DNS name) in IPv4 or IPv6 + address format. If ip is an IPv6 address, then wrap + ip with square brackets, e.g.: ssl:[::1]:6640. + The --private-key, --certificate, and + --ca-cert options are mandatory when this form is used. +
+
tcp:ip:port
+
+ Connect to the given TCP port on ip, where + ip can be an IPv4 or IPv6 address. If ip is an + IPv6 address, then wrap ip with square brackets, e.g.: + tcp:[::1]:6640. +
+
unix:file
+
+

+ On POSIX, connect to the Unix domain server socket named file. +

+

+ On Windows, connect to a local named pipe that is represented by a file + created in the path file to mimic the behavior of a Unix domain + socket. +

+
+
diff --git a/ovsdb/remote-passive.xml b/ovsdb/remote-passive.xml new file mode 100644 index 0000000..6056b1e --- /dev/null +++ b/ovsdb/remote-passive.xml @@ -0,0 +1,36 @@ + +
+
pssl:port:ip
+
+ Listen on the given SSL port for a connection. By default, + connections are not bound to a particular local IP address and + it listens only on IPv4 (but not IPv6) addresses, but + specifying ip limits connections to those from the given + ip, either IPv4 or IPv6 address. If ip is + an IPv6 address, then wrap ip with square brackets, e.g.: + pssl:6640:[::1]. The --private-key, + --certificate, and --ca-cert options are + mandatory when this form is used. +
+
ptcp:port:ip
+
+ Listen on the given TCP port for a connection. By default, + connections are not bound to a particular local IP address and + it listens only on IPv4 (but not IPv6) addresses, but + ip may be specified to listen only for connections to the given + ip, either IPv4 or IPv6 address. If ip is + an IPv6 address, then wrap ip with square brackets, e.g.: + ptcp:6640:[::1]. +
+
punix:file
+
+

+ On POSIX, listen on the Unix domain server socket named \fIfile\fR for a + connection. +

+

+ On Windows, listen on a local named pipe. A file is created in the + path file to mimic the behavior of a Unix domain socket. +

+
+