The range of "PRIORITY" for "ovn-nbctl acl-add " command is 1 to 65534 in ovn-nbctl.8.xml",When configuring this command, it indicates that " priority must in range 0...32767".The range of priority is inconsistent in "ovn-nbctl.8.xml" and "ovn-nbctl.c".
Signed-off-by: zhaojingjing <[email protected]> --- ovn/utilities/ovn-nbctl.8.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovn/utilities/ovn-nbctl.8.xml b/ovn/utilities/ovn-nbctl.8.xml index b8fdd79..d6bd79e 100644 --- a/ovn/utilities/ovn-nbctl.8.xml +++ b/ovn/utilities/ovn-nbctl.8.xml @@ -81,7 +81,7 @@ Adds the specified ACL to <var>switch</var>. <var>direction</var> must be either <code>from-lport</code> or <code>to-lport</code>. <var>priority</var> must be between - <code>1</code> and <code>65534</code>, inclusive. If + <code>0</code> and <code>32767</code>, inclusive. If <code>--log</code> is specified, packet logging is enabled for the ACL. A full description of the fields are in <code>ovn-nb</code>(5). </dd> -- 1.8.3.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
