TUN-5669: Change network command to vnet
This commit is contained in:
parent
1a92f1acfe
commit
a84cbcde7e
|
@ -36,7 +36,7 @@ var (
|
||||||
Usage: "Show only routes with this comment.",
|
Usage: "Show only routes with this comment.",
|
||||||
}
|
}
|
||||||
filterIpRouteByVnet = cli.StringFlag{
|
filterIpRouteByVnet = cli.StringFlag{
|
||||||
Name: "filter-virtual-network-id",
|
Name: "filter-vnet-id",
|
||||||
Usage: "Show only routes that are attached to the given virtual network ID.",
|
Usage: "Show only routes that are attached to the given virtual network ID.",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ import (
|
||||||
|
|
||||||
var (
|
var (
|
||||||
vnetFlag = &cli.StringFlag{
|
vnetFlag = &cli.StringFlag{
|
||||||
Name: "virtual-network",
|
Name: "vnet",
|
||||||
Aliases: []string{"vn"},
|
Aliases: []string{"vn"},
|
||||||
Usage: "The ID or name of the virtual network to which the route is associated to.",
|
Usage: "The ID or name of the virtual network to which the route is associated to.",
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@ determine who can reach certain routes.
|
||||||
By default IP routes all exist within a single virtual network. If you use the same IP
|
By default IP routes all exist within a single virtual network. If you use the same IP
|
||||||
space(s) in different physical private networks, all meant to be reachable via IP routes,
|
space(s) in different physical private networks, all meant to be reachable via IP routes,
|
||||||
then you have to manage the ambiguous IP routes by associating them to virtual networks.
|
then you have to manage the ambiguous IP routes by associating them to virtual networks.
|
||||||
See "cloudflared tunnel network --help" for more information.`,
|
See "cloudflared tunnel vnet --help" for more information.`,
|
||||||
Subcommands: []*cli.Command{
|
Subcommands: []*cli.Command{
|
||||||
{
|
{
|
||||||
Name: "add",
|
Name: "add",
|
||||||
|
@ -50,9 +50,9 @@ the specified Tunnel, and reach an IP in the given CIDR, as long as that IP is
|
||||||
reachable from cloudflared.
|
reachable from cloudflared.
|
||||||
If the CIDR exists in more than one private network, to be connected with Cloudflare
|
If the CIDR exists in more than one private network, to be connected with Cloudflare
|
||||||
Tunnels, then you have to manage those IP routes with virtual networks (see
|
Tunnels, then you have to manage those IP routes with virtual networks (see
|
||||||
"cloudflared tunnel network --help)". In those cases, you then have to tell
|
"cloudflared tunnel vnet --help)". In those cases, you then have to tell
|
||||||
which virtual network's routing table you want to add the route to with:
|
which virtual network's routing table you want to add the route to with:
|
||||||
"cloudflared tunnel route ip add --virtual-network [ID/name] [CIDR] [TUNNEL]".`,
|
"cloudflared tunnel route ip add --vnet [ID/name] [CIDR] [TUNNEL]".`,
|
||||||
Flags: []cli.Flag{vnetFlag},
|
Flags: []cli.Flag{vnetFlag},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -37,7 +37,7 @@ var (
|
||||||
|
|
||||||
func buildVirtualNetworkSubcommand(hidden bool) *cli.Command {
|
func buildVirtualNetworkSubcommand(hidden bool) *cli.Command {
|
||||||
return &cli.Command{
|
return &cli.Command{
|
||||||
Name: "network",
|
Name: "vnet",
|
||||||
Usage: "Configure and query virtual networks to manage private IP routes with overlapping IPs.",
|
Usage: "Configure and query virtual networks to manage private IP routes with overlapping IPs.",
|
||||||
UsageText: "cloudflared tunnel [--config FILEPATH] network COMMAND [arguments...]",
|
UsageText: "cloudflared tunnel [--config FILEPATH] network COMMAND [arguments...]",
|
||||||
Description: `cloudflared allows to manage IP routes that expose origins in your private network space via their IP directly
|
Description: `cloudflared allows to manage IP routes that expose origins in your private network space via their IP directly
|
||||||
|
@ -177,7 +177,7 @@ func listVirtualNetworksCommand(c *cli.Context) error {
|
||||||
if len(vnets) > 0 {
|
if len(vnets) > 0 {
|
||||||
formatAndPrintVnetsList(vnets)
|
formatAndPrintVnetsList(vnets)
|
||||||
} else {
|
} else {
|
||||||
fmt.Println("No virtual networks were found for the given filter flags. You can use 'cloudflared tunnel network add' to add a virtual network.")
|
fmt.Println("No virtual networks were found for the given filter flags. You can use 'cloudflared tunnel vnet add' to add a virtual network.")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue