mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 06:47:12 +00:00
gcloud: Wed Dec 11 10:18:23 UTC 2024
This commit is contained in:
parent
ad2752c6c9
commit
ec6dc40f99
493 changed files with 17655 additions and 1753 deletions
|
|
@ -7,7 +7,11 @@ SYNOPSIS
|
|||
[--description=DESCRIPTION] [--[no-]enable-ula-internal-ipv6]
|
||||
[--internal-ipv6-range=INTERNAL_IPV6_RANGE] [--mtu=MTU]
|
||||
[--network-firewall-policy-enforcement-order=NETWORK_FIREWALL_POLICY_ENFORCEMENT_ORDER]
|
||||
[--range=RANGE] [--subnet-mode=MODE] [GCLOUD_WIDE_FLAG ...]
|
||||
[--range=RANGE] [--subnet-mode=MODE]
|
||||
[--bgp-best-path-selection-mode=BGP_BEST_PATH_SELECTION_MODE
|
||||
--[no-]bgp-bps-always-compare-med
|
||||
--bgp-bps-inter-region-cost=BGP_BPS_INTER_REGION_COST]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
gcloud compute networks create is used to create virtual networks. A
|
||||
|
|
@ -109,6 +113,47 @@ FLAGS
|
|||
[Deprecated] Create an old style network that has a range and
|
||||
cannot have subnets. This is not recommended for new networks.
|
||||
|
||||
BGP Best Path Selection flags
|
||||
|
||||
--bgp-best-path-selection-mode=BGP_BEST_PATH_SELECTION_MODE
|
||||
The BGP best path selection algorithm to be employed.
|
||||
BGP_BEST_PATH_SELECTION_MODE must be one of:
|
||||
|
||||
LEGACY
|
||||
Dynamic routes are ranked based on the multiple
|
||||
exit-discriminator (MED) BGP attribute. When global routing is
|
||||
enabled, the MED of the routes received from other regions is the
|
||||
original MED plus the region-to-region cost.
|
||||
STANDARD
|
||||
Dynamic routes are ranked based on AS Path, Origin, Neighbor ASN
|
||||
and MED BGP attributes. When global routing is enabled,
|
||||
region-to-region cost is used as a tiebreaker. This mode offers
|
||||
customizations to fine-tune BGP best path routing with additional
|
||||
flags like --bgp-bps-always-compare-med and
|
||||
--bgp-bps-inter-region-cost
|
||||
|
||||
--[no-]bgp-bps-always-compare-med
|
||||
Enables/disables the comparison of MED across routes with different
|
||||
Neighbor ASNs. This value can only be set if the
|
||||
--bgp-best-path-selection-mode is STANDARD. Use
|
||||
--bgp-bps-always-compare-med to enable and
|
||||
--no-bgp-bps-always-compare-med to disable.
|
||||
|
||||
--bgp-bps-inter-region-cost=BGP_BPS_INTER_REGION_COST
|
||||
Defines the preferred approach for handling inter-region cost in the
|
||||
selection process. This value can only be set if the
|
||||
--bgp-best-path-selection-mode is STANDARD. BGP_BPS_INTER_REGION_COST
|
||||
must be one of:
|
||||
|
||||
ADD_COST_TO_MED
|
||||
Adds inter-region cost to the MED before comparing the MED value.
|
||||
When multiple routes have the same value after the
|
||||
Add-cost-to-med comparison, the route selection continues and
|
||||
prefers the route with lowest cost.
|
||||
DEFAULT
|
||||
MED is compared as originally received from peers. When multiple
|
||||
routes have the same MED, cost is evaluated as the next step.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
|
|
@ -105,6 +105,8 @@ OPTIONAL FLAGS
|
|||
Reserved for Global Envoy-based Load Balancing.
|
||||
INTERNAL_HTTPS_LOAD_BALANCER
|
||||
Reserved for Internal HTTP(S) Load Balancing.
|
||||
PEER_MIGRATION
|
||||
Reserved for subnet migration between peered VPCs.
|
||||
PRIVATE
|
||||
Regular user created or automatically created subnet.
|
||||
PRIVATE_NAT
|
||||
|
|
|
|||
|
|
@ -6,6 +6,9 @@ SYNOPSIS
|
|||
[--[no-]enable-ula-internal-ipv6]
|
||||
[--internal-ipv6-range=INTERNAL_IPV6_RANGE] [--mtu=MTU]
|
||||
[--network-firewall-policy-enforcement-order=NETWORK_FIREWALL_POLICY_ENFORCEMENT_ORDER]
|
||||
[--bgp-best-path-selection-mode=BGP_BEST_PATH_SELECTION_MODE
|
||||
--[no-]bgp-bps-always-compare-med
|
||||
--bgp-bps-inter-region-cost=BGP_BPS_INTER_REGION_COST]
|
||||
[--bgp-routing-mode=MODE | --switch-to-custom-subnet-mode]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
|
|
@ -65,6 +68,47 @@ FLAGS
|
|||
BEFORE_CLASSIC_FIREWALL
|
||||
Network Firewall Policy is enforced before classic firewall.
|
||||
|
||||
BGP Best Path Selection flags
|
||||
|
||||
--bgp-best-path-selection-mode=BGP_BEST_PATH_SELECTION_MODE
|
||||
The BGP best path selection algorithm to be employed.
|
||||
BGP_BEST_PATH_SELECTION_MODE must be one of:
|
||||
|
||||
LEGACY
|
||||
Dynamic routes are ranked based on the multiple
|
||||
exit-discriminator (MED) BGP attribute. When global routing is
|
||||
enabled, the MED of the routes received from other regions is the
|
||||
original MED plus the region-to-region cost.
|
||||
STANDARD
|
||||
Dynamic routes are ranked based on AS Path, Origin, Neighbor ASN
|
||||
and MED BGP attributes. When global routing is enabled,
|
||||
region-to-region cost is used as a tiebreaker. This mode offers
|
||||
customizations to fine-tune BGP best path routing with additional
|
||||
flags like --bgp-bps-always-compare-med and
|
||||
--bgp-bps-inter-region-cost
|
||||
|
||||
--[no-]bgp-bps-always-compare-med
|
||||
Enables/disables the comparison of MED across routes with different
|
||||
Neighbor ASNs. This value can only be set if the
|
||||
--bgp-best-path-selection-mode is STANDARD. Use
|
||||
--bgp-bps-always-compare-med to enable and
|
||||
--no-bgp-bps-always-compare-med to disable.
|
||||
|
||||
--bgp-bps-inter-region-cost=BGP_BPS_INTER_REGION_COST
|
||||
Defines the preferred approach for handling inter-region cost in the
|
||||
selection process. This value can only be set if the
|
||||
--bgp-best-path-selection-mode is STANDARD. BGP_BPS_INTER_REGION_COST
|
||||
must be one of:
|
||||
|
||||
ADD_COST_TO_MED
|
||||
Adds inter-region cost to the MED before comparing the MED value.
|
||||
When multiple routes have the same value after the
|
||||
Add-cost-to-med comparison, the route selection continues and
|
||||
prefers the route with lowest cost.
|
||||
DEFAULT
|
||||
MED is compared as originally received from peers. When multiple
|
||||
routes have the same MED, cost is evaluated as the next step.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--bgp-routing-mode=MODE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue