Review from Igor
This commit is contained in:
parent
b601b24f52
commit
94ca4f98dd
|
@ -20,9 +20,10 @@ func buildRouteIPSubcommand() *cli.Command {
|
|||
Usage: "Configure and query private routes",
|
||||
UsageText: "cloudflared tunnel [--config FILEPATH] route COMMAND [arguments...]",
|
||||
Hidden: true,
|
||||
Description: `cloudflared can provision private routes from Cloudflare to origins in your corporate
|
||||
network. Users enrolled in your Cloudflare for Teams organization can reach those routes through the
|
||||
Cloudflare WARP client. You can also build rules to determine who can reach certain routes.
|
||||
Description: `cloudflared can provision private routes from your private IP space to origins
|
||||
in your corporate network. Users enrolled in your Cloudflare for Teams organization can reach
|
||||
those routes through the Cloudflare Warp client. You can also build rules to determine who
|
||||
can reach certain routes.
|
||||
`,
|
||||
Subcommands: []*cli.Command{
|
||||
{
|
||||
|
@ -30,8 +31,9 @@ func buildRouteIPSubcommand() *cli.Command {
|
|||
Action: cliutil.ErrorHandler(addRouteCommand),
|
||||
Usage: "Add a new Teamnet route to the table",
|
||||
UsageText: "cloudflared tunnel [--config FILEPATH] route ip add [CIDR] [TUNNEL] [COMMENT?]",
|
||||
Description: `Adds a private route from a given Tunnel (identified by name or
|
||||
UUID) to a given CIDR in your private IP space.`,
|
||||
Description: `Adds a private route to a CIDR in your private IP space. Requests will
|
||||
be sent through the Cloudflare Warp client running on a user's machine, proxied
|
||||
through the specified tunnel, and reach an IP in the given CIDR.`,
|
||||
},
|
||||
{
|
||||
Name: "show",
|
||||
|
@ -53,7 +55,8 @@ func buildRouteIPSubcommand() *cli.Command {
|
|||
Action: cliutil.ErrorHandler(getRouteByIPCommand),
|
||||
Usage: "Check which row of the routing table matches a given IP",
|
||||
UsageText: "cloudflared tunnel [--config FILEPATH] route ip get [IP]",
|
||||
Description: `Checks which row of the routing table matches a given IP. This helps check and validate your config.`,
|
||||
Description: `Checks which row of the routing table will be used to proxy a given IP.
|
||||
This helps check and validate your config.`,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue