mirror of
https://github.com/faucetsdn/ryu.git
synced 2025-08-07 15:17:13 +02:00
package: add python-ryu-doc
This patch adds python-ryu-doc package which contains the HTML documentation generated from doc/. Also updates the man pages in doc/source/man/. Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
parent
cc6dcbabaa
commit
03731ad04c
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -2,4 +2,4 @@ ryu (3.10-1) trusty; urgency=low
|
|||||||
|
|
||||||
* Initial release.
|
* Initial release.
|
||||||
|
|
||||||
-- Ryu Project Team <ryu-devel@lists.sourceforge.net> Mon, 16 Jun 2014 15:21:36 +0900
|
-- Ryu Project Team <ryu-devel@lists.sourceforge.net> Wed, 18 Jun 2014 14:50:23 +0900
|
||||||
|
17
debian/control
vendored
17
debian/control
vendored
@ -2,7 +2,7 @@ Source: ryu
|
|||||||
Section: net
|
Section: net
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Ryu Project Team <ryu-devel@lists.sourceforge.net>
|
Maintainer: Ryu Project Team <ryu-devel@lists.sourceforge.net>
|
||||||
Build-Depends: debhelper (>= 9.0.0), python-all (>= 2.6), txt2man
|
Build-Depends: debhelper (>= 9.0.0), python-all (>= 2.6), python-sphinx
|
||||||
Build-Depends-Indep:
|
Build-Depends-Indep:
|
||||||
python-eventlet,
|
python-eventlet,
|
||||||
python-lxml,
|
python-lxml,
|
||||||
@ -37,6 +37,7 @@ Depends:
|
|||||||
python-webob (>=1.0.8),
|
python-webob (>=1.0.8),
|
||||||
${misc:Depends},
|
${misc:Depends},
|
||||||
${python:Depends}
|
${python:Depends}
|
||||||
|
Suggests: python-ryu-doc
|
||||||
Provides: ${python:Provides}
|
Provides: ${python:Provides}
|
||||||
XB-Python-Version: ${python:Versions}
|
XB-Python-Version: ${python:Versions}
|
||||||
Description: Ryu is a software defined networking framework
|
Description: Ryu is a software defined networking framework
|
||||||
@ -65,3 +66,17 @@ Description: Ryu is a software defined networking framework
|
|||||||
Ryu supports fully 1.0, 1.2, 1.3, 1.4 and Nicira Extensions.
|
Ryu supports fully 1.0, 1.2, 1.3, 1.4 and Nicira Extensions.
|
||||||
.
|
.
|
||||||
This package provides the Ryu manager.
|
This package provides the Ryu manager.
|
||||||
|
|
||||||
|
Package: python-ryu-doc
|
||||||
|
Architecture: all
|
||||||
|
Section: doc
|
||||||
|
Description: Ryu is a software defined networking framework
|
||||||
|
Ryu is a component-based software defined networking framework.
|
||||||
|
Ryu provides software components with well defined API that make
|
||||||
|
it easy for developers to create new network management and control
|
||||||
|
applications. Ryu supports various protocols for managing network
|
||||||
|
devices, such as OpenFlow, Netconf, OF-config, etc. About OpenFlow,
|
||||||
|
Ryu supports fully 1.0, 1.2, 1.3, 1.4 and Nicira Extensions.
|
||||||
|
.
|
||||||
|
This package provides the HTML documentation including the Ryu API
|
||||||
|
manual.
|
||||||
|
9
debian/python-ryu-doc.doc-base
vendored
Normal file
9
debian/python-ryu-doc.doc-base
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Document: python-ryu-doc
|
||||||
|
Title: Ryu User Documentation
|
||||||
|
Author: Ryu Project Team
|
||||||
|
Abstract: Ryu is a component-based software defined networking framework.
|
||||||
|
Section: Programming/Python
|
||||||
|
|
||||||
|
Format: HTML
|
||||||
|
Index: /usr/share/doc/python-ryu-doc/html/index.html
|
||||||
|
Files: /usr/share/doc/python-ryu-doc/html/*.html
|
2
debian/python-ryu-doc.docs
vendored
Normal file
2
debian/python-ryu-doc.docs
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
README.rst
|
||||||
|
debian/html
|
19
debian/rules
vendored
19
debian/rules
vendored
@ -11,10 +11,18 @@ export DH_OPTIONS
|
|||||||
%:
|
%:
|
||||||
dh $@ --with python2
|
dh $@ --with python2
|
||||||
|
|
||||||
override_dh_install:
|
override_dh_installman:
|
||||||
txt2man -d 'June 2014' -t ryu-manager -v "Ryu Manager's Manual" -s 8 < debian/ryu-manager.8.txt > debian/ryu-manager.8
|
cd doc; \
|
||||||
txt2man -d 'June 2014' -t ryu -v "Ryu Command's Manual" -s 8 < debian/ryu.8.txt > debian/ryu.8
|
make man; \
|
||||||
dh_install --fail-missing -X/usr/etc -X/usr/bin/quantum
|
cp build/man/* ../debian/
|
||||||
|
dh_installman
|
||||||
|
|
||||||
|
override_dh_auto_build:
|
||||||
|
dh_auto_build
|
||||||
|
mkdir -p debian/html
|
||||||
|
cd doc; \
|
||||||
|
make html; \
|
||||||
|
cp -r build/html/* ../debian/html/
|
||||||
|
|
||||||
override_dh_installinit:
|
override_dh_installinit:
|
||||||
dh_installinit --no-start --name=ryu
|
dh_installinit --no-start --name=ryu
|
||||||
@ -22,3 +30,6 @@ override_dh_installinit:
|
|||||||
override_dh_installlogrotate:
|
override_dh_installlogrotate:
|
||||||
dh_installlogrotate --name=ryu
|
dh_installlogrotate --name=ryu
|
||||||
|
|
||||||
|
override_dh_auto_clean:
|
||||||
|
rm -rf html
|
||||||
|
dh_auto_clean
|
||||||
|
124
debian/ryu-manager.8.txt
vendored
124
debian/ryu-manager.8.txt
vendored
@ -1,124 +0,0 @@
|
|||||||
NAME
|
|
||||||
ryu-manager - management for Ryu application
|
|
||||||
|
|
||||||
SYNOPSIS
|
|
||||||
ryu-manager [-h]
|
|
||||||
[--app-lists APP_LISTS] [--ca-certs CA_CERTS]
|
|
||||||
[--config-dir DIR] [--config-file PATH]
|
|
||||||
[--ctl-cert CTL_CERT] [--ctl-privkey CTL_PRIVKEY]
|
|
||||||
[--default-log-level DEFAULT_LOG_LEVEL] [--explicit-drop]
|
|
||||||
[--install-lldp-flow] [--log-config-file LOG_CONFIG_FILE]
|
|
||||||
[--log-dir LOG_DIR] [--log-file LOG_FILE]
|
|
||||||
[--log-file-mode LOG_FILE_MODE]
|
|
||||||
[--neutron-admin-auth-url NEUTRON_ADMIN_AUTH_URL]
|
|
||||||
[--neutron-admin-password NEUTRON_ADMIN_PASSWORD]
|
|
||||||
[--neutron-admin-tenant-name NEUTRON_ADMIN_TENANT_NAME]
|
|
||||||
[--neutron-admin-username NEUTRON_ADMIN_USERNAME]
|
|
||||||
[--neutron-auth-strategy NEUTRON_AUTH_STRATEGY]
|
|
||||||
[--neutron-controller-addr NEUTRON_CONTROLLER_ADDR]
|
|
||||||
[--neutron-url NEUTRON_URL]
|
|
||||||
[--neutron-url-timeout NEUTRON_URL_TIMEOUT]
|
|
||||||
[--noexplicit-drop] [--noinstall-lldp-flow]
|
|
||||||
[--noobserve-links] [--nouse-stderr] [--nouse-syslog]
|
|
||||||
[--noverbose] [--observe-links]
|
|
||||||
[--ofp-listen-host OFP_LISTEN_HOST]
|
|
||||||
[--ofp-ssl-listen-port OFP_SSL_LISTEN_PORT]
|
|
||||||
[--ofp-tcp-listen-port OFP_TCP_LISTEN_PORT] [--use-stderr]
|
|
||||||
[--use-syslog] [--verbose] [--version]
|
|
||||||
[--wsapi-host WSAPI_HOST] [--wsapi-port WSAPI_PORT]
|
|
||||||
[--test-switch-dir TEST-SWITCH_DIR]
|
|
||||||
[--test-switch-target TEST-SWITCH_TARGET]
|
|
||||||
[--test-switch-tester TEST-SWITCH_TESTER]
|
|
||||||
[app [app ...]]
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
ryu-manager is the executable for Ryu applications. ryu-manager loads
|
|
||||||
Ryu applications and run it.
|
|
||||||
|
|
||||||
Ryu is a component-based software defined networking framework. Ryu
|
|
||||||
provides software components with well defined API that make it easy for
|
|
||||||
developers to create new network management and control applications.
|
|
||||||
Ryu supports various protocols for managing network devices, such as
|
|
||||||
OpenFlow, Netconf, OF-config, etc. About OpenFlow, Ryu supports fully
|
|
||||||
1.0, 1.2, 1.3, 1.4 and Nicira Extensions.
|
|
||||||
|
|
||||||
OPTIONS
|
|
||||||
app application module name to run
|
|
||||||
|
|
||||||
-h, --help show this help message and exit
|
|
||||||
--app-lists APP_LISTS
|
|
||||||
application module name to run
|
|
||||||
--ca-certs CA_CERTS CA certificates
|
|
||||||
--config-dir DIR Path to a config directory to pull *.conf files from.
|
|
||||||
This file set is sorted, so as to provide a
|
|
||||||
predictable parse order if individual options are
|
|
||||||
over-ridden. The set is parsed after the file(s)
|
|
||||||
specified via previous --config-file, arguments hence
|
|
||||||
over-ridden options in the directory take precedence.
|
|
||||||
--config-file PATH Path to a config file to use. Multiple config files
|
|
||||||
can be specified, with values in later files taking
|
|
||||||
precedence. The default files used are: None
|
|
||||||
--ctl-cert CTL_CERT controller certificate
|
|
||||||
--ctl-privkey CTL_PRIVKEY
|
|
||||||
controller private key
|
|
||||||
--default-log-level DEFAULT_LOG_LEVEL
|
|
||||||
default log level
|
|
||||||
--explicit-drop link discovery: explicitly drop lldp packet in
|
|
||||||
--install-lldp-flow link discovery: explicitly install flow entry to send
|
|
||||||
lldp packet to controller
|
|
||||||
--log-config-file LOG_CONFIG_FILE
|
|
||||||
Path to a logging config file to use
|
|
||||||
--log-dir LOG_DIR log file directory
|
|
||||||
--log-file LOG_FILE log file name
|
|
||||||
--log-file-mode LOG_FILE_MODE
|
|
||||||
default log file permission
|
|
||||||
--neutron-admin-auth-url NEUTRON_ADMIN_AUTH_URL
|
|
||||||
auth url for connecting to neutron in admin context
|
|
||||||
--neutron-admin-password NEUTRON_ADMIN_PASSWORD
|
|
||||||
password for connecting to neutron in admin context
|
|
||||||
--neutron-admin-tenant-name NEUTRON_ADMIN_TENANT_NAME
|
|
||||||
tenant name for connecting to neutron in admin context
|
|
||||||
--neutron-admin-username NEUTRON_ADMIN_USERNAME
|
|
||||||
username for connecting to neutron in admin context
|
|
||||||
--neutron-auth-strategy NEUTRON_AUTH_STRATEGY
|
|
||||||
auth strategy for connecting to neutron in
|
|
||||||
admincontext
|
|
||||||
--neutron-controller-addr NEUTRON_CONTROLLER_ADDR
|
|
||||||
openflow method:address:port to set controller ofovs
|
|
||||||
bridge
|
|
||||||
--neutron-url NEUTRON_URL
|
|
||||||
URL for connecting to neutron
|
|
||||||
--neutron-url-timeout NEUTRON_URL_TIMEOUT
|
|
||||||
timeout value for connecting to neutron in seconds
|
|
||||||
--noexplicit-drop The inverse of --explicit-drop
|
|
||||||
--noinstall-lldp-flow
|
|
||||||
The inverse of --install-lldp-flow
|
|
||||||
--noobserve-links The inverse of --observe-links
|
|
||||||
--nouse-stderr The inverse of --use-stderr
|
|
||||||
--nouse-syslog The inverse of --use-syslog
|
|
||||||
--noverbose The inverse of --verbose
|
|
||||||
--observe-links observe link discovery events.
|
|
||||||
--ofp-listen-host OFP_LISTEN_HOST
|
|
||||||
openflow listen host
|
|
||||||
--ofp-ssl-listen-port OFP_SSL_LISTEN_PORT
|
|
||||||
openflow ssl listen port
|
|
||||||
--ofp-tcp-listen-port OFP_TCP_LISTEN_PORT
|
|
||||||
openflow tcp listen port
|
|
||||||
--use-stderr log to standard error
|
|
||||||
--use-syslog output to syslog
|
|
||||||
--verbose show debug output
|
|
||||||
--version show program's version number and exit
|
|
||||||
--wsapi-host WSAPI_HOST
|
|
||||||
webapp listen host
|
|
||||||
--wsapi-port WSAPI_PORT
|
|
||||||
webapp listen port
|
|
||||||
|
|
||||||
--test-switch-dir TEST-SWITCH_DIR
|
|
||||||
test files directory
|
|
||||||
--test-switch-target TEST-SWITCH_TARGET
|
|
||||||
target sw dp-id
|
|
||||||
--test-switch-tester TEST-SWITCH_TESTER
|
|
||||||
tester sw dp-id
|
|
||||||
|
|
||||||
AUTHOR
|
|
||||||
Ryu Project Team <ryu-devel@lists.sourceforge.net>
|
|
38
debian/ryu.8.txt
vendored
38
debian/ryu.8.txt
vendored
@ -1,38 +0,0 @@
|
|||||||
NAME
|
|
||||||
ryu - management for Ryu application
|
|
||||||
|
|
||||||
SYNOPSIS
|
|
||||||
ryu [-h] [--config-dir DIR] [--config-file PATH] [--version]
|
|
||||||
[subcommand] ...
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
ryu is the executable for Ryu applications. ryu loads a sub-module
|
|
||||||
corresponding to the sub-command and run it. 'run' sub-command is an
|
|
||||||
equivalent to ryu-manager.
|
|
||||||
|
|
||||||
Ryu is a component-based software defined networking framework. Ryu
|
|
||||||
provides software components with well defined API that make it easy for
|
|
||||||
developers to create new network management and control applications.
|
|
||||||
Ryu supports various protocols for managing network devices, such as
|
|
||||||
OpenFlow, Netconf, OF-config, etc. About OpenFlow, Ryu supports fully
|
|
||||||
1.0, 1.2, 1.3, 1.4 and Nicira Extensions.
|
|
||||||
|
|
||||||
|
|
||||||
OPTIONS
|
|
||||||
subcommand [rpc-cli|run|of-config-cli]
|
|
||||||
subcommand_args subcommand specific arguments
|
|
||||||
|
|
||||||
-h, --help show this help message and exit
|
|
||||||
--config-dir DIR Path to a config directory to pull *.conf files from.
|
|
||||||
This file set is sorted, so as to provide a predictable
|
|
||||||
parse order if individual options are over-ridden. The
|
|
||||||
set is parsed after the file(s) specified via previous
|
|
||||||
--config-file, arguments hence over-ridden options in
|
|
||||||
the directory take precedence.
|
|
||||||
--config-file PATH Path to a config file to use. Multiple config files can
|
|
||||||
be specified, with values in later files taking
|
|
||||||
precedence. The default files used are: None
|
|
||||||
--version show program's version number and exit
|
|
||||||
|
|
||||||
AUTHOR
|
|
||||||
Ryu Project Team <ryu-devel@lists.sourceforge.net>
|
|
@ -215,9 +215,9 @@ latex_documents = [
|
|||||||
# (source start file, name, description, authors, manual section).
|
# (source start file, name, description, authors, manual section).
|
||||||
man_pages = [
|
man_pages = [
|
||||||
('index', 'ryu', u'ryu Documentation',
|
('index', 'ryu', u'ryu Documentation',
|
||||||
[u'ryu development team'], 1),
|
[u'Ryu development team'], 8),
|
||||||
('man/ryu', 'ryu', u'ryu',
|
('man/ryu', 'ryu', u'management for Ryu application',
|
||||||
[u'ryu development team'], 1),
|
[u'Ryu development team'], 8),
|
||||||
('man/ryu_manager', 'ryu-manager', u'ryu manager',
|
('man/ryu_manager', 'ryu-manager', 'management for Ryu application',
|
||||||
[u'ryu development team'], 1),
|
[u'Ryu development team'], 8),
|
||||||
]
|
]
|
||||||
|
@ -3,18 +3,46 @@
|
|||||||
ryu manual page
|
ryu manual page
|
||||||
===============
|
===============
|
||||||
|
|
||||||
Synoposis
|
Synopsis
|
||||||
---------
|
--------
|
||||||
**ryu** [*options*] <subcommand> [*subcommand options*]
|
**ryu** [-h] [--config-dir DIR] [--config-file PATH] [--version] [subcommand] ...
|
||||||
|
|
||||||
Description
|
Description
|
||||||
-----------
|
-----------
|
||||||
:program:`ryu` is an Operating System for Software Defined Networking
|
:program:`ryu` is the executable for Ryu applications. ryu loads a sub-module
|
||||||
|
corresponding to the sub-command and run it. 'run' sub-command is an
|
||||||
|
equivalent to ryu-manager.
|
||||||
|
|
||||||
|
Ryu is a component-based software defined networking framework. Ryu
|
||||||
|
provides software components with well defined API that make it easy for
|
||||||
|
developers to create new network management and control applications.
|
||||||
|
Ryu supports various protocols for managing network devices, such as
|
||||||
|
OpenFlow, Netconf, OF-config, etc. About OpenFlow, Ryu supports fully
|
||||||
|
1.0, 1.2, 1.3, 1.4 and Nicira Extensions.
|
||||||
|
|
||||||
Options
|
Options
|
||||||
-------
|
-------
|
||||||
-h, --help
|
subcommand
|
||||||
|
[rpc-cli|run|of-config-cli]
|
||||||
|
|
||||||
Author
|
subcommand_args
|
||||||
------
|
subcommand specific arguments
|
||||||
Ryu development team
|
|
||||||
|
-h, --help
|
||||||
|
show this help message and exit
|
||||||
|
|
||||||
|
--config-dir DIR
|
||||||
|
Path to a config directory to pull \*.conf files from.
|
||||||
|
This file set is sorted, so as to provide a predictable
|
||||||
|
parse order if individual options are over-ridden. The
|
||||||
|
set is parsed after the file(s) specified via previous
|
||||||
|
--config-file, arguments hence over-ridden options in
|
||||||
|
the directory take precedence.
|
||||||
|
|
||||||
|
--config-file PATH
|
||||||
|
Path to a config file to use. Multiple config files can
|
||||||
|
be specified, with values in later files taking
|
||||||
|
precedence. The default files used are: None
|
||||||
|
|
||||||
|
--version
|
||||||
|
show program's version number and exit
|
||||||
|
@ -3,18 +3,182 @@
|
|||||||
ryu-manager manual page
|
ryu-manager manual page
|
||||||
=======================
|
=======================
|
||||||
|
|
||||||
Synoposis
|
|
||||||
---------
|
Synopsis
|
||||||
**ryu-manager** [*options*] <ryu apps>[, <ryu apps> ...]
|
--------
|
||||||
|
**ryu-manager** [-h]
|
||||||
|
[--app-lists APP_LISTS] [--ca-certs CA_CERTS]
|
||||||
|
[--config-dir DIR] [--config-file PATH]
|
||||||
|
[--ctl-cert CTL_CERT] [--ctl-privkey CTL_PRIVKEY]
|
||||||
|
[--default-log-level DEFAULT_LOG_LEVEL] [--explicit-drop]
|
||||||
|
[--install-lldp-flow] [--log-config-file LOG_CONFIG_FILE]
|
||||||
|
[--log-dir LOG_DIR] [--log-file LOG_FILE]
|
||||||
|
[--log-file-mode LOG_FILE_MODE]
|
||||||
|
[--neutron-admin-auth-url NEUTRON_ADMIN_AUTH_URL]
|
||||||
|
[--neutron-admin-password NEUTRON_ADMIN_PASSWORD]
|
||||||
|
[--neutron-admin-tenant-name NEUTRON_ADMIN_TENANT_NAME]
|
||||||
|
[--neutron-admin-username NEUTRON_ADMIN_USERNAME]
|
||||||
|
[--neutron-auth-strategy NEUTRON_AUTH_STRATEGY]
|
||||||
|
[--neutron-controller-addr NEUTRON_CONTROLLER_ADDR]
|
||||||
|
[--neutron-url NEUTRON_URL]
|
||||||
|
[--neutron-url-timeout NEUTRON_URL_TIMEOUT]
|
||||||
|
[--noexplicit-drop] [--noinstall-lldp-flow]
|
||||||
|
[--noobserve-links] [--nouse-stderr] [--nouse-syslog]
|
||||||
|
[--noverbose] [--observe-links]
|
||||||
|
[--ofp-listen-host OFP_LISTEN_HOST]
|
||||||
|
[--ofp-ssl-listen-port OFP_SSL_LISTEN_PORT]
|
||||||
|
[--ofp-tcp-listen-port OFP_TCP_LISTEN_PORT] [--use-stderr]
|
||||||
|
[--use-syslog] [--verbose] [--version]
|
||||||
|
[--wsapi-host WSAPI_HOST] [--wsapi-port WSAPI_PORT]
|
||||||
|
[--test-switch-dir TEST-SWITCH_DIR]
|
||||||
|
[--test-switch-target TEST-SWITCH_TARGET]
|
||||||
|
[--test-switch-tester TEST-SWITCH_TESTER]
|
||||||
|
[app [app ...]]
|
||||||
|
|
||||||
Description
|
Description
|
||||||
-----------
|
-----------
|
||||||
:program:`ryu-manger` is an Operating System for Software Defined Networking
|
:program:`ryu-manager` is the executable for Ryu applications. ryu-manager
|
||||||
|
loads Ryu applications and run it.
|
||||||
|
|
||||||
|
Ryu is a component-based software defined networking framework. Ryu
|
||||||
|
provides software components with well defined API that make it easy for
|
||||||
|
developers to create new network management and control applications.
|
||||||
|
Ryu supports various protocols for managing network devices, such as
|
||||||
|
OpenFlow, Netconf, OF-config, etc. About OpenFlow, Ryu supports fully
|
||||||
|
1.0, 1.2, 1.3, 1.4 and Nicira Extensions.
|
||||||
|
|
||||||
Options
|
Options
|
||||||
-------
|
-------
|
||||||
-h, --help
|
app
|
||||||
|
application module name to run
|
||||||
|
|
||||||
Author
|
-h, --help
|
||||||
------
|
show this help message and exit
|
||||||
Ryu development team
|
|
||||||
|
--app-lists APP_LISTS
|
||||||
|
application module name to run
|
||||||
|
|
||||||
|
--ca-certs CA_CERTS
|
||||||
|
CA certificates
|
||||||
|
|
||||||
|
--config-dir DIR
|
||||||
|
Path to a config directory to pull \*.conf files from.
|
||||||
|
This file set is sorted, so as to provide a
|
||||||
|
predictable parse order if individual options are
|
||||||
|
over-ridden. The set is parsed after the file(s)
|
||||||
|
specified via previous --config-file, arguments hence
|
||||||
|
over-ridden options in the directory take precedence.
|
||||||
|
|
||||||
|
--config-file PATH
|
||||||
|
Path to a config file to use. Multiple config files
|
||||||
|
can be specified, with values in later files taking
|
||||||
|
precedence. The default files used are: None
|
||||||
|
|
||||||
|
--ctl-cert CTL_CERT
|
||||||
|
controller certificate
|
||||||
|
|
||||||
|
--ctl-privkey CTL_PRIVKEY
|
||||||
|
controller private key
|
||||||
|
|
||||||
|
--default-log-level DEFAULT_LOG_LEVEL
|
||||||
|
default log level
|
||||||
|
|
||||||
|
--explicit-drop
|
||||||
|
link discovery: explicitly drop lldp packet in
|
||||||
|
|
||||||
|
--install-lldp-flow
|
||||||
|
link discovery: explicitly install flow entry to send
|
||||||
|
lldp packet to controller
|
||||||
|
|
||||||
|
--log-config-file LOG_CONFIG_FILE
|
||||||
|
Path to a logging config file to use
|
||||||
|
|
||||||
|
--log-dir LOG_DIR
|
||||||
|
log file directory
|
||||||
|
|
||||||
|
--log-file LOG_FILE
|
||||||
|
log file name
|
||||||
|
|
||||||
|
--log-file-mode LOG_FILE_MODE
|
||||||
|
default log file permission
|
||||||
|
|
||||||
|
--neutron-admin-auth-url NEUTRON_ADMIN_AUTH_URL
|
||||||
|
auth url for connecting to neutron in admin context
|
||||||
|
|
||||||
|
--neutron-admin-password NEUTRON_ADMIN_PASSWORD
|
||||||
|
password for connecting to neutron in admin context
|
||||||
|
|
||||||
|
--neutron-admin-tenant-name NEUTRON_ADMIN_TENANT_NAME
|
||||||
|
tenant name for connecting to neutron in admin context
|
||||||
|
|
||||||
|
--neutron-admin-username NEUTRON_ADMIN_USERNAME
|
||||||
|
username for connecting to neutron in admin context
|
||||||
|
|
||||||
|
--neutron-auth-strategy NEUTRON_AUTH_STRATEGY
|
||||||
|
auth strategy for connecting to neutron in admincontext
|
||||||
|
|
||||||
|
--neutron-controller-addr NEUTRON_CONTROLLER_ADDR
|
||||||
|
openflow method:address:port to set controller ofovs bridge
|
||||||
|
|
||||||
|
--neutron-url NEUTRON_URL
|
||||||
|
URL for connecting to neutron
|
||||||
|
|
||||||
|
--neutron-url-timeout NEUTRON_URL_TIMEOUT
|
||||||
|
timeout value for connecting to neutron in seconds
|
||||||
|
|
||||||
|
--noexplicit-drop
|
||||||
|
The inverse of --explicit-drop
|
||||||
|
|
||||||
|
--noinstall-lldp-flow
|
||||||
|
The inverse of --install-lldp-flow
|
||||||
|
|
||||||
|
--noobserve-links
|
||||||
|
The inverse of --observe-links
|
||||||
|
|
||||||
|
--nouse-stderr
|
||||||
|
The inverse of --use-stderr
|
||||||
|
|
||||||
|
--nouse-syslog
|
||||||
|
The inverse of --use-syslog
|
||||||
|
|
||||||
|
--noverbose
|
||||||
|
The inverse of --verbose
|
||||||
|
|
||||||
|
--observe-links
|
||||||
|
observe link discovery events.
|
||||||
|
|
||||||
|
--ofp-listen-host OFP_LISTEN_HOST
|
||||||
|
openflow listen host
|
||||||
|
|
||||||
|
--ofp-ssl-listen-port OFP_SSL_LISTEN_PORT
|
||||||
|
openflow ssl listen port
|
||||||
|
|
||||||
|
--ofp-tcp-listen-port OFP_TCP_LISTEN_PORT
|
||||||
|
openflow tcp listen port
|
||||||
|
|
||||||
|
--use-stderr
|
||||||
|
log to standard error
|
||||||
|
|
||||||
|
--use-syslog
|
||||||
|
output to syslog
|
||||||
|
|
||||||
|
--verbose
|
||||||
|
show debug output
|
||||||
|
|
||||||
|
--version
|
||||||
|
show program's version number and exit
|
||||||
|
|
||||||
|
--wsapi-host WSAPI_HOST
|
||||||
|
webapp listen host
|
||||||
|
|
||||||
|
--wsapi-port WSAPI_PORT
|
||||||
|
webapp listen port
|
||||||
|
|
||||||
|
--test-switch-dir TEST-SWITCH_DIR
|
||||||
|
test files directory
|
||||||
|
|
||||||
|
--test-switch-target TEST-SWITCH_TARGET
|
||||||
|
target sw dp-id
|
||||||
|
|
||||||
|
--test-switch-tester TEST-SWITCH_TESTER
|
||||||
|
tester sw dp-id
|
||||||
|
Loading…
Reference in New Issue
Block a user