-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The goal in rewriting to markdown is to allow access via github with direct links to options and commands. Move from scdoc to markdown. Reorder alphabetically grout options. Add necessary tool to build man pages from markdown. Signed-off-by: Anthony Harivel <[email protected]>
- Loading branch information
Showing
11 changed files
with
217 additions
and
152 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
GRCLI 1 @DATE@ "grout @VERSION@" | ||
================================ | ||
|
||
# NAME | ||
|
||
**grcli** -- grout command line interface | ||
|
||
# DESCRIPTION | ||
|
||
Grout is a software router based on DPDK __rte_graph__. | ||
|
||
# SYNOPSIS | ||
|
||
**grcli** | ||
[**-e**] | ||
[**-f** _PATH_] | ||
[**-h**] | ||
[**-s** _PATH_] | ||
[**-V**] | ||
[**-x**] | ||
... | ||
|
||
# OPTIONS | ||
|
||
#### **-e**, **--err-exit** | ||
|
||
Abort on first error. | ||
|
||
#### **-f** _PATH_, **--file** _PATH_ | ||
|
||
Read commands from _PATH_ instead of standard input. | ||
|
||
#### **-h**, **--help** | ||
|
||
Show this help message and exit. | ||
|
||
#### **-s** _PATH_, **--socket** _PATH_ | ||
|
||
Path to the control plane API socket. | ||
|
||
Default: **GROUT_SOCK_PATH** from environment or _/run/grout.sock_. | ||
|
||
#### **-V**, **--version** | ||
|
||
Print version and exit. | ||
|
||
#### **-x**, **--trace-commands** | ||
|
||
Print executed commands. | ||
|
||
# SEE ALSO | ||
|
||
**grout**(8) | ||
|
||
# AUTHORS | ||
|
||
Created and maintained by Robin Jarry. |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,130 @@ | ||
GROUT 8 @DATE@ "grout @VERSION@" | ||
================================ | ||
|
||
# NAME | ||
|
||
**grout** -- graph router daemon | ||
|
||
# DESCRIPTION | ||
|
||
Grout is a software router based on DPDK __rte_graph__. | ||
|
||
# SYNOPSIS | ||
|
||
**grout** | ||
[**-B** _SIZE_] | ||
[**-D** _PATH_] | ||
[**-h**] | ||
[**-L** _TYPE_:_LEVEL_] | ||
[**-M** _MODE_] | ||
[**-p**] | ||
[**-s** _PATH_] | ||
[**-t**] | ||
[**-T** _REGEXP_] | ||
[**-v**] | ||
[**-V**] | ||
[**-x**] | ||
|
||
# OPTIONS | ||
|
||
#### **-B**, **--trace-bufsz** _SIZE_ | ||
|
||
Specify maximum size of allocated memory for trace output for each thread. | ||
Valid unit can be either B or K or M for Bytes, KBytes and MBytes respectively. | ||
For example: | ||
|
||
``` | ||
--trace-bufsz 2M | ||
``` | ||
|
||
By default, size of trace output file is 1MB and parameter must be | ||
specified once only. | ||
|
||
#### **-D**, **--trace-dir** _PATH_ | ||
|
||
Specify trace directory for trace output. For example: | ||
|
||
``` | ||
--trace-dir /tmp | ||
``` | ||
|
||
By default, trace output will created at home directory and parameter must be | ||
specified once only. | ||
|
||
#### **-h**, **--help** | ||
|
||
Display usage help. | ||
|
||
#### **-L**, **--log-level** _TYPE_:_LEVEL_ | ||
|
||
Specify log level for a specific component. For example: | ||
|
||
``` | ||
--log-level lib.eal:debug | ||
``` | ||
|
||
Can be specified multiple times. | ||
|
||
#### **-M**, **--trace-mode** _o_|_overwrite_|_d_|_discard_ | ||
|
||
Specify the mode of update of trace output file. Either update on a file can be | ||
wrapped or discarded when file size reaches its maximum limit. For example: | ||
|
||
``` | ||
--trace-mode discard | ||
``` | ||
|
||
Default mode is _overwrite_ and parameter must be specified once only. | ||
|
||
#### **-p**, **--poll-mode** | ||
|
||
Disable automatic micro-sleep. | ||
|
||
#### **-s**, **--socket** _PATH_ | ||
|
||
Path the control plane API socket. | ||
|
||
Default: **GROUT_SOCK_PATH** from environment or _/run/grout.sock_. | ||
|
||
#### **-t**, **--test-mode** | ||
|
||
Run in test mode (no huge pages). | ||
|
||
#### **-T**, **--trace** _REGEXP_ | ||
|
||
Enable trace based on regular expression trace name. By default, the trace is | ||
disabled. User must specify this option to enable trace. For example: | ||
|
||
Global trace configuration for EAL only: | ||
|
||
``` | ||
--trace eal | ||
``` | ||
|
||
Global trace configuration for ALL the components: | ||
|
||
``` | ||
--trace ".*" | ||
``` | ||
|
||
Can be specified multiple times up to 32 times. | ||
|
||
#### **-v**, **--verbose** | ||
|
||
Increase verbosity. Can be specified multiple times. | ||
|
||
#### **-V**, **--version** | ||
|
||
Print version and exit. | ||
|
||
#### **-x**, **--trace-packets** | ||
|
||
Print all ingress/egress packets (for debugging purposes). | ||
|
||
# SEE ALSO | ||
|
||
**grcli**(1) | ||
|
||
# AUTHORS | ||
|
||
Created and maintained by Robin Jarry. |
Oops, something went wrong.