forked from snabbco/snabb
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR snabbco#418 to integration branch
- Loading branch information
Showing
5 changed files
with
95 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ Usage: | |
snabbnfv fuzz | ||
|
||
Use --help for per-command usage. | ||
Example: | ||
snabbnfv traffic --help |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,22 @@ | ||
neutron-sync-agent | ||
snabbnfv neutron-sync-agent [OPTIONS] | ||
|
||
Poll the neutron-sync-master for new database configurations and | ||
translate them into snabbnfv traffic process configuration files. | ||
|
||
-s DIR, --snabb-dir DIR | ||
Output snabbnfv traffic config files to DIR. | ||
Default: $SNABB_DIR | ||
-h HOST, --sync-host HOST | ||
Connect to snabbnfv-sync-master on HOST. | ||
Default: $SYNC_HOST | ||
-p PATH, --sync-path PATH | ||
Use PATH on snabbnfv-sync-master. | ||
Default: $SYNC_PATH | ||
-d DIR, --neutron-dir DIR | ||
Store temporary Neutron database dumps in DIR. | ||
Default: $NEUTRON_DIR | ||
-i SECONDS, --interval SECONDS | ||
Sleep for SECONDS between sync requests. | ||
Default: $SYNC_INTERVAL or 1 | ||
-h, --help | ||
Print this help message and exit. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,25 @@ | ||
snabbnfv neutron-sync-master | ||
snabbnfv neutron-sync-master [OPTIONS] | ||
|
||
Poll the Neutron database for configuration updates and make these | ||
available to snabbnfv-sync-agent processes running on other hosts. | ||
|
||
-u USER, --user USER | ||
MySQL username for Neutron DB. | ||
Default: $DB_USER | ||
-p PASS, --password PASS | ||
MySQL password for Neutron DB. | ||
Default: $DB_PASSWORD | ||
-D DB, --neutron-database DB | ||
MySQL database name for Neutron DB. | ||
Default: $DB_NEUTRON or "neutron_ml2" | ||
-m HOST, --mysql-host HOST | ||
MySQL hostname. | ||
Default: $DB_HOST or "localhost" | ||
-l ADDRESS, --listen-address ADDRESS | ||
Listen on ADDRESS for sync-agent connections. | ||
Default: $SYNC_LISTEN_HOST or "127.0.0.1" | ||
-i SECONDS, --interval SECONDS | ||
Sleep for SECONDS between database snapshots. | ||
Default: $SYNC_INTERVAL or "1" | ||
-h, --help | ||
Print this help message and exit. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters