fortios.router.Bgp
Explore with Pulumi AI
Configure BGP.
The provider supports the definition of Neighbor in Router Bgp
fortios.router.Bgp
, and also allows the definition of separate Neighbor resourcesfortios.router/bgp.Neighbor
, but do not use afortios.router.Bgp
with in-line Neighbor in conjunction with anyfortios.router/bgp.Neighbor
resources, otherwise conflicts and overwrite will occur.
The provider supports the definition of Network in Router Bgp
fortios.router.Bgp
, and also allows the definition of separate Network resourcesfortios.router/bgp.Network
, but do not use afortios.router.Bgp
with in-line Network in conjunction with anyfortios.router/bgp.Network
resources, otherwise conflicts and overwrite will occur.
The provider supports the definition of Network6 in Router Bgp
fortios.router.Bgp
, and also allows the definition of separate Network6 resourcesfortios.router/bgp.Network6
, but do not use afortios.router.Bgp
with in-line Network6 in conjunction with anyfortios.router/bgp.Network6
resources, otherwise conflicts and overwrite will occur.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.router.Bgp("trname", {
additionalPathSelect: 2,
additionalPathSelect6: 2,
alwaysCompareMed: "disable",
as: 0,
clientToClientReflection: "enable",
clusterId: "0.0.0.0",
dampening: "disable",
dampeningMaxSuppressTime: 60,
dampeningReachabilityHalfLife: 15,
dampeningReuse: 750,
dampeningSuppress: 2000,
dampeningUnreachabilityHalfLife: 15,
defaultLocalPreference: 100,
deterministicMed: "disable",
distanceExternal: 20,
distanceInternal: 200,
distanceLocal: 200,
gracefulRestartTime: 120,
gracefulStalepathTime: 360,
gracefulUpdateDelay: 120,
holdtimeTimer: 180,
ibgpMultipath: "disable",
ignoreOptionalCapability: "enable",
keepaliveTimer: 60,
logNeighbourChanges: "enable",
networkImportCheck: "enable",
redistributes: [
{
name: "connected",
status: "disable",
},
{
name: "rip",
status: "disable",
},
{
name: "ospf",
status: "disable",
},
{
name: "static",
status: "disable",
},
{
name: "isis",
status: "disable",
},
],
redistribute6s: [
{
name: "connected",
status: "disable",
},
{
name: "rip",
status: "disable",
},
{
name: "ospf",
status: "disable",
},
{
name: "static",
status: "disable",
},
{
name: "isis",
status: "disable",
},
],
scanTime: 60,
synchronization: "disable",
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.router.Bgp("trname",
additional_path_select=2,
additional_path_select6=2,
always_compare_med="disable",
as_=0,
client_to_client_reflection="enable",
cluster_id="0.0.0.0",
dampening="disable",
dampening_max_suppress_time=60,
dampening_reachability_half_life=15,
dampening_reuse=750,
dampening_suppress=2000,
dampening_unreachability_half_life=15,
default_local_preference=100,
deterministic_med="disable",
distance_external=20,
distance_internal=200,
distance_local=200,
graceful_restart_time=120,
graceful_stalepath_time=360,
graceful_update_delay=120,
holdtime_timer=180,
ibgp_multipath="disable",
ignore_optional_capability="enable",
keepalive_timer=60,
log_neighbour_changes="enable",
network_import_check="enable",
redistributes=[
fortios.router.BgpRedistributeArgs(
name="connected",
status="disable",
),
fortios.router.BgpRedistributeArgs(
name="rip",
status="disable",
),
fortios.router.BgpRedistributeArgs(
name="ospf",
status="disable",
),
fortios.router.BgpRedistributeArgs(
name="static",
status="disable",
),
fortios.router.BgpRedistributeArgs(
name="isis",
status="disable",
),
],
redistribute6s=[
fortios.router.BgpRedistribute6Args(
name="connected",
status="disable",
),
fortios.router.BgpRedistribute6Args(
name="rip",
status="disable",
),
fortios.router.BgpRedistribute6Args(
name="ospf",
status="disable",
),
fortios.router.BgpRedistribute6Args(
name="static",
status="disable",
),
fortios.router.BgpRedistribute6Args(
name="isis",
status="disable",
),
],
scan_time=60,
synchronization="disable")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/router"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := router.NewBgp(ctx, "trname", &router.BgpArgs{
AdditionalPathSelect: pulumi.Int(2),
AdditionalPathSelect6: pulumi.Int(2),
AlwaysCompareMed: pulumi.String("disable"),
As: pulumi.Int(0),
ClientToClientReflection: pulumi.String("enable"),
ClusterId: pulumi.String("0.0.0.0"),
Dampening: pulumi.String("disable"),
DampeningMaxSuppressTime: pulumi.Int(60),
DampeningReachabilityHalfLife: pulumi.Int(15),
DampeningReuse: pulumi.Int(750),
DampeningSuppress: pulumi.Int(2000),
DampeningUnreachabilityHalfLife: pulumi.Int(15),
DefaultLocalPreference: pulumi.Int(100),
DeterministicMed: pulumi.String("disable"),
DistanceExternal: pulumi.Int(20),
DistanceInternal: pulumi.Int(200),
DistanceLocal: pulumi.Int(200),
GracefulRestartTime: pulumi.Int(120),
GracefulStalepathTime: pulumi.Int(360),
GracefulUpdateDelay: pulumi.Int(120),
HoldtimeTimer: pulumi.Int(180),
IbgpMultipath: pulumi.String("disable"),
IgnoreOptionalCapability: pulumi.String("enable"),
KeepaliveTimer: pulumi.Int(60),
LogNeighbourChanges: pulumi.String("enable"),
NetworkImportCheck: pulumi.String("enable"),
Redistributes: router.BgpRedistributeArray{
&router.BgpRedistributeArgs{
Name: pulumi.String("connected"),
Status: pulumi.String("disable"),
},
&router.BgpRedistributeArgs{
Name: pulumi.String("rip"),
Status: pulumi.String("disable"),
},
&router.BgpRedistributeArgs{
Name: pulumi.String("ospf"),
Status: pulumi.String("disable"),
},
&router.BgpRedistributeArgs{
Name: pulumi.String("static"),
Status: pulumi.String("disable"),
},
&router.BgpRedistributeArgs{
Name: pulumi.String("isis"),
Status: pulumi.String("disable"),
},
},
Redistribute6s: router.BgpRedistribute6Array{
&router.BgpRedistribute6Args{
Name: pulumi.String("connected"),
Status: pulumi.String("disable"),
},
&router.BgpRedistribute6Args{
Name: pulumi.String("rip"),
Status: pulumi.String("disable"),
},
&router.BgpRedistribute6Args{
Name: pulumi.String("ospf"),
Status: pulumi.String("disable"),
},
&router.BgpRedistribute6Args{
Name: pulumi.String("static"),
Status: pulumi.String("disable"),
},
&router.BgpRedistribute6Args{
Name: pulumi.String("isis"),
Status: pulumi.String("disable"),
},
},
ScanTime: pulumi.Int(60),
Synchronization: pulumi.String("disable"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() =>
{
var trname = new Fortios.Router.BgpRouter("trname", new()
{
AdditionalPathSelect = 2,
AdditionalPathSelect6 = 2,
AlwaysCompareMed = "disable",
As = 0,
ClientToClientReflection = "enable",
ClusterId = "0.0.0.0",
Dampening = "disable",
DampeningMaxSuppressTime = 60,
DampeningReachabilityHalfLife = 15,
DampeningReuse = 750,
DampeningSuppress = 2000,
DampeningUnreachabilityHalfLife = 15,
DefaultLocalPreference = 100,
DeterministicMed = "disable",
DistanceExternal = 20,
DistanceInternal = 200,
DistanceLocal = 200,
GracefulRestartTime = 120,
GracefulStalepathTime = 360,
GracefulUpdateDelay = 120,
HoldtimeTimer = 180,
IbgpMultipath = "disable",
IgnoreOptionalCapability = "enable",
KeepaliveTimer = 60,
LogNeighbourChanges = "enable",
NetworkImportCheck = "enable",
Redistributes = new[]
{
new Fortios.Router.Inputs.BgpRedistributeArgs
{
Name = "connected",
Status = "disable",
},
new Fortios.Router.Inputs.BgpRedistributeArgs
{
Name = "rip",
Status = "disable",
},
new Fortios.Router.Inputs.BgpRedistributeArgs
{
Name = "ospf",
Status = "disable",
},
new Fortios.Router.Inputs.BgpRedistributeArgs
{
Name = "static",
Status = "disable",
},
new Fortios.Router.Inputs.BgpRedistributeArgs
{
Name = "isis",
Status = "disable",
},
},
Redistribute6s = new[]
{
new Fortios.Router.Inputs.BgpRedistribute6Args
{
Name = "connected",
Status = "disable",
},
new Fortios.Router.Inputs.BgpRedistribute6Args
{
Name = "rip",
Status = "disable",
},
new Fortios.Router.Inputs.BgpRedistribute6Args
{
Name = "ospf",
Status = "disable",
},
new Fortios.Router.Inputs.BgpRedistribute6Args
{
Name = "static",
Status = "disable",
},
new Fortios.Router.Inputs.BgpRedistribute6Args
{
Name = "isis",
Status = "disable",
},
},
ScanTime = 60,
Synchronization = "disable",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.router.Bgp;
import com.pulumi.fortios.router.BgpArgs;
import com.pulumi.fortios.router.inputs.BgpRedistributeArgs;
import com.pulumi.fortios.router.inputs.BgpRedistribute6Args;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new Bgp("trname", BgpArgs.builder()
.additionalPathSelect(2)
.additionalPathSelect6(2)
.alwaysCompareMed("disable")
.as(0)
.clientToClientReflection("enable")
.clusterId("0.0.0.0")
.dampening("disable")
.dampeningMaxSuppressTime(60)
.dampeningReachabilityHalfLife(15)
.dampeningReuse(750)
.dampeningSuppress(2000)
.dampeningUnreachabilityHalfLife(15)
.defaultLocalPreference(100)
.deterministicMed("disable")
.distanceExternal(20)
.distanceInternal(200)
.distanceLocal(200)
.gracefulRestartTime(120)
.gracefulStalepathTime(360)
.gracefulUpdateDelay(120)
.holdtimeTimer(180)
.ibgpMultipath("disable")
.ignoreOptionalCapability("enable")
.keepaliveTimer(60)
.logNeighbourChanges("enable")
.networkImportCheck("enable")
.redistributes(
BgpRedistributeArgs.builder()
.name("connected")
.status("disable")
.build(),
BgpRedistributeArgs.builder()
.name("rip")
.status("disable")
.build(),
BgpRedistributeArgs.builder()
.name("ospf")
.status("disable")
.build(),
BgpRedistributeArgs.builder()
.name("static")
.status("disable")
.build(),
BgpRedistributeArgs.builder()
.name("isis")
.status("disable")
.build())
.redistribute6s(
BgpRedistribute6Args.builder()
.name("connected")
.status("disable")
.build(),
BgpRedistribute6Args.builder()
.name("rip")
.status("disable")
.build(),
BgpRedistribute6Args.builder()
.name("ospf")
.status("disable")
.build(),
BgpRedistribute6Args.builder()
.name("static")
.status("disable")
.build(),
BgpRedistribute6Args.builder()
.name("isis")
.status("disable")
.build())
.scanTime(60)
.synchronization("disable")
.build());
}
}
resources:
trname:
type: fortios:router:Bgp
properties:
additionalPathSelect: 2
additionalPathSelect6: 2
alwaysCompareMed: disable
as: 0
clientToClientReflection: enable
clusterId: 0.0.0.0
dampening: disable
dampeningMaxSuppressTime: 60
dampeningReachabilityHalfLife: 15
dampeningReuse: 750
dampeningSuppress: 2000
dampeningUnreachabilityHalfLife: 15
defaultLocalPreference: 100
deterministicMed: disable
distanceExternal: 20
distanceInternal: 200
distanceLocal: 200
gracefulRestartTime: 120
gracefulStalepathTime: 360
gracefulUpdateDelay: 120
holdtimeTimer: 180
ibgpMultipath: disable
ignoreOptionalCapability: enable
keepaliveTimer: 60
logNeighbourChanges: enable
networkImportCheck: enable
redistributes:
- name: connected
status: disable
- name: rip
status: disable
- name: ospf
status: disable
- name: static
status: disable
- name: isis
status: disable
redistribute6s:
- name: connected
status: disable
- name: rip
status: disable
- name: ospf
status: disable
- name: static
status: disable
- name: isis
status: disable
scanTime: 60
synchronization: disable
Create Bgp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Bgp(name: string, args?: BgpArgs, opts?: CustomResourceOptions);
@overload
def Bgp(resource_name: str,
args: Optional[BgpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Bgp(resource_name: str,
opts: Optional[ResourceOptions] = None,
additional_path: Optional[str] = None,
additional_path6: Optional[str] = None,
additional_path_select: Optional[int] = None,
additional_path_select6: Optional[int] = None,
additional_path_select_vpnv4: Optional[int] = None,
additional_path_select_vpnv6: Optional[int] = None,
additional_path_vpnv4: Optional[str] = None,
additional_path_vpnv6: Optional[str] = None,
admin_distances: Optional[Sequence[BgpAdminDistanceArgs]] = None,
aggregate_address6s: Optional[Sequence[BgpAggregateAddress6Args]] = None,
aggregate_addresses: Optional[Sequence[BgpAggregateAddressArgs]] = None,
always_compare_med: Optional[str] = None,
as_: Optional[int] = None,
as_string: Optional[str] = None,
bestpath_as_path_ignore: Optional[str] = None,
bestpath_cmp_confed_aspath: Optional[str] = None,
bestpath_cmp_routerid: Optional[str] = None,
bestpath_med_confed: Optional[str] = None,
bestpath_med_missing_as_worst: Optional[str] = None,
client_to_client_reflection: Optional[str] = None,
cluster_id: Optional[str] = None,
confederation_identifier: Optional[int] = None,
confederation_peers: Optional[Sequence[BgpConfederationPeerArgs]] = None,
cross_family_conditional_adv: Optional[str] = None,
dampening: Optional[str] = None,
dampening_max_suppress_time: Optional[int] = None,
dampening_reachability_half_life: Optional[int] = None,
dampening_reuse: Optional[int] = None,
dampening_route_map: Optional[str] = None,
dampening_suppress: Optional[int] = None,
dampening_unreachability_half_life: Optional[int] = None,
default_local_preference: Optional[int] = None,
deterministic_med: Optional[str] = None,
distance_external: Optional[int] = None,
distance_internal: Optional[int] = None,
distance_local: Optional[int] = None,
dynamic_sort_subtable: Optional[str] = None,
ebgp_multipath: Optional[str] = None,
enforce_first_as: Optional[str] = None,
fast_external_failover: Optional[str] = None,
get_all_tables: Optional[str] = None,
graceful_end_on_timer: Optional[str] = None,
graceful_restart: Optional[str] = None,
graceful_restart_time: Optional[int] = None,
graceful_stalepath_time: Optional[int] = None,
graceful_update_delay: Optional[int] = None,
holdtime_timer: Optional[int] = None,
ibgp_multipath: Optional[str] = None,
ignore_optional_capability: Optional[str] = None,
keepalive_timer: Optional[int] = None,
log_neighbour_changes: Optional[str] = None,
multipath_recursive_distance: Optional[str] = None,
neighbor_groups: Optional[Sequence[BgpNeighborGroupArgs]] = None,
neighbor_range6s: Optional[Sequence[BgpNeighborRange6Args]] = None,
neighbor_ranges: Optional[Sequence[BgpNeighborRangeArgs]] = None,
neighbors: Optional[Sequence[BgpNeighborArgs]] = None,
network6s: Optional[Sequence[BgpNetwork6Args]] = None,
network_import_check: Optional[str] = None,
networks: Optional[Sequence[BgpNetworkArgs]] = None,
recursive_inherit_priority: Optional[str] = None,
recursive_next_hop: Optional[str] = None,
redistribute6s: Optional[Sequence[BgpRedistribute6Args]] = None,
redistributes: Optional[Sequence[BgpRedistributeArgs]] = None,
router_id: Optional[str] = None,
scan_time: Optional[int] = None,
synchronization: Optional[str] = None,
tag_resolve_mode: Optional[str] = None,
vdomparam: Optional[str] = None,
vrf6s: Optional[Sequence[BgpVrf6Args]] = None,
vrf_leak6s: Optional[Sequence[BgpVrfLeak6Args]] = None,
vrf_leaks: Optional[Sequence[BgpVrfLeakArgs]] = None,
vrves: Optional[Sequence[BgpVrfArgs]] = None)
func NewBgp(ctx *Context, name string, args *BgpArgs, opts ...ResourceOption) (*Bgp, error)
public Bgp(string name, BgpArgs? args = null, CustomResourceOptions? opts = null)
type: fortios:router:Bgp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BgpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BgpArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BgpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BgpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BgpArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var bgpResource = new Fortios.Router.BgpRouter("bgpResource", new()
{
AdditionalPath = "string",
AdditionalPath6 = "string",
AdditionalPathSelect = 0,
AdditionalPathSelect6 = 0,
AdditionalPathSelectVpnv4 = 0,
AdditionalPathSelectVpnv6 = 0,
AdditionalPathVpnv4 = "string",
AdditionalPathVpnv6 = "string",
AdminDistances = new[]
{
new Fortios.Router.Inputs.BgpAdminDistanceArgs
{
Distance = 0,
Id = 0,
NeighbourPrefix = "string",
RouteList = "string",
},
},
AggregateAddress6s = new[]
{
new Fortios.Router.Inputs.BgpAggregateAddress6Args
{
AsSet = "string",
Id = 0,
Prefix6 = "string",
SummaryOnly = "string",
},
},
AggregateAddresses = new[]
{
new Fortios.Router.Inputs.BgpAggregateAddressArgs
{
AsSet = "string",
Id = 0,
Prefix = "string",
SummaryOnly = "string",
},
},
AlwaysCompareMed = "string",
As = 0,
AsString = "string",
BestpathAsPathIgnore = "string",
BestpathCmpConfedAspath = "string",
BestpathCmpRouterid = "string",
BestpathMedConfed = "string",
BestpathMedMissingAsWorst = "string",
ClientToClientReflection = "string",
ClusterId = "string",
ConfederationIdentifier = 0,
ConfederationPeers = new[]
{
new Fortios.Router.Inputs.BgpConfederationPeerArgs
{
Peer = "string",
},
},
CrossFamilyConditionalAdv = "string",
Dampening = "string",
DampeningMaxSuppressTime = 0,
DampeningReachabilityHalfLife = 0,
DampeningReuse = 0,
DampeningRouteMap = "string",
DampeningSuppress = 0,
DampeningUnreachabilityHalfLife = 0,
DefaultLocalPreference = 0,
DeterministicMed = "string",
DistanceExternal = 0,
DistanceInternal = 0,
DistanceLocal = 0,
DynamicSortSubtable = "string",
EbgpMultipath = "string",
EnforceFirstAs = "string",
FastExternalFailover = "string",
GetAllTables = "string",
GracefulEndOnTimer = "string",
GracefulRestart = "string",
GracefulRestartTime = 0,
GracefulStalepathTime = 0,
GracefulUpdateDelay = 0,
HoldtimeTimer = 0,
IbgpMultipath = "string",
IgnoreOptionalCapability = "string",
KeepaliveTimer = 0,
LogNeighbourChanges = "string",
MultipathRecursiveDistance = "string",
NeighborGroups = new[]
{
new Fortios.Router.Inputs.BgpNeighborGroupArgs
{
Activate = "string",
Activate6 = "string",
ActivateEvpn = "string",
ActivateVpnv4 = "string",
ActivateVpnv6 = "string",
AdditionalPath = "string",
AdditionalPath6 = "string",
AdditionalPathVpnv4 = "string",
AdditionalPathVpnv6 = "string",
AdvAdditionalPath = 0,
AdvAdditionalPath6 = 0,
AdvAdditionalPathVpnv4 = 0,
AdvAdditionalPathVpnv6 = 0,
AdvertisementInterval = 0,
AllowasIn = 0,
AllowasIn6 = 0,
AllowasInEnable = "string",
AllowasInEnable6 = "string",
AllowasInEnableEvpn = "string",
AllowasInEnableVpnv4 = "string",
AllowasInEnableVpnv6 = "string",
AllowasInEvpn = 0,
AllowasInVpnv4 = 0,
AllowasInVpnv6 = 0,
AsOverride = "string",
AsOverride6 = "string",
AttributeUnchanged = "string",
AttributeUnchanged6 = "string",
AttributeUnchangedVpnv4 = "string",
AttributeUnchangedVpnv6 = "string",
AuthOptions = "string",
Bfd = "string",
CapabilityDefaultOriginate = "string",
CapabilityDefaultOriginate6 = "string",
CapabilityDynamic = "string",
CapabilityGracefulRestart = "string",
CapabilityGracefulRestart6 = "string",
CapabilityGracefulRestartEvpn = "string",
CapabilityGracefulRestartVpnv4 = "string",
CapabilityGracefulRestartVpnv6 = "string",
CapabilityOrf = "string",
CapabilityOrf6 = "string",
CapabilityRouteRefresh = "string",
ConnectTimer = 0,
DefaultOriginateRoutemap = "string",
DefaultOriginateRoutemap6 = "string",
Description = "string",
DistributeListIn = "string",
DistributeListIn6 = "string",
DistributeListInVpnv4 = "string",
DistributeListInVpnv6 = "string",
DistributeListOut = "string",
DistributeListOut6 = "string",
DistributeListOutVpnv4 = "string",
DistributeListOutVpnv6 = "string",
DontCapabilityNegotiate = "string",
EbgpEnforceMultihop = "string",
EbgpMultihopTtl = 0,
FilterListIn = "string",
FilterListIn6 = "string",
FilterListInVpnv4 = "string",
FilterListInVpnv6 = "string",
FilterListOut = "string",
FilterListOut6 = "string",
FilterListOutVpnv4 = "string",
FilterListOutVpnv6 = "string",
HoldtimeTimer = 0,
Interface = "string",
KeepAliveTimer = 0,
LinkDownFailover = "string",
LocalAs = 0,
LocalAsNoPrepend = "string",
LocalAsReplaceAs = "string",
MaximumPrefix = 0,
MaximumPrefix6 = 0,
MaximumPrefixEvpn = 0,
MaximumPrefixThreshold = 0,
MaximumPrefixThreshold6 = 0,
MaximumPrefixThresholdEvpn = 0,
MaximumPrefixThresholdVpnv4 = 0,
MaximumPrefixThresholdVpnv6 = 0,
MaximumPrefixVpnv4 = 0,
MaximumPrefixVpnv6 = 0,
MaximumPrefixWarningOnly = "string",
MaximumPrefixWarningOnly6 = "string",
MaximumPrefixWarningOnlyEvpn = "string",
MaximumPrefixWarningOnlyVpnv4 = "string",
MaximumPrefixWarningOnlyVpnv6 = "string",
Name = "string",
NextHopSelf = "string",
NextHopSelf6 = "string",
NextHopSelfRr = "string",
NextHopSelfRr6 = "string",
NextHopSelfVpnv4 = "string",
NextHopSelfVpnv6 = "string",
OverrideCapability = "string",
Passive = "string",
Password = "string",
PrefixListIn = "string",
PrefixListIn6 = "string",
PrefixListInVpnv4 = "string",
PrefixListInVpnv6 = "string",
PrefixListOut = "string",
PrefixListOut6 = "string",
PrefixListOutVpnv4 = "string",
PrefixListOutVpnv6 = "string",
RemoteAs = 0,
RemoteAsFilter = "string",
RemovePrivateAs = "string",
RemovePrivateAs6 = "string",
RemovePrivateAsEvpn = "string",
RemovePrivateAsVpnv4 = "string",
RemovePrivateAsVpnv6 = "string",
RestartTime = 0,
RetainStaleTime = 0,
RouteMapIn = "string",
RouteMapIn6 = "string",
RouteMapInEvpn = "string",
RouteMapInVpnv4 = "string",
RouteMapInVpnv6 = "string",
RouteMapOut = "string",
RouteMapOut6 = "string",
RouteMapOut6Preferable = "string",
RouteMapOutEvpn = "string",
RouteMapOutPreferable = "string",
RouteMapOutVpnv4 = "string",
RouteMapOutVpnv4Preferable = "string",
RouteMapOutVpnv6 = "string",
RouteMapOutVpnv6Preferable = "string",
RouteReflectorClient = "string",
RouteReflectorClient6 = "string",
RouteReflectorClientEvpn = "string",
RouteReflectorClientVpnv4 = "string",
RouteReflectorClientVpnv6 = "string",
RouteServerClient = "string",
RouteServerClient6 = "string",
RouteServerClientEvpn = "string",
RouteServerClientVpnv4 = "string",
RouteServerClientVpnv6 = "string",
SendCommunity = "string",
SendCommunity6 = "string",
SendCommunityEvpn = "string",
SendCommunityVpnv4 = "string",
SendCommunityVpnv6 = "string",
Shutdown = "string",
SoftReconfiguration = "string",
SoftReconfiguration6 = "string",
SoftReconfigurationEvpn = "string",
SoftReconfigurationVpnv4 = "string",
SoftReconfigurationVpnv6 = "string",
StaleRoute = "string",
StrictCapabilityMatch = "string",
UnsuppressMap = "string",
UnsuppressMap6 = "string",
UpdateSource = "string",
Weight = 0,
},
},
NeighborRange6s = new[]
{
new Fortios.Router.Inputs.BgpNeighborRange6Args
{
Id = 0,
MaxNeighborNum = 0,
NeighborGroup = "string",
Prefix6 = "string",
},
},
NeighborRanges = new[]
{
new Fortios.Router.Inputs.BgpNeighborRangeArgs
{
Id = 0,
MaxNeighborNum = 0,
NeighborGroup = "string",
Prefix = "string",
},
},
Neighbors = new[]
{
new Fortios.Router.Inputs.BgpNeighborArgs
{
Activate = "string",
Activate6 = "string",
ActivateEvpn = "string",
ActivateVpnv4 = "string",
ActivateVpnv6 = "string",
AdditionalPath = "string",
AdditionalPath6 = "string",
AdditionalPathVpnv4 = "string",
AdditionalPathVpnv6 = "string",
AdvAdditionalPath = 0,
AdvAdditionalPath6 = 0,
AdvAdditionalPathVpnv4 = 0,
AdvAdditionalPathVpnv6 = 0,
AdvertisementInterval = 0,
AllowasIn = 0,
AllowasIn6 = 0,
AllowasInEnable = "string",
AllowasInEnable6 = "string",
AllowasInEnableEvpn = "string",
AllowasInEnableVpnv4 = "string",
AllowasInEnableVpnv6 = "string",
AllowasInEvpn = 0,
AllowasInVpnv4 = 0,
AllowasInVpnv6 = 0,
AsOverride = "string",
AsOverride6 = "string",
AttributeUnchanged = "string",
AttributeUnchanged6 = "string",
AttributeUnchangedVpnv4 = "string",
AttributeUnchangedVpnv6 = "string",
AuthOptions = "string",
Bfd = "string",
CapabilityDefaultOriginate = "string",
CapabilityDefaultOriginate6 = "string",
CapabilityDynamic = "string",
CapabilityGracefulRestart = "string",
CapabilityGracefulRestart6 = "string",
CapabilityGracefulRestartEvpn = "string",
CapabilityGracefulRestartVpnv4 = "string",
CapabilityGracefulRestartVpnv6 = "string",
CapabilityOrf = "string",
CapabilityOrf6 = "string",
CapabilityRouteRefresh = "string",
ConditionalAdvertise6s = new[]
{
new Fortios.Router.Inputs.BgpNeighborConditionalAdvertise6Args
{
AdvertiseRoutemap = "string",
ConditionRoutemap = "string",
ConditionType = "string",
},
},
ConditionalAdvertises = new[]
{
new Fortios.Router.Inputs.BgpNeighborConditionalAdvertiseArgs
{
AdvertiseRoutemap = "string",
ConditionRoutemap = "string",
ConditionType = "string",
},
},
ConnectTimer = 0,
DefaultOriginateRoutemap = "string",
DefaultOriginateRoutemap6 = "string",
Description = "string",
DistributeListIn = "string",
DistributeListIn6 = "string",
DistributeListInVpnv4 = "string",
DistributeListInVpnv6 = "string",
DistributeListOut = "string",
DistributeListOut6 = "string",
DistributeListOutVpnv4 = "string",
DistributeListOutVpnv6 = "string",
DontCapabilityNegotiate = "string",
EbgpEnforceMultihop = "string",
EbgpMultihopTtl = 0,
FilterListIn = "string",
FilterListIn6 = "string",
FilterListInVpnv4 = "string",
FilterListInVpnv6 = "string",
FilterListOut = "string",
FilterListOut6 = "string",
FilterListOutVpnv4 = "string",
FilterListOutVpnv6 = "string",
HoldtimeTimer = 0,
Interface = "string",
Ip = "string",
KeepAliveTimer = 0,
LinkDownFailover = "string",
LocalAs = 0,
LocalAsNoPrepend = "string",
LocalAsReplaceAs = "string",
MaximumPrefix = 0,
MaximumPrefix6 = 0,
MaximumPrefixEvpn = 0,
MaximumPrefixThreshold = 0,
MaximumPrefixThreshold6 = 0,
MaximumPrefixThresholdEvpn = 0,
MaximumPrefixThresholdVpnv4 = 0,
MaximumPrefixThresholdVpnv6 = 0,
MaximumPrefixVpnv4 = 0,
MaximumPrefixVpnv6 = 0,
MaximumPrefixWarningOnly = "string",
MaximumPrefixWarningOnly6 = "string",
MaximumPrefixWarningOnlyEvpn = "string",
MaximumPrefixWarningOnlyVpnv4 = "string",
MaximumPrefixWarningOnlyVpnv6 = "string",
NextHopSelf = "string",
NextHopSelf6 = "string",
NextHopSelfRr = "string",
NextHopSelfRr6 = "string",
NextHopSelfVpnv4 = "string",
NextHopSelfVpnv6 = "string",
OverrideCapability = "string",
Passive = "string",
Password = "string",
PrefixListIn = "string",
PrefixListIn6 = "string",
PrefixListInVpnv4 = "string",
PrefixListInVpnv6 = "string",
PrefixListOut = "string",
PrefixListOut6 = "string",
PrefixListOutVpnv4 = "string",
PrefixListOutVpnv6 = "string",
RemoteAs = 0,
RemovePrivateAs = "string",
RemovePrivateAs6 = "string",
RemovePrivateAsEvpn = "string",
RemovePrivateAsVpnv4 = "string",
RemovePrivateAsVpnv6 = "string",
RestartTime = 0,
RetainStaleTime = 0,
RouteMapIn = "string",
RouteMapIn6 = "string",
RouteMapInEvpn = "string",
RouteMapInVpnv4 = "string",
RouteMapInVpnv6 = "string",
RouteMapOut = "string",
RouteMapOut6 = "string",
RouteMapOut6Preferable = "string",
RouteMapOutEvpn = "string",
RouteMapOutPreferable = "string",
RouteMapOutVpnv4 = "string",
RouteMapOutVpnv4Preferable = "string",
RouteMapOutVpnv6 = "string",
RouteMapOutVpnv6Preferable = "string",
RouteReflectorClient = "string",
RouteReflectorClient6 = "string",
RouteReflectorClientEvpn = "string",
RouteReflectorClientVpnv4 = "string",
RouteReflectorClientVpnv6 = "string",
RouteServerClient = "string",
RouteServerClient6 = "string",
RouteServerClientEvpn = "string",
RouteServerClientVpnv4 = "string",
RouteServerClientVpnv6 = "string",
SendCommunity = "string",
SendCommunity6 = "string",
SendCommunityEvpn = "string",
SendCommunityVpnv4 = "string",
SendCommunityVpnv6 = "string",
Shutdown = "string",
SoftReconfiguration = "string",
SoftReconfiguration6 = "string",
SoftReconfigurationEvpn = "string",
SoftReconfigurationVpnv4 = "string",
SoftReconfigurationVpnv6 = "string",
StaleRoute = "string",
StrictCapabilityMatch = "string",
UnsuppressMap = "string",
UnsuppressMap6 = "string",
UpdateSource = "string",
Weight = 0,
},
},
Network6s = new[]
{
new Fortios.Router.Inputs.BgpNetwork6Args
{
Backdoor = "string",
Id = 0,
NetworkImportCheck = "string",
Prefix6 = "string",
RouteMap = "string",
},
},
NetworkImportCheck = "string",
Networks = new[]
{
new Fortios.Router.Inputs.BgpNetworkArgs
{
Backdoor = "string",
Id = 0,
NetworkImportCheck = "string",
Prefix = "string",
RouteMap = "string",
},
},
RecursiveInheritPriority = "string",
RecursiveNextHop = "string",
Redistribute6s = new[]
{
new Fortios.Router.Inputs.BgpRedistribute6Args
{
Name = "string",
RouteMap = "string",
Status = "string",
},
},
Redistributes = new[]
{
new Fortios.Router.Inputs.BgpRedistributeArgs
{
Name = "string",
RouteMap = "string",
Status = "string",
},
},
RouterId = "string",
ScanTime = 0,
Synchronization = "string",
TagResolveMode = "string",
Vdomparam = "string",
Vrf6s = new[]
{
new Fortios.Router.Inputs.BgpVrf6Args
{
ExportRts = new[]
{
new Fortios.Router.Inputs.BgpVrf6ExportRtArgs
{
RouteTarget = "string",
},
},
ImportRouteMap = "string",
ImportRts = new[]
{
new Fortios.Router.Inputs.BgpVrf6ImportRtArgs
{
RouteTarget = "string",
},
},
LeakTargets = new[]
{
new Fortios.Router.Inputs.BgpVrf6LeakTargetArgs
{
Interface = "string",
RouteMap = "string",
Vrf = "string",
},
},
Rd = "string",
Role = "string",
Vrf = "string",
},
},
VrfLeak6s = new[]
{
new Fortios.Router.Inputs.BgpVrfLeak6Args
{
Targets = new[]
{
new Fortios.Router.Inputs.BgpVrfLeak6TargetArgs
{
Interface = "string",
RouteMap = "string",
Vrf = "string",
},
},
Vrf = "string",
},
},
VrfLeaks = new[]
{
new Fortios.Router.Inputs.BgpVrfLeakArgs
{
Targets = new[]
{
new Fortios.Router.Inputs.BgpVrfLeakTargetArgs
{
Interface = "string",
RouteMap = "string",
Vrf = "string",
},
},
Vrf = "string",
},
},
Vrves = new[]
{
new Fortios.Router.Inputs.BgpVrfArgs
{
ExportRts = new[]
{
new Fortios.Router.Inputs.BgpVrfExportRtArgs
{
RouteTarget = "string",
},
},
ImportRouteMap = "string",
ImportRts = new[]
{
new Fortios.Router.Inputs.BgpVrfImportRtArgs
{
RouteTarget = "string",
},
},
LeakTargets = new[]
{
new Fortios.Router.Inputs.BgpVrfLeakTargetArgs
{
Interface = "string",
RouteMap = "string",
Vrf = "string",
},
},
Rd = "string",
Role = "string",
Vrf = "string",
},
},
});
example, err := router.NewBgp(ctx, "bgpResource", &router.BgpArgs{
AdditionalPath: pulumi.String("string"),
AdditionalPath6: pulumi.String("string"),
AdditionalPathSelect: pulumi.Int(0),
AdditionalPathSelect6: pulumi.Int(0),
AdditionalPathSelectVpnv4: pulumi.Int(0),
AdditionalPathSelectVpnv6: pulumi.Int(0),
AdditionalPathVpnv4: pulumi.String("string"),
AdditionalPathVpnv6: pulumi.String("string"),
AdminDistances: router.BgpAdminDistanceArray{
&router.BgpAdminDistanceArgs{
Distance: pulumi.Int(0),
Id: pulumi.Int(0),
NeighbourPrefix: pulumi.String("string"),
RouteList: pulumi.String("string"),
},
},
AggregateAddress6s: router.BgpAggregateAddress6Array{
&router.BgpAggregateAddress6Args{
AsSet: pulumi.String("string"),
Id: pulumi.Int(0),
Prefix6: pulumi.String("string"),
SummaryOnly: pulumi.String("string"),
},
},
AggregateAddresses: router.BgpAggregateAddressArray{
&router.BgpAggregateAddressArgs{
AsSet: pulumi.String("string"),
Id: pulumi.Int(0),
Prefix: pulumi.String("string"),
SummaryOnly: pulumi.String("string"),
},
},
AlwaysCompareMed: pulumi.String("string"),
As: pulumi.Int(0),
AsString: pulumi.String("string"),
BestpathAsPathIgnore: pulumi.String("string"),
BestpathCmpConfedAspath: pulumi.String("string"),
BestpathCmpRouterid: pulumi.String("string"),
BestpathMedConfed: pulumi.String("string"),
BestpathMedMissingAsWorst: pulumi.String("string"),
ClientToClientReflection: pulumi.String("string"),
ClusterId: pulumi.String("string"),
ConfederationIdentifier: pulumi.Int(0),
ConfederationPeers: router.BgpConfederationPeerArray{
&router.BgpConfederationPeerArgs{
Peer: pulumi.String("string"),
},
},
CrossFamilyConditionalAdv: pulumi.String("string"),
Dampening: pulumi.String("string"),
DampeningMaxSuppressTime: pulumi.Int(0),
DampeningReachabilityHalfLife: pulumi.Int(0),
DampeningReuse: pulumi.Int(0),
DampeningRouteMap: pulumi.String("string"),
DampeningSuppress: pulumi.Int(0),
DampeningUnreachabilityHalfLife: pulumi.Int(0),
DefaultLocalPreference: pulumi.Int(0),
DeterministicMed: pulumi.String("string"),
DistanceExternal: pulumi.Int(0),
DistanceInternal: pulumi.Int(0),
DistanceLocal: pulumi.Int(0),
DynamicSortSubtable: pulumi.String("string"),
EbgpMultipath: pulumi.String("string"),
EnforceFirstAs: pulumi.String("string"),
FastExternalFailover: pulumi.String("string"),
GetAllTables: pulumi.String("string"),
GracefulEndOnTimer: pulumi.String("string"),
GracefulRestart: pulumi.String("string"),
GracefulRestartTime: pulumi.Int(0),
GracefulStalepathTime: pulumi.Int(0),
GracefulUpdateDelay: pulumi.Int(0),
HoldtimeTimer: pulumi.Int(0),
IbgpMultipath: pulumi.String("string"),
IgnoreOptionalCapability: pulumi.String("string"),
KeepaliveTimer: pulumi.Int(0),
LogNeighbourChanges: pulumi.String("string"),
MultipathRecursiveDistance: pulumi.String("string"),
NeighborGroups: router.BgpNeighborGroupArray{
&router.BgpNeighborGroupArgs{
Activate: pulumi.String("string"),
Activate6: pulumi.String("string"),
ActivateEvpn: pulumi.String("string"),
ActivateVpnv4: pulumi.String("string"),
ActivateVpnv6: pulumi.String("string"),
AdditionalPath: pulumi.String("string"),
AdditionalPath6: pulumi.String("string"),
AdditionalPathVpnv4: pulumi.String("string"),
AdditionalPathVpnv6: pulumi.String("string"),
AdvAdditionalPath: pulumi.Int(0),
AdvAdditionalPath6: pulumi.Int(0),
AdvAdditionalPathVpnv4: pulumi.Int(0),
AdvAdditionalPathVpnv6: pulumi.Int(0),
AdvertisementInterval: pulumi.Int(0),
AllowasIn: pulumi.Int(0),
AllowasIn6: pulumi.Int(0),
AllowasInEnable: pulumi.String("string"),
AllowasInEnable6: pulumi.String("string"),
AllowasInEnableEvpn: pulumi.String("string"),
AllowasInEnableVpnv4: pulumi.String("string"),
AllowasInEnableVpnv6: pulumi.String("string"),
AllowasInEvpn: pulumi.Int(0),
AllowasInVpnv4: pulumi.Int(0),
AllowasInVpnv6: pulumi.Int(0),
AsOverride: pulumi.String("string"),
AsOverride6: pulumi.String("string"),
AttributeUnchanged: pulumi.String("string"),
AttributeUnchanged6: pulumi.String("string"),
AttributeUnchangedVpnv4: pulumi.String("string"),
AttributeUnchangedVpnv6: pulumi.String("string"),
AuthOptions: pulumi.String("string"),
Bfd: pulumi.String("string"),
CapabilityDefaultOriginate: pulumi.String("string"),
CapabilityDefaultOriginate6: pulumi.String("string"),
CapabilityDynamic: pulumi.String("string"),
CapabilityGracefulRestart: pulumi.String("string"),
CapabilityGracefulRestart6: pulumi.String("string"),
CapabilityGracefulRestartEvpn: pulumi.String("string"),
CapabilityGracefulRestartVpnv4: pulumi.String("string"),
CapabilityGracefulRestartVpnv6: pulumi.String("string"),
CapabilityOrf: pulumi.String("string"),
CapabilityOrf6: pulumi.String("string"),
CapabilityRouteRefresh: pulumi.String("string"),
ConnectTimer: pulumi.Int(0),
DefaultOriginateRoutemap: pulumi.String("string"),
DefaultOriginateRoutemap6: pulumi.String("string"),
Description: pulumi.String("string"),
DistributeListIn: pulumi.String("string"),
DistributeListIn6: pulumi.String("string"),
DistributeListInVpnv4: pulumi.String("string"),
DistributeListInVpnv6: pulumi.String("string"),
DistributeListOut: pulumi.String("string"),
DistributeListOut6: pulumi.String("string"),
DistributeListOutVpnv4: pulumi.String("string"),
DistributeListOutVpnv6: pulumi.String("string"),
DontCapabilityNegotiate: pulumi.String("string"),
EbgpEnforceMultihop: pulumi.String("string"),
EbgpMultihopTtl: pulumi.Int(0),
FilterListIn: pulumi.String("string"),
FilterListIn6: pulumi.String("string"),
FilterListInVpnv4: pulumi.String("string"),
FilterListInVpnv6: pulumi.String("string"),
FilterListOut: pulumi.String("string"),
FilterListOut6: pulumi.String("string"),
FilterListOutVpnv4: pulumi.String("string"),
FilterListOutVpnv6: pulumi.String("string"),
HoldtimeTimer: pulumi.Int(0),
Interface: pulumi.String("string"),
KeepAliveTimer: pulumi.Int(0),
LinkDownFailover: pulumi.String("string"),
LocalAs: pulumi.Int(0),
LocalAsNoPrepend: pulumi.String("string"),
LocalAsReplaceAs: pulumi.String("string"),
MaximumPrefix: pulumi.Int(0),
MaximumPrefix6: pulumi.Int(0),
MaximumPrefixEvpn: pulumi.Int(0),
MaximumPrefixThreshold: pulumi.Int(0),
MaximumPrefixThreshold6: pulumi.Int(0),
MaximumPrefixThresholdEvpn: pulumi.Int(0),
MaximumPrefixThresholdVpnv4: pulumi.Int(0),
MaximumPrefixThresholdVpnv6: pulumi.Int(0),
MaximumPrefixVpnv4: pulumi.Int(0),
MaximumPrefixVpnv6: pulumi.Int(0),
MaximumPrefixWarningOnly: pulumi.String("string"),
MaximumPrefixWarningOnly6: pulumi.String("string"),
MaximumPrefixWarningOnlyEvpn: pulumi.String("string"),
MaximumPrefixWarningOnlyVpnv4: pulumi.String("string"),
MaximumPrefixWarningOnlyVpnv6: pulumi.String("string"),
Name: pulumi.String("string"),
NextHopSelf: pulumi.String("string"),
NextHopSelf6: pulumi.String("string"),
NextHopSelfRr: pulumi.String("string"),
NextHopSelfRr6: pulumi.String("string"),
NextHopSelfVpnv4: pulumi.String("string"),
NextHopSelfVpnv6: pulumi.String("string"),
OverrideCapability: pulumi.String("string"),
Passive: pulumi.String("string"),
Password: pulumi.String("string"),
PrefixListIn: pulumi.String("string"),
PrefixListIn6: pulumi.String("string"),
PrefixListInVpnv4: pulumi.String("string"),
PrefixListInVpnv6: pulumi.String("string"),
PrefixListOut: pulumi.String("string"),
PrefixListOut6: pulumi.String("string"),
PrefixListOutVpnv4: pulumi.String("string"),
PrefixListOutVpnv6: pulumi.String("string"),
RemoteAs: pulumi.Int(0),
RemoteAsFilter: pulumi.String("string"),
RemovePrivateAs: pulumi.String("string"),
RemovePrivateAs6: pulumi.String("string"),
RemovePrivateAsEvpn: pulumi.String("string"),
RemovePrivateAsVpnv4: pulumi.String("string"),
RemovePrivateAsVpnv6: pulumi.String("string"),
RestartTime: pulumi.Int(0),
RetainStaleTime: pulumi.Int(0),
RouteMapIn: pulumi.String("string"),
RouteMapIn6: pulumi.String("string"),
RouteMapInEvpn: pulumi.String("string"),
RouteMapInVpnv4: pulumi.String("string"),
RouteMapInVpnv6: pulumi.String("string"),
RouteMapOut: pulumi.String("string"),
RouteMapOut6: pulumi.String("string"),
RouteMapOut6Preferable: pulumi.String("string"),
RouteMapOutEvpn: pulumi.String("string"),
RouteMapOutPreferable: pulumi.String("string"),
RouteMapOutVpnv4: pulumi.String("string"),
RouteMapOutVpnv4Preferable: pulumi.String("string"),
RouteMapOutVpnv6: pulumi.String("string"),
RouteMapOutVpnv6Preferable: pulumi.String("string"),
RouteReflectorClient: pulumi.String("string"),
RouteReflectorClient6: pulumi.String("string"),
RouteReflectorClientEvpn: pulumi.String("string"),
RouteReflectorClientVpnv4: pulumi.String("string"),
RouteReflectorClientVpnv6: pulumi.String("string"),
RouteServerClient: pulumi.String("string"),
RouteServerClient6: pulumi.String("string"),
RouteServerClientEvpn: pulumi.String("string"),
RouteServerClientVpnv4: pulumi.String("string"),
RouteServerClientVpnv6: pulumi.String("string"),
SendCommunity: pulumi.String("string"),
SendCommunity6: pulumi.String("string"),
SendCommunityEvpn: pulumi.String("string"),
SendCommunityVpnv4: pulumi.String("string"),
SendCommunityVpnv6: pulumi.String("string"),
Shutdown: pulumi.String("string"),
SoftReconfiguration: pulumi.String("string"),
SoftReconfiguration6: pulumi.String("string"),
SoftReconfigurationEvpn: pulumi.String("string"),
SoftReconfigurationVpnv4: pulumi.String("string"),
SoftReconfigurationVpnv6: pulumi.String("string"),
StaleRoute: pulumi.String("string"),
StrictCapabilityMatch: pulumi.String("string"),
UnsuppressMap: pulumi.String("string"),
UnsuppressMap6: pulumi.String("string"),
UpdateSource: pulumi.String("string"),
Weight: pulumi.Int(0),
},
},
NeighborRange6s: router.BgpNeighborRange6Array{
&router.BgpNeighborRange6Args{
Id: pulumi.Int(0),
MaxNeighborNum: pulumi.Int(0),
NeighborGroup: pulumi.String("string"),
Prefix6: pulumi.String("string"),
},
},
NeighborRanges: router.BgpNeighborRangeArray{
&router.BgpNeighborRangeArgs{
Id: pulumi.Int(0),
MaxNeighborNum: pulumi.Int(0),
NeighborGroup: pulumi.String("string"),
Prefix: pulumi.String("string"),
},
},
Neighbors: router.BgpNeighborArray{
&router.BgpNeighborArgs{
Activate: pulumi.String("string"),
Activate6: pulumi.String("string"),
ActivateEvpn: pulumi.String("string"),
ActivateVpnv4: pulumi.String("string"),
ActivateVpnv6: pulumi.String("string"),
AdditionalPath: pulumi.String("string"),
AdditionalPath6: pulumi.String("string"),
AdditionalPathVpnv4: pulumi.String("string"),
AdditionalPathVpnv6: pulumi.String("string"),
AdvAdditionalPath: pulumi.Int(0),
AdvAdditionalPath6: pulumi.Int(0),
AdvAdditionalPathVpnv4: pulumi.Int(0),
AdvAdditionalPathVpnv6: pulumi.Int(0),
AdvertisementInterval: pulumi.Int(0),
AllowasIn: pulumi.Int(0),
AllowasIn6: pulumi.Int(0),
AllowasInEnable: pulumi.String("string"),
AllowasInEnable6: pulumi.String("string"),
AllowasInEnableEvpn: pulumi.String("string"),
AllowasInEnableVpnv4: pulumi.String("string"),
AllowasInEnableVpnv6: pulumi.String("string"),
AllowasInEvpn: pulumi.Int(0),
AllowasInVpnv4: pulumi.Int(0),
AllowasInVpnv6: pulumi.Int(0),
AsOverride: pulumi.String("string"),
AsOverride6: pulumi.String("string"),
AttributeUnchanged: pulumi.String("string"),
AttributeUnchanged6: pulumi.String("string"),
AttributeUnchangedVpnv4: pulumi.String("string"),
AttributeUnchangedVpnv6: pulumi.String("string"),
AuthOptions: pulumi.String("string"),
Bfd: pulumi.String("string"),
CapabilityDefaultOriginate: pulumi.String("string"),
CapabilityDefaultOriginate6: pulumi.String("string"),
CapabilityDynamic: pulumi.String("string"),
CapabilityGracefulRestart: pulumi.String("string"),
CapabilityGracefulRestart6: pulumi.String("string"),
CapabilityGracefulRestartEvpn: pulumi.String("string"),
CapabilityGracefulRestartVpnv4: pulumi.String("string"),
CapabilityGracefulRestartVpnv6: pulumi.String("string"),
CapabilityOrf: pulumi.String("string"),
CapabilityOrf6: pulumi.String("string"),
CapabilityRouteRefresh: pulumi.String("string"),
ConditionalAdvertise6s: router.BgpNeighborConditionalAdvertise6Array{
&router.BgpNeighborConditionalAdvertise6Args{
AdvertiseRoutemap: pulumi.String("string"),
ConditionRoutemap: pulumi.String("string"),
ConditionType: pulumi.String("string"),
},
},
ConditionalAdvertises: router.BgpNeighborConditionalAdvertiseArray{
&router.BgpNeighborConditionalAdvertiseArgs{
AdvertiseRoutemap: pulumi.String("string"),
ConditionRoutemap: pulumi.String("string"),
ConditionType: pulumi.String("string"),
},
},
ConnectTimer: pulumi.Int(0),
DefaultOriginateRoutemap: pulumi.String("string"),
DefaultOriginateRoutemap6: pulumi.String("string"),
Description: pulumi.String("string"),
DistributeListIn: pulumi.String("string"),
DistributeListIn6: pulumi.String("string"),
DistributeListInVpnv4: pulumi.String("string"),
DistributeListInVpnv6: pulumi.String("string"),
DistributeListOut: pulumi.String("string"),
DistributeListOut6: pulumi.String("string"),
DistributeListOutVpnv4: pulumi.String("string"),
DistributeListOutVpnv6: pulumi.String("string"),
DontCapabilityNegotiate: pulumi.String("string"),
EbgpEnforceMultihop: pulumi.String("string"),
EbgpMultihopTtl: pulumi.Int(0),
FilterListIn: pulumi.String("string"),
FilterListIn6: pulumi.String("string"),
FilterListInVpnv4: pulumi.String("string"),
FilterListInVpnv6: pulumi.String("string"),
FilterListOut: pulumi.String("string"),
FilterListOut6: pulumi.String("string"),
FilterListOutVpnv4: pulumi.String("string"),
FilterListOutVpnv6: pulumi.String("string"),
HoldtimeTimer: pulumi.Int(0),
Interface: pulumi.String("string"),
Ip: pulumi.String("string"),
KeepAliveTimer: pulumi.Int(0),
LinkDownFailover: pulumi.String("string"),
LocalAs: pulumi.Int(0),
LocalAsNoPrepend: pulumi.String("string"),
LocalAsReplaceAs: pulumi.String("string"),
MaximumPrefix: pulumi.Int(0),
MaximumPrefix6: pulumi.Int(0),
MaximumPrefixEvpn: pulumi.Int(0),
MaximumPrefixThreshold: pulumi.Int(0),
MaximumPrefixThreshold6: pulumi.Int(0),
MaximumPrefixThresholdEvpn: pulumi.Int(0),
MaximumPrefixThresholdVpnv4: pulumi.Int(0),
MaximumPrefixThresholdVpnv6: pulumi.Int(0),
MaximumPrefixVpnv4: pulumi.Int(0),
MaximumPrefixVpnv6: pulumi.Int(0),
MaximumPrefixWarningOnly: pulumi.String("string"),
MaximumPrefixWarningOnly6: pulumi.String("string"),
MaximumPrefixWarningOnlyEvpn: pulumi.String("string"),
MaximumPrefixWarningOnlyVpnv4: pulumi.String("string"),
MaximumPrefixWarningOnlyVpnv6: pulumi.String("string"),
NextHopSelf: pulumi.String("string"),
NextHopSelf6: pulumi.String("string"),
NextHopSelfRr: pulumi.String("string"),
NextHopSelfRr6: pulumi.String("string"),
NextHopSelfVpnv4: pulumi.String("string"),
NextHopSelfVpnv6: pulumi.String("string"),
OverrideCapability: pulumi.String("string"),
Passive: pulumi.String("string"),
Password: pulumi.String("string"),
PrefixListIn: pulumi.String("string"),
PrefixListIn6: pulumi.String("string"),
PrefixListInVpnv4: pulumi.String("string"),
PrefixListInVpnv6: pulumi.String("string"),
PrefixListOut: pulumi.String("string"),
PrefixListOut6: pulumi.String("string"),
PrefixListOutVpnv4: pulumi.String("string"),
PrefixListOutVpnv6: pulumi.String("string"),
RemoteAs: pulumi.Int(0),
RemovePrivateAs: pulumi.String("string"),
RemovePrivateAs6: pulumi.String("string"),
RemovePrivateAsEvpn: pulumi.String("string"),
RemovePrivateAsVpnv4: pulumi.String("string"),
RemovePrivateAsVpnv6: pulumi.String("string"),
RestartTime: pulumi.Int(0),
RetainStaleTime: pulumi.Int(0),
RouteMapIn: pulumi.String("string"),
RouteMapIn6: pulumi.String("string"),
RouteMapInEvpn: pulumi.String("string"),
RouteMapInVpnv4: pulumi.String("string"),
RouteMapInVpnv6: pulumi.String("string"),
RouteMapOut: pulumi.String("string"),
RouteMapOut6: pulumi.String("string"),
RouteMapOut6Preferable: pulumi.String("string"),
RouteMapOutEvpn: pulumi.String("string"),
RouteMapOutPreferable: pulumi.String("string"),
RouteMapOutVpnv4: pulumi.String("string"),
RouteMapOutVpnv4Preferable: pulumi.String("string"),
RouteMapOutVpnv6: pulumi.String("string"),
RouteMapOutVpnv6Preferable: pulumi.String("string"),
RouteReflectorClient: pulumi.String("string"),
RouteReflectorClient6: pulumi.String("string"),
RouteReflectorClientEvpn: pulumi.String("string"),
RouteReflectorClientVpnv4: pulumi.String("string"),
RouteReflectorClientVpnv6: pulumi.String("string"),
RouteServerClient: pulumi.String("string"),
RouteServerClient6: pulumi.String("string"),
RouteServerClientEvpn: pulumi.String("string"),
RouteServerClientVpnv4: pulumi.String("string"),
RouteServerClientVpnv6: pulumi.String("string"),
SendCommunity: pulumi.String("string"),
SendCommunity6: pulumi.String("string"),
SendCommunityEvpn: pulumi.String("string"),
SendCommunityVpnv4: pulumi.String("string"),
SendCommunityVpnv6: pulumi.String("string"),
Shutdown: pulumi.String("string"),
SoftReconfiguration: pulumi.String("string"),
SoftReconfiguration6: pulumi.String("string"),
SoftReconfigurationEvpn: pulumi.String("string"),
SoftReconfigurationVpnv4: pulumi.String("string"),
SoftReconfigurationVpnv6: pulumi.String("string"),
StaleRoute: pulumi.String("string"),
StrictCapabilityMatch: pulumi.String("string"),
UnsuppressMap: pulumi.String("string"),
UnsuppressMap6: pulumi.String("string"),
UpdateSource: pulumi.String("string"),
Weight: pulumi.Int(0),
},
},
Network6s: router.BgpNetwork6Array{
&router.BgpNetwork6Args{
Backdoor: pulumi.String("string"),
Id: pulumi.Int(0),
NetworkImportCheck: pulumi.String("string"),
Prefix6: pulumi.String("string"),
RouteMap: pulumi.String("string"),
},
},
NetworkImportCheck: pulumi.String("string"),
Networks: router.BgpNetworkArray{
&router.BgpNetworkArgs{
Backdoor: pulumi.String("string"),
Id: pulumi.Int(0),
NetworkImportCheck: pulumi.String("string"),
Prefix: pulumi.String("string"),
RouteMap: pulumi.String("string"),
},
},
RecursiveInheritPriority: pulumi.String("string"),
RecursiveNextHop: pulumi.String("string"),
Redistribute6s: router.BgpRedistribute6Array{
&router.BgpRedistribute6Args{
Name: pulumi.String("string"),
RouteMap: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
Redistributes: router.BgpRedistributeArray{
&router.BgpRedistributeArgs{
Name: pulumi.String("string"),
RouteMap: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
RouterId: pulumi.String("string"),
ScanTime: pulumi.Int(0),
Synchronization: pulumi.String("string"),
TagResolveMode: pulumi.String("string"),
Vdomparam: pulumi.String("string"),
Vrf6s: router.BgpVrf6Array{
&router.BgpVrf6Args{
ExportRts: router.BgpVrf6ExportRtArray{
&router.BgpVrf6ExportRtArgs{
RouteTarget: pulumi.String("string"),
},
},
ImportRouteMap: pulumi.String("string"),
ImportRts: router.BgpVrf6ImportRtArray{
&router.BgpVrf6ImportRtArgs{
RouteTarget: pulumi.String("string"),
},
},
LeakTargets: router.BgpVrf6LeakTargetArray{
&router.BgpVrf6LeakTargetArgs{
Interface: pulumi.String("string"),
RouteMap: pulumi.String("string"),
Vrf: pulumi.String("string"),
},
},
Rd: pulumi.String("string"),
Role: pulumi.String("string"),
Vrf: pulumi.String("string"),
},
},
VrfLeak6s: router.BgpVrfLeak6Array{
&router.BgpVrfLeak6Args{
Targets: router.BgpVrfLeak6TargetArray{
&router.BgpVrfLeak6TargetArgs{
Interface: pulumi.String("string"),
RouteMap: pulumi.String("string"),
Vrf: pulumi.String("string"),
},
},
Vrf: pulumi.String("string"),
},
},
VrfLeaks: router.BgpVrfLeakArray{
&router.BgpVrfLeakArgs{
Targets: router.BgpVrfLeakTargetArray{
&router.BgpVrfLeakTargetArgs{
Interface: pulumi.String("string"),
RouteMap: pulumi.String("string"),
Vrf: pulumi.String("string"),
},
},
Vrf: pulumi.String("string"),
},
},
Vrves: router.BgpVrfArray{
&router.BgpVrfArgs{
ExportRts: router.BgpVrfExportRtArray{
&router.BgpVrfExportRtArgs{
RouteTarget: pulumi.String("string"),
},
},
ImportRouteMap: pulumi.String("string"),
ImportRts: router.BgpVrfImportRtArray{
&router.BgpVrfImportRtArgs{
RouteTarget: pulumi.String("string"),
},
},
LeakTargets: router.BgpVrfLeakTargetArray{
&router.BgpVrfLeakTargetArgs{
Interface: pulumi.String("string"),
RouteMap: pulumi.String("string"),
Vrf: pulumi.String("string"),
},
},
Rd: pulumi.String("string"),
Role: pulumi.String("string"),
Vrf: pulumi.String("string"),
},
},
})
var bgpResource = new Bgp("bgpResource", BgpArgs.builder()
.additionalPath("string")
.additionalPath6("string")
.additionalPathSelect(0)
.additionalPathSelect6(0)
.additionalPathSelectVpnv4(0)
.additionalPathSelectVpnv6(0)
.additionalPathVpnv4("string")
.additionalPathVpnv6("string")
.adminDistances(BgpAdminDistanceArgs.builder()
.distance(0)
.id(0)
.neighbourPrefix("string")
.routeList("string")
.build())
.aggregateAddress6s(BgpAggregateAddress6Args.builder()
.asSet("string")
.id(0)
.prefix6("string")
.summaryOnly("string")
.build())
.aggregateAddresses(BgpAggregateAddressArgs.builder()
.asSet("string")
.id(0)
.prefix("string")
.summaryOnly("string")
.build())
.alwaysCompareMed("string")
.as(0)
.asString("string")
.bestpathAsPathIgnore("string")
.bestpathCmpConfedAspath("string")
.bestpathCmpRouterid("string")
.bestpathMedConfed("string")
.bestpathMedMissingAsWorst("string")
.clientToClientReflection("string")
.clusterId("string")
.confederationIdentifier(0)
.confederationPeers(BgpConfederationPeerArgs.builder()
.peer("string")
.build())
.crossFamilyConditionalAdv("string")
.dampening("string")
.dampeningMaxSuppressTime(0)
.dampeningReachabilityHalfLife(0)
.dampeningReuse(0)
.dampeningRouteMap("string")
.dampeningSuppress(0)
.dampeningUnreachabilityHalfLife(0)
.defaultLocalPreference(0)
.deterministicMed("string")
.distanceExternal(0)
.distanceInternal(0)
.distanceLocal(0)
.dynamicSortSubtable("string")
.ebgpMultipath("string")
.enforceFirstAs("string")
.fastExternalFailover("string")
.getAllTables("string")
.gracefulEndOnTimer("string")
.gracefulRestart("string")
.gracefulRestartTime(0)
.gracefulStalepathTime(0)
.gracefulUpdateDelay(0)
.holdtimeTimer(0)
.ibgpMultipath("string")
.ignoreOptionalCapability("string")
.keepaliveTimer(0)
.logNeighbourChanges("string")
.multipathRecursiveDistance("string")
.neighborGroups(BgpNeighborGroupArgs.builder()
.activate("string")
.activate6("string")
.activateEvpn("string")
.activateVpnv4("string")
.activateVpnv6("string")
.additionalPath("string")
.additionalPath6("string")
.additionalPathVpnv4("string")
.additionalPathVpnv6("string")
.advAdditionalPath(0)
.advAdditionalPath6(0)
.advAdditionalPathVpnv4(0)
.advAdditionalPathVpnv6(0)
.advertisementInterval(0)
.allowasIn(0)
.allowasIn6(0)
.allowasInEnable("string")
.allowasInEnable6("string")
.allowasInEnableEvpn("string")
.allowasInEnableVpnv4("string")
.allowasInEnableVpnv6("string")
.allowasInEvpn(0)
.allowasInVpnv4(0)
.allowasInVpnv6(0)
.asOverride("string")
.asOverride6("string")
.attributeUnchanged("string")
.attributeUnchanged6("string")
.attributeUnchangedVpnv4("string")
.attributeUnchangedVpnv6("string")
.authOptions("string")
.bfd("string")
.capabilityDefaultOriginate("string")
.capabilityDefaultOriginate6("string")
.capabilityDynamic("string")
.capabilityGracefulRestart("string")
.capabilityGracefulRestart6("string")
.capabilityGracefulRestartEvpn("string")
.capabilityGracefulRestartVpnv4("string")
.capabilityGracefulRestartVpnv6("string")
.capabilityOrf("string")
.capabilityOrf6("string")
.capabilityRouteRefresh("string")
.connectTimer(0)
.defaultOriginateRoutemap("string")
.defaultOriginateRoutemap6("string")
.description("string")
.distributeListIn("string")
.distributeListIn6("string")
.distributeListInVpnv4("string")
.distributeListInVpnv6("string")
.distributeListOut("string")
.distributeListOut6("string")
.distributeListOutVpnv4("string")
.distributeListOutVpnv6("string")
.dontCapabilityNegotiate("string")
.ebgpEnforceMultihop("string")
.ebgpMultihopTtl(0)
.filterListIn("string")
.filterListIn6("string")
.filterListInVpnv4("string")
.filterListInVpnv6("string")
.filterListOut("string")
.filterListOut6("string")
.filterListOutVpnv4("string")
.filterListOutVpnv6("string")
.holdtimeTimer(0)
.interface_("string")
.keepAliveTimer(0)
.linkDownFailover("string")
.localAs(0)
.localAsNoPrepend("string")
.localAsReplaceAs("string")
.maximumPrefix(0)
.maximumPrefix6(0)
.maximumPrefixEvpn(0)
.maximumPrefixThreshold(0)
.maximumPrefixThreshold6(0)
.maximumPrefixThresholdEvpn(0)
.maximumPrefixThresholdVpnv4(0)
.maximumPrefixThresholdVpnv6(0)
.maximumPrefixVpnv4(0)
.maximumPrefixVpnv6(0)
.maximumPrefixWarningOnly("string")
.maximumPrefixWarningOnly6("string")
.maximumPrefixWarningOnlyEvpn("string")
.maximumPrefixWarningOnlyVpnv4("string")
.maximumPrefixWarningOnlyVpnv6("string")
.name("string")
.nextHopSelf("string")
.nextHopSelf6("string")
.nextHopSelfRr("string")
.nextHopSelfRr6("string")
.nextHopSelfVpnv4("string")
.nextHopSelfVpnv6("string")
.overrideCapability("string")
.passive("string")
.password("string")
.prefixListIn("string")
.prefixListIn6("string")
.prefixListInVpnv4("string")
.prefixListInVpnv6("string")
.prefixListOut("string")
.prefixListOut6("string")
.prefixListOutVpnv4("string")
.prefixListOutVpnv6("string")
.remoteAs(0)
.remoteAsFilter("string")
.removePrivateAs("string")
.removePrivateAs6("string")
.removePrivateAsEvpn("string")
.removePrivateAsVpnv4("string")
.removePrivateAsVpnv6("string")
.restartTime(0)
.retainStaleTime(0)
.routeMapIn("string")
.routeMapIn6("string")
.routeMapInEvpn("string")
.routeMapInVpnv4("string")
.routeMapInVpnv6("string")
.routeMapOut("string")
.routeMapOut6("string")
.routeMapOut6Preferable("string")
.routeMapOutEvpn("string")
.routeMapOutPreferable("string")
.routeMapOutVpnv4("string")
.routeMapOutVpnv4Preferable("string")
.routeMapOutVpnv6("string")
.routeMapOutVpnv6Preferable("string")
.routeReflectorClient("string")
.routeReflectorClient6("string")
.routeReflectorClientEvpn("string")
.routeReflectorClientVpnv4("string")
.routeReflectorClientVpnv6("string")
.routeServerClient("string")
.routeServerClient6("string")
.routeServerClientEvpn("string")
.routeServerClientVpnv4("string")
.routeServerClientVpnv6("string")
.sendCommunity("string")
.sendCommunity6("string")
.sendCommunityEvpn("string")
.sendCommunityVpnv4("string")
.sendCommunityVpnv6("string")
.shutdown("string")
.softReconfiguration("string")
.softReconfiguration6("string")
.softReconfigurationEvpn("string")
.softReconfigurationVpnv4("string")
.softReconfigurationVpnv6("string")
.staleRoute("string")
.strictCapabilityMatch("string")
.unsuppressMap("string")
.unsuppressMap6("string")
.updateSource("string")
.weight(0)
.build())
.neighborRange6s(BgpNeighborRange6Args.builder()
.id(0)
.maxNeighborNum(0)
.neighborGroup("string")
.prefix6("string")
.build())
.neighborRanges(BgpNeighborRangeArgs.builder()
.id(0)
.maxNeighborNum(0)
.neighborGroup("string")
.prefix("string")
.build())
.neighbors(BgpNeighborArgs.builder()
.activate("string")
.activate6("string")
.activateEvpn("string")
.activateVpnv4("string")
.activateVpnv6("string")
.additionalPath("string")
.additionalPath6("string")
.additionalPathVpnv4("string")
.additionalPathVpnv6("string")
.advAdditionalPath(0)
.advAdditionalPath6(0)
.advAdditionalPathVpnv4(0)
.advAdditionalPathVpnv6(0)
.advertisementInterval(0)
.allowasIn(0)
.allowasIn6(0)
.allowasInEnable("string")
.allowasInEnable6("string")
.allowasInEnableEvpn("string")
.allowasInEnableVpnv4("string")
.allowasInEnableVpnv6("string")
.allowasInEvpn(0)
.allowasInVpnv4(0)
.allowasInVpnv6(0)
.asOverride("string")
.asOverride6("string")
.attributeUnchanged("string")
.attributeUnchanged6("string")
.attributeUnchangedVpnv4("string")
.attributeUnchangedVpnv6("string")
.authOptions("string")
.bfd("string")
.capabilityDefaultOriginate("string")
.capabilityDefaultOriginate6("string")
.capabilityDynamic("string")
.capabilityGracefulRestart("string")
.capabilityGracefulRestart6("string")
.capabilityGracefulRestartEvpn("string")
.capabilityGracefulRestartVpnv4("string")
.capabilityGracefulRestartVpnv6("string")
.capabilityOrf("string")
.capabilityOrf6("string")
.capabilityRouteRefresh("string")
.conditionalAdvertise6s(BgpNeighborConditionalAdvertise6Args.builder()
.advertiseRoutemap("string")
.conditionRoutemap("string")
.conditionType("string")
.build())
.conditionalAdvertises(BgpNeighborConditionalAdvertiseArgs.builder()
.advertiseRoutemap("string")
.conditionRoutemap("string")
.conditionType("string")
.build())
.connectTimer(0)
.defaultOriginateRoutemap("string")
.defaultOriginateRoutemap6("string")
.description("string")
.distributeListIn("string")
.distributeListIn6("string")
.distributeListInVpnv4("string")
.distributeListInVpnv6("string")
.distributeListOut("string")
.distributeListOut6("string")
.distributeListOutVpnv4("string")
.distributeListOutVpnv6("string")
.dontCapabilityNegotiate("string")
.ebgpEnforceMultihop("string")
.ebgpMultihopTtl(0)
.filterListIn("string")
.filterListIn6("string")
.filterListInVpnv4("string")
.filterListInVpnv6("string")
.filterListOut("string")
.filterListOut6("string")
.filterListOutVpnv4("string")
.filterListOutVpnv6("string")
.holdtimeTimer(0)
.interface_("string")
.ip("string")
.keepAliveTimer(0)
.linkDownFailover("string")
.localAs(0)
.localAsNoPrepend("string")
.localAsReplaceAs("string")
.maximumPrefix(0)
.maximumPrefix6(0)
.maximumPrefixEvpn(0)
.maximumPrefixThreshold(0)
.maximumPrefixThreshold6(0)
.maximumPrefixThresholdEvpn(0)
.maximumPrefixThresholdVpnv4(0)
.maximumPrefixThresholdVpnv6(0)
.maximumPrefixVpnv4(0)
.maximumPrefixVpnv6(0)
.maximumPrefixWarningOnly("string")
.maximumPrefixWarningOnly6("string")
.maximumPrefixWarningOnlyEvpn("string")
.maximumPrefixWarningOnlyVpnv4("string")
.maximumPrefixWarningOnlyVpnv6("string")
.nextHopSelf("string")
.nextHopSelf6("string")
.nextHopSelfRr("string")
.nextHopSelfRr6("string")
.nextHopSelfVpnv4("string")
.nextHopSelfVpnv6("string")
.overrideCapability("string")
.passive("string")
.password("string")
.prefixListIn("string")
.prefixListIn6("string")
.prefixListInVpnv4("string")
.prefixListInVpnv6("string")
.prefixListOut("string")
.prefixListOut6("string")
.prefixListOutVpnv4("string")
.prefixListOutVpnv6("string")
.remoteAs(0)
.removePrivateAs("string")
.removePrivateAs6("string")
.removePrivateAsEvpn("string")
.removePrivateAsVpnv4("string")
.removePrivateAsVpnv6("string")
.restartTime(0)
.retainStaleTime(0)
.routeMapIn("string")
.routeMapIn6("string")
.routeMapInEvpn("string")
.routeMapInVpnv4("string")
.routeMapInVpnv6("string")
.routeMapOut("string")
.routeMapOut6("string")
.routeMapOut6Preferable("string")
.routeMapOutEvpn("string")
.routeMapOutPreferable("string")
.routeMapOutVpnv4("string")
.routeMapOutVpnv4Preferable("string")
.routeMapOutVpnv6("string")
.routeMapOutVpnv6Preferable("string")
.routeReflectorClient("string")
.routeReflectorClient6("string")
.routeReflectorClientEvpn("string")
.routeReflectorClientVpnv4("string")
.routeReflectorClientVpnv6("string")
.routeServerClient("string")
.routeServerClient6("string")
.routeServerClientEvpn("string")
.routeServerClientVpnv4("string")
.routeServerClientVpnv6("string")
.sendCommunity("string")
.sendCommunity6("string")
.sendCommunityEvpn("string")
.sendCommunityVpnv4("string")
.sendCommunityVpnv6("string")
.shutdown("string")
.softReconfiguration("string")
.softReconfiguration6("string")
.softReconfigurationEvpn("string")
.softReconfigurationVpnv4("string")
.softReconfigurationVpnv6("string")
.staleRoute("string")
.strictCapabilityMatch("string")
.unsuppressMap("string")
.unsuppressMap6("string")
.updateSource("string")
.weight(0)
.build())
.network6s(BgpNetwork6Args.builder()
.backdoor("string")
.id(0)
.networkImportCheck("string")
.prefix6("string")
.routeMap("string")
.build())
.networkImportCheck("string")
.networks(BgpNetworkArgs.builder()
.backdoor("string")
.id(0)
.networkImportCheck("string")
.prefix("string")
.routeMap("string")
.build())
.recursiveInheritPriority("string")
.recursiveNextHop("string")
.redistribute6s(BgpRedistribute6Args.builder()
.name("string")
.routeMap("string")
.status("string")
.build())
.redistributes(BgpRedistributeArgs.builder()
.name("string")
.routeMap("string")
.status("string")
.build())
.routerId("string")
.scanTime(0)
.synchronization("string")
.tagResolveMode("string")
.vdomparam("string")
.vrf6s(BgpVrf6Args.builder()
.exportRts(BgpVrf6ExportRtArgs.builder()
.routeTarget("string")
.build())
.importRouteMap("string")
.importRts(BgpVrf6ImportRtArgs.builder()
.routeTarget("string")
.build())
.leakTargets(BgpVrf6LeakTargetArgs.builder()
.interface_("string")
.routeMap("string")
.vrf("string")
.build())
.rd("string")
.role("string")
.vrf("string")
.build())
.vrfLeak6s(BgpVrfLeak6Args.builder()
.targets(BgpVrfLeak6TargetArgs.builder()
.interface_("string")
.routeMap("string")
.vrf("string")
.build())
.vrf("string")
.build())
.vrfLeaks(BgpVrfLeakArgs.builder()
.targets(BgpVrfLeakTargetArgs.builder()
.interface_("string")
.routeMap("string")
.vrf("string")
.build())
.vrf("string")
.build())
.vrves(BgpVrfArgs.builder()
.exportRts(BgpVrfExportRtArgs.builder()
.routeTarget("string")
.build())
.importRouteMap("string")
.importRts(BgpVrfImportRtArgs.builder()
.routeTarget("string")
.build())
.leakTargets(BgpVrfLeakTargetArgs.builder()
.interface_("string")
.routeMap("string")
.vrf("string")
.build())
.rd("string")
.role("string")
.vrf("string")
.build())
.build());
bgp_resource = fortios.router.Bgp("bgpResource",
additional_path="string",
additional_path6="string",
additional_path_select=0,
additional_path_select6=0,
additional_path_select_vpnv4=0,
additional_path_select_vpnv6=0,
additional_path_vpnv4="string",
additional_path_vpnv6="string",
admin_distances=[fortios.router.BgpAdminDistanceArgs(
distance=0,
id=0,
neighbour_prefix="string",
route_list="string",
)],
aggregate_address6s=[fortios.router.BgpAggregateAddress6Args(
as_set="string",
id=0,
prefix6="string",
summary_only="string",
)],
aggregate_addresses=[fortios.router.BgpAggregateAddressArgs(
as_set="string",
id=0,
prefix="string",
summary_only="string",
)],
always_compare_med="string",
as_=0,
as_string="string",
bestpath_as_path_ignore="string",
bestpath_cmp_confed_aspath="string",
bestpath_cmp_routerid="string",
bestpath_med_confed="string",
bestpath_med_missing_as_worst="string",
client_to_client_reflection="string",
cluster_id="string",
confederation_identifier=0,
confederation_peers=[fortios.router.BgpConfederationPeerArgs(
peer="string",
)],
cross_family_conditional_adv="string",
dampening="string",
dampening_max_suppress_time=0,
dampening_reachability_half_life=0,
dampening_reuse=0,
dampening_route_map="string",
dampening_suppress=0,
dampening_unreachability_half_life=0,
default_local_preference=0,
deterministic_med="string",
distance_external=0,
distance_internal=0,
distance_local=0,
dynamic_sort_subtable="string",
ebgp_multipath="string",
enforce_first_as="string",
fast_external_failover="string",
get_all_tables="string",
graceful_end_on_timer="string",
graceful_restart="string",
graceful_restart_time=0,
graceful_stalepath_time=0,
graceful_update_delay=0,
holdtime_timer=0,
ibgp_multipath="string",
ignore_optional_capability="string",
keepalive_timer=0,
log_neighbour_changes="string",
multipath_recursive_distance="string",
neighbor_groups=[fortios.router.BgpNeighborGroupArgs(
activate="string",
activate6="string",
activate_evpn="string",
activate_vpnv4="string",
activate_vpnv6="string",
additional_path="string",
additional_path6="string",
additional_path_vpnv4="string",
additional_path_vpnv6="string",
adv_additional_path=0,
adv_additional_path6=0,
adv_additional_path_vpnv4=0,
adv_additional_path_vpnv6=0,
advertisement_interval=0,
allowas_in=0,
allowas_in6=0,
allowas_in_enable="string",
allowas_in_enable6="string",
allowas_in_enable_evpn="string",
allowas_in_enable_vpnv4="string",
allowas_in_enable_vpnv6="string",
allowas_in_evpn=0,
allowas_in_vpnv4=0,
allowas_in_vpnv6=0,
as_override="string",
as_override6="string",
attribute_unchanged="string",
attribute_unchanged6="string",
attribute_unchanged_vpnv4="string",
attribute_unchanged_vpnv6="string",
auth_options="string",
bfd="string",
capability_default_originate="string",
capability_default_originate6="string",
capability_dynamic="string",
capability_graceful_restart="string",
capability_graceful_restart6="string",
capability_graceful_restart_evpn="string",
capability_graceful_restart_vpnv4="string",
capability_graceful_restart_vpnv6="string",
capability_orf="string",
capability_orf6="string",
capability_route_refresh="string",
connect_timer=0,
default_originate_routemap="string",
default_originate_routemap6="string",
description="string",
distribute_list_in="string",
distribute_list_in6="string",
distribute_list_in_vpnv4="string",
distribute_list_in_vpnv6="string",
distribute_list_out="string",
distribute_list_out6="string",
distribute_list_out_vpnv4="string",
distribute_list_out_vpnv6="string",
dont_capability_negotiate="string",
ebgp_enforce_multihop="string",
ebgp_multihop_ttl=0,
filter_list_in="string",
filter_list_in6="string",
filter_list_in_vpnv4="string",
filter_list_in_vpnv6="string",
filter_list_out="string",
filter_list_out6="string",
filter_list_out_vpnv4="string",
filter_list_out_vpnv6="string",
holdtime_timer=0,
interface="string",
keep_alive_timer=0,
link_down_failover="string",
local_as=0,
local_as_no_prepend="string",
local_as_replace_as="string",
maximum_prefix=0,
maximum_prefix6=0,
maximum_prefix_evpn=0,
maximum_prefix_threshold=0,
maximum_prefix_threshold6=0,
maximum_prefix_threshold_evpn=0,
maximum_prefix_threshold_vpnv4=0,
maximum_prefix_threshold_vpnv6=0,
maximum_prefix_vpnv4=0,
maximum_prefix_vpnv6=0,
maximum_prefix_warning_only="string",
maximum_prefix_warning_only6="string",
maximum_prefix_warning_only_evpn="string",
maximum_prefix_warning_only_vpnv4="string",
maximum_prefix_warning_only_vpnv6="string",
name="string",
next_hop_self="string",
next_hop_self6="string",
next_hop_self_rr="string",
next_hop_self_rr6="string",
next_hop_self_vpnv4="string",
next_hop_self_vpnv6="string",
override_capability="string",
passive="string",
password="string",
prefix_list_in="string",
prefix_list_in6="string",
prefix_list_in_vpnv4="string",
prefix_list_in_vpnv6="string",
prefix_list_out="string",
prefix_list_out6="string",
prefix_list_out_vpnv4="string",
prefix_list_out_vpnv6="string",
remote_as=0,
remote_as_filter="string",
remove_private_as="string",
remove_private_as6="string",
remove_private_as_evpn="string",
remove_private_as_vpnv4="string",
remove_private_as_vpnv6="string",
restart_time=0,
retain_stale_time=0,
route_map_in="string",
route_map_in6="string",
route_map_in_evpn="string",
route_map_in_vpnv4="string",
route_map_in_vpnv6="string",
route_map_out="string",
route_map_out6="string",
route_map_out6_preferable="string",
route_map_out_evpn="string",
route_map_out_preferable="string",
route_map_out_vpnv4="string",
route_map_out_vpnv4_preferable="string",
route_map_out_vpnv6="string",
route_map_out_vpnv6_preferable="string",
route_reflector_client="string",
route_reflector_client6="string",
route_reflector_client_evpn="string",
route_reflector_client_vpnv4="string",
route_reflector_client_vpnv6="string",
route_server_client="string",
route_server_client6="string",
route_server_client_evpn="string",
route_server_client_vpnv4="string",
route_server_client_vpnv6="string",
send_community="string",
send_community6="string",
send_community_evpn="string",
send_community_vpnv4="string",
send_community_vpnv6="string",
shutdown="string",
soft_reconfiguration="string",
soft_reconfiguration6="string",
soft_reconfiguration_evpn="string",
soft_reconfiguration_vpnv4="string",
soft_reconfiguration_vpnv6="string",
stale_route="string",
strict_capability_match="string",
unsuppress_map="string",
unsuppress_map6="string",
update_source="string",
weight=0,
)],
neighbor_range6s=[fortios.router.BgpNeighborRange6Args(
id=0,
max_neighbor_num=0,
neighbor_group="string",
prefix6="string",
)],
neighbor_ranges=[fortios.router.BgpNeighborRangeArgs(
id=0,
max_neighbor_num=0,
neighbor_group="string",
prefix="string",
)],
neighbors=[fortios.router.BgpNeighborArgs(
activate="string",
activate6="string",
activate_evpn="string",
activate_vpnv4="string",
activate_vpnv6="string",
additional_path="string",
additional_path6="string",
additional_path_vpnv4="string",
additional_path_vpnv6="string",
adv_additional_path=0,
adv_additional_path6=0,
adv_additional_path_vpnv4=0,
adv_additional_path_vpnv6=0,
advertisement_interval=0,
allowas_in=0,
allowas_in6=0,
allowas_in_enable="string",
allowas_in_enable6="string",
allowas_in_enable_evpn="string",
allowas_in_enable_vpnv4="string",
allowas_in_enable_vpnv6="string",
allowas_in_evpn=0,
allowas_in_vpnv4=0,
allowas_in_vpnv6=0,
as_override="string",
as_override6="string",
attribute_unchanged="string",
attribute_unchanged6="string",
attribute_unchanged_vpnv4="string",
attribute_unchanged_vpnv6="string",
auth_options="string",
bfd="string",
capability_default_originate="string",
capability_default_originate6="string",
capability_dynamic="string",
capability_graceful_restart="string",
capability_graceful_restart6="string",
capability_graceful_restart_evpn="string",
capability_graceful_restart_vpnv4="string",
capability_graceful_restart_vpnv6="string",
capability_orf="string",
capability_orf6="string",
capability_route_refresh="string",
conditional_advertise6s=[fortios.router.BgpNeighborConditionalAdvertise6Args(
advertise_routemap="string",
condition_routemap="string",
condition_type="string",
)],
conditional_advertises=[fortios.router.BgpNeighborConditionalAdvertiseArgs(
advertise_routemap="string",
condition_routemap="string",
condition_type="string",
)],
connect_timer=0,
default_originate_routemap="string",
default_originate_routemap6="string",
description="string",
distribute_list_in="string",
distribute_list_in6="string",
distribute_list_in_vpnv4="string",
distribute_list_in_vpnv6="string",
distribute_list_out="string",
distribute_list_out6="string",
distribute_list_out_vpnv4="string",
distribute_list_out_vpnv6="string",
dont_capability_negotiate="string",
ebgp_enforce_multihop="string",
ebgp_multihop_ttl=0,
filter_list_in="string",
filter_list_in6="string",
filter_list_in_vpnv4="string",
filter_list_in_vpnv6="string",
filter_list_out="string",
filter_list_out6="string",
filter_list_out_vpnv4="string",
filter_list_out_vpnv6="string",
holdtime_timer=0,
interface="string",
ip="string",
keep_alive_timer=0,
link_down_failover="string",
local_as=0,
local_as_no_prepend="string",
local_as_replace_as="string",
maximum_prefix=0,
maximum_prefix6=0,
maximum_prefix_evpn=0,
maximum_prefix_threshold=0,
maximum_prefix_threshold6=0,
maximum_prefix_threshold_evpn=0,
maximum_prefix_threshold_vpnv4=0,
maximum_prefix_threshold_vpnv6=0,
maximum_prefix_vpnv4=0,
maximum_prefix_vpnv6=0,
maximum_prefix_warning_only="string",
maximum_prefix_warning_only6="string",
maximum_prefix_warning_only_evpn="string",
maximum_prefix_warning_only_vpnv4="string",
maximum_prefix_warning_only_vpnv6="string",
next_hop_self="string",
next_hop_self6="string",
next_hop_self_rr="string",
next_hop_self_rr6="string",
next_hop_self_vpnv4="string",
next_hop_self_vpnv6="string",
override_capability="string",
passive="string",
password="string",
prefix_list_in="string",
prefix_list_in6="string",
prefix_list_in_vpnv4="string",
prefix_list_in_vpnv6="string",
prefix_list_out="string",
prefix_list_out6="string",
prefix_list_out_vpnv4="string",
prefix_list_out_vpnv6="string",
remote_as=0,
remove_private_as="string",
remove_private_as6="string",
remove_private_as_evpn="string",
remove_private_as_vpnv4="string",
remove_private_as_vpnv6="string",
restart_time=0,
retain_stale_time=0,
route_map_in="string",
route_map_in6="string",
route_map_in_evpn="string",
route_map_in_vpnv4="string",
route_map_in_vpnv6="string",
route_map_out="string",
route_map_out6="string",
route_map_out6_preferable="string",
route_map_out_evpn="string",
route_map_out_preferable="string",
route_map_out_vpnv4="string",
route_map_out_vpnv4_preferable="string",
route_map_out_vpnv6="string",
route_map_out_vpnv6_preferable="string",
route_reflector_client="string",
route_reflector_client6="string",
route_reflector_client_evpn="string",
route_reflector_client_vpnv4="string",
route_reflector_client_vpnv6="string",
route_server_client="string",
route_server_client6="string",
route_server_client_evpn="string",
route_server_client_vpnv4="string",
route_server_client_vpnv6="string",
send_community="string",
send_community6="string",
send_community_evpn="string",
send_community_vpnv4="string",
send_community_vpnv6="string",
shutdown="string",
soft_reconfiguration="string",
soft_reconfiguration6="string",
soft_reconfiguration_evpn="string",
soft_reconfiguration_vpnv4="string",
soft_reconfiguration_vpnv6="string",
stale_route="string",
strict_capability_match="string",
unsuppress_map="string",
unsuppress_map6="string",
update_source="string",
weight=0,
)],
network6s=[fortios.router.BgpNetwork6Args(
backdoor="string",
id=0,
network_import_check="string",
prefix6="string",
route_map="string",
)],
network_import_check="string",
networks=[fortios.router.BgpNetworkArgs(
backdoor="string",
id=0,
network_import_check="string",
prefix="string",
route_map="string",
)],
recursive_inherit_priority="string",
recursive_next_hop="string",
redistribute6s=[fortios.router.BgpRedistribute6Args(
name="string",
route_map="string",
status="string",
)],
redistributes=[fortios.router.BgpRedistributeArgs(
name="string",
route_map="string",
status="string",
)],
router_id="string",
scan_time=0,
synchronization="string",
tag_resolve_mode="string",
vdomparam="string",
vrf6s=[fortios.router.BgpVrf6Args(
export_rts=[fortios.router.BgpVrf6ExportRtArgs(
route_target="string",
)],
import_route_map="string",
import_rts=[fortios.router.BgpVrf6ImportRtArgs(
route_target="string",
)],
leak_targets=[fortios.router.BgpVrf6LeakTargetArgs(
interface="string",
route_map="string",
vrf="string",
)],
rd="string",
role="string",
vrf="string",
)],
vrf_leak6s=[fortios.router.BgpVrfLeak6Args(
targets=[fortios.router.BgpVrfLeak6TargetArgs(
interface="string",
route_map="string",
vrf="string",
)],
vrf="string",
)],
vrf_leaks=[fortios.router.BgpVrfLeakArgs(
targets=[fortios.router.BgpVrfLeakTargetArgs(
interface="string",
route_map="string",
vrf="string",
)],
vrf="string",
)],
vrves=[fortios.router.BgpVrfArgs(
export_rts=[fortios.router.BgpVrfExportRtArgs(
route_target="string",
)],
import_route_map="string",
import_rts=[fortios.router.BgpVrfImportRtArgs(
route_target="string",
)],
leak_targets=[fortios.router.BgpVrfLeakTargetArgs(
interface="string",
route_map="string",
vrf="string",
)],
rd="string",
role="string",
vrf="string",
)])
const bgpResource = new fortios.router.Bgp("bgpResource", {
additionalPath: "string",
additionalPath6: "string",
additionalPathSelect: 0,
additionalPathSelect6: 0,
additionalPathSelectVpnv4: 0,
additionalPathSelectVpnv6: 0,
additionalPathVpnv4: "string",
additionalPathVpnv6: "string",
adminDistances: [{
distance: 0,
id: 0,
neighbourPrefix: "string",
routeList: "string",
}],
aggregateAddress6s: [{
asSet: "string",
id: 0,
prefix6: "string",
summaryOnly: "string",
}],
aggregateAddresses: [{
asSet: "string",
id: 0,
prefix: "string",
summaryOnly: "string",
}],
alwaysCompareMed: "string",
as: 0,
asString: "string",
bestpathAsPathIgnore: "string",
bestpathCmpConfedAspath: "string",
bestpathCmpRouterid: "string",
bestpathMedConfed: "string",
bestpathMedMissingAsWorst: "string",
clientToClientReflection: "string",
clusterId: "string",
confederationIdentifier: 0,
confederationPeers: [{
peer: "string",
}],
crossFamilyConditionalAdv: "string",
dampening: "string",
dampeningMaxSuppressTime: 0,
dampeningReachabilityHalfLife: 0,
dampeningReuse: 0,
dampeningRouteMap: "string",
dampeningSuppress: 0,
dampeningUnreachabilityHalfLife: 0,
defaultLocalPreference: 0,
deterministicMed: "string",
distanceExternal: 0,
distanceInternal: 0,
distanceLocal: 0,
dynamicSortSubtable: "string",
ebgpMultipath: "string",
enforceFirstAs: "string",
fastExternalFailover: "string",
getAllTables: "string",
gracefulEndOnTimer: "string",
gracefulRestart: "string",
gracefulRestartTime: 0,
gracefulStalepathTime: 0,
gracefulUpdateDelay: 0,
holdtimeTimer: 0,
ibgpMultipath: "string",
ignoreOptionalCapability: "string",
keepaliveTimer: 0,
logNeighbourChanges: "string",
multipathRecursiveDistance: "string",
neighborGroups: [{
activate: "string",
activate6: "string",
activateEvpn: "string",
activateVpnv4: "string",
activateVpnv6: "string",
additionalPath: "string",
additionalPath6: "string",
additionalPathVpnv4: "string",
additionalPathVpnv6: "string",
advAdditionalPath: 0,
advAdditionalPath6: 0,
advAdditionalPathVpnv4: 0,
advAdditionalPathVpnv6: 0,
advertisementInterval: 0,
allowasIn: 0,
allowasIn6: 0,
allowasInEnable: "string",
allowasInEnable6: "string",
allowasInEnableEvpn: "string",
allowasInEnableVpnv4: "string",
allowasInEnableVpnv6: "string",
allowasInEvpn: 0,
allowasInVpnv4: 0,
allowasInVpnv6: 0,
asOverride: "string",
asOverride6: "string",
attributeUnchanged: "string",
attributeUnchanged6: "string",
attributeUnchangedVpnv4: "string",
attributeUnchangedVpnv6: "string",
authOptions: "string",
bfd: "string",
capabilityDefaultOriginate: "string",
capabilityDefaultOriginate6: "string",
capabilityDynamic: "string",
capabilityGracefulRestart: "string",
capabilityGracefulRestart6: "string",
capabilityGracefulRestartEvpn: "string",
capabilityGracefulRestartVpnv4: "string",
capabilityGracefulRestartVpnv6: "string",
capabilityOrf: "string",
capabilityOrf6: "string",
capabilityRouteRefresh: "string",
connectTimer: 0,
defaultOriginateRoutemap: "string",
defaultOriginateRoutemap6: "string",
description: "string",
distributeListIn: "string",
distributeListIn6: "string",
distributeListInVpnv4: "string",
distributeListInVpnv6: "string",
distributeListOut: "string",
distributeListOut6: "string",
distributeListOutVpnv4: "string",
distributeListOutVpnv6: "string",
dontCapabilityNegotiate: "string",
ebgpEnforceMultihop: "string",
ebgpMultihopTtl: 0,
filterListIn: "string",
filterListIn6: "string",
filterListInVpnv4: "string",
filterListInVpnv6: "string",
filterListOut: "string",
filterListOut6: "string",
filterListOutVpnv4: "string",
filterListOutVpnv6: "string",
holdtimeTimer: 0,
"interface": "string",
keepAliveTimer: 0,
linkDownFailover: "string",
localAs: 0,
localAsNoPrepend: "string",
localAsReplaceAs: "string",
maximumPrefix: 0,
maximumPrefix6: 0,
maximumPrefixEvpn: 0,
maximumPrefixThreshold: 0,
maximumPrefixThreshold6: 0,
maximumPrefixThresholdEvpn: 0,
maximumPrefixThresholdVpnv4: 0,
maximumPrefixThresholdVpnv6: 0,
maximumPrefixVpnv4: 0,
maximumPrefixVpnv6: 0,
maximumPrefixWarningOnly: "string",
maximumPrefixWarningOnly6: "string",
maximumPrefixWarningOnlyEvpn: "string",
maximumPrefixWarningOnlyVpnv4: "string",
maximumPrefixWarningOnlyVpnv6: "string",
name: "string",
nextHopSelf: "string",
nextHopSelf6: "string",
nextHopSelfRr: "string",
nextHopSelfRr6: "string",
nextHopSelfVpnv4: "string",
nextHopSelfVpnv6: "string",
overrideCapability: "string",
passive: "string",
password: "string",
prefixListIn: "string",
prefixListIn6: "string",
prefixListInVpnv4: "string",
prefixListInVpnv6: "string",
prefixListOut: "string",
prefixListOut6: "string",
prefixListOutVpnv4: "string",
prefixListOutVpnv6: "string",
remoteAs: 0,
remoteAsFilter: "string",
removePrivateAs: "string",
removePrivateAs6: "string",
removePrivateAsEvpn: "string",
removePrivateAsVpnv4: "string",
removePrivateAsVpnv6: "string",
restartTime: 0,
retainStaleTime: 0,
routeMapIn: "string",
routeMapIn6: "string",
routeMapInEvpn: "string",
routeMapInVpnv4: "string",
routeMapInVpnv6: "string",
routeMapOut: "string",
routeMapOut6: "string",
routeMapOut6Preferable: "string",
routeMapOutEvpn: "string",
routeMapOutPreferable: "string",
routeMapOutVpnv4: "string",
routeMapOutVpnv4Preferable: "string",
routeMapOutVpnv6: "string",
routeMapOutVpnv6Preferable: "string",
routeReflectorClient: "string",
routeReflectorClient6: "string",
routeReflectorClientEvpn: "string",
routeReflectorClientVpnv4: "string",
routeReflectorClientVpnv6: "string",
routeServerClient: "string",
routeServerClient6: "string",
routeServerClientEvpn: "string",
routeServerClientVpnv4: "string",
routeServerClientVpnv6: "string",
sendCommunity: "string",
sendCommunity6: "string",
sendCommunityEvpn: "string",
sendCommunityVpnv4: "string",
sendCommunityVpnv6: "string",
shutdown: "string",
softReconfiguration: "string",
softReconfiguration6: "string",
softReconfigurationEvpn: "string",
softReconfigurationVpnv4: "string",
softReconfigurationVpnv6: "string",
staleRoute: "string",
strictCapabilityMatch: "string",
unsuppressMap: "string",
unsuppressMap6: "string",
updateSource: "string",
weight: 0,
}],
neighborRange6s: [{
id: 0,
maxNeighborNum: 0,
neighborGroup: "string",
prefix6: "string",
}],
neighborRanges: [{
id: 0,
maxNeighborNum: 0,
neighborGroup: "string",
prefix: "string",
}],
neighbors: [{
activate: "string",
activate6: "string",
activateEvpn: "string",
activateVpnv4: "string",
activateVpnv6: "string",
additionalPath: "string",
additionalPath6: "string",
additionalPathVpnv4: "string",
additionalPathVpnv6: "string",
advAdditionalPath: 0,
advAdditionalPath6: 0,
advAdditionalPathVpnv4: 0,
advAdditionalPathVpnv6: 0,
advertisementInterval: 0,
allowasIn: 0,
allowasIn6: 0,
allowasInEnable: "string",
allowasInEnable6: "string",
allowasInEnableEvpn: "string",
allowasInEnableVpnv4: "string",
allowasInEnableVpnv6: "string",
allowasInEvpn: 0,
allowasInVpnv4: 0,
allowasInVpnv6: 0,
asOverride: "string",
asOverride6: "string",
attributeUnchanged: "string",
attributeUnchanged6: "string",
attributeUnchangedVpnv4: "string",
attributeUnchangedVpnv6: "string",
authOptions: "string",
bfd: "string",
capabilityDefaultOriginate: "string",
capabilityDefaultOriginate6: "string",
capabilityDynamic: "string",
capabilityGracefulRestart: "string",
capabilityGracefulRestart6: "string",
capabilityGracefulRestartEvpn: "string",
capabilityGracefulRestartVpnv4: "string",
capabilityGracefulRestartVpnv6: "string",
capabilityOrf: "string",
capabilityOrf6: "string",
capabilityRouteRefresh: "string",
conditionalAdvertise6s: [{
advertiseRoutemap: "string",
conditionRoutemap: "string",
conditionType: "string",
}],
conditionalAdvertises: [{
advertiseRoutemap: "string",
conditionRoutemap: "string",
conditionType: "string",
}],
connectTimer: 0,
defaultOriginateRoutemap: "string",
defaultOriginateRoutemap6: "string",
description: "string",
distributeListIn: "string",
distributeListIn6: "string",
distributeListInVpnv4: "string",
distributeListInVpnv6: "string",
distributeListOut: "string",
distributeListOut6: "string",
distributeListOutVpnv4: "string",
distributeListOutVpnv6: "string",
dontCapabilityNegotiate: "string",
ebgpEnforceMultihop: "string",
ebgpMultihopTtl: 0,
filterListIn: "string",
filterListIn6: "string",
filterListInVpnv4: "string",
filterListInVpnv6: "string",
filterListOut: "string",
filterListOut6: "string",
filterListOutVpnv4: "string",
filterListOutVpnv6: "string",
holdtimeTimer: 0,
"interface": "string",
ip: "string",
keepAliveTimer: 0,
linkDownFailover: "string",
localAs: 0,
localAsNoPrepend: "string",
localAsReplaceAs: "string",
maximumPrefix: 0,
maximumPrefix6: 0,
maximumPrefixEvpn: 0,
maximumPrefixThreshold: 0,
maximumPrefixThreshold6: 0,
maximumPrefixThresholdEvpn: 0,
maximumPrefixThresholdVpnv4: 0,
maximumPrefixThresholdVpnv6: 0,
maximumPrefixVpnv4: 0,
maximumPrefixVpnv6: 0,
maximumPrefixWarningOnly: "string",
maximumPrefixWarningOnly6: "string",
maximumPrefixWarningOnlyEvpn: "string",
maximumPrefixWarningOnlyVpnv4: "string",
maximumPrefixWarningOnlyVpnv6: "string",
nextHopSelf: "string",
nextHopSelf6: "string",
nextHopSelfRr: "string",
nextHopSelfRr6: "string",
nextHopSelfVpnv4: "string",
nextHopSelfVpnv6: "string",
overrideCapability: "string",
passive: "string",
password: "string",
prefixListIn: "string",
prefixListIn6: "string",
prefixListInVpnv4: "string",
prefixListInVpnv6: "string",
prefixListOut: "string",
prefixListOut6: "string",
prefixListOutVpnv4: "string",
prefixListOutVpnv6: "string",
remoteAs: 0,
removePrivateAs: "string",
removePrivateAs6: "string",
removePrivateAsEvpn: "string",
removePrivateAsVpnv4: "string",
removePrivateAsVpnv6: "string",
restartTime: 0,
retainStaleTime: 0,
routeMapIn: "string",
routeMapIn6: "string",
routeMapInEvpn: "string",
routeMapInVpnv4: "string",
routeMapInVpnv6: "string",
routeMapOut: "string",
routeMapOut6: "string",
routeMapOut6Preferable: "string",
routeMapOutEvpn: "string",
routeMapOutPreferable: "string",
routeMapOutVpnv4: "string",
routeMapOutVpnv4Preferable: "string",
routeMapOutVpnv6: "string",
routeMapOutVpnv6Preferable: "string",
routeReflectorClient: "string",
routeReflectorClient6: "string",
routeReflectorClientEvpn: "string",
routeReflectorClientVpnv4: "string",
routeReflectorClientVpnv6: "string",
routeServerClient: "string",
routeServerClient6: "string",
routeServerClientEvpn: "string",
routeServerClientVpnv4: "string",
routeServerClientVpnv6: "string",
sendCommunity: "string",
sendCommunity6: "string",
sendCommunityEvpn: "string",
sendCommunityVpnv4: "string",
sendCommunityVpnv6: "string",
shutdown: "string",
softReconfiguration: "string",
softReconfiguration6: "string",
softReconfigurationEvpn: "string",
softReconfigurationVpnv4: "string",
softReconfigurationVpnv6: "string",
staleRoute: "string",
strictCapabilityMatch: "string",
unsuppressMap: "string",
unsuppressMap6: "string",
updateSource: "string",
weight: 0,
}],
network6s: [{
backdoor: "string",
id: 0,
networkImportCheck: "string",
prefix6: "string",
routeMap: "string",
}],
networkImportCheck: "string",
networks: [{
backdoor: "string",
id: 0,
networkImportCheck: "string",
prefix: "string",
routeMap: "string",
}],
recursiveInheritPriority: "string",
recursiveNextHop: "string",
redistribute6s: [{
name: "string",
routeMap: "string",
status: "string",
}],
redistributes: [{
name: "string",
routeMap: "string",
status: "string",
}],
routerId: "string",
scanTime: 0,
synchronization: "string",
tagResolveMode: "string",
vdomparam: "string",
vrf6s: [{
exportRts: [{
routeTarget: "string",
}],
importRouteMap: "string",
importRts: [{
routeTarget: "string",
}],
leakTargets: [{
"interface": "string",
routeMap: "string",
vrf: "string",
}],
rd: "string",
role: "string",
vrf: "string",
}],
vrfLeak6s: [{
targets: [{
"interface": "string",
routeMap: "string",
vrf: "string",
}],
vrf: "string",
}],
vrfLeaks: [{
targets: [{
"interface": "string",
routeMap: "string",
vrf: "string",
}],
vrf: "string",
}],
vrves: [{
exportRts: [{
routeTarget: "string",
}],
importRouteMap: "string",
importRts: [{
routeTarget: "string",
}],
leakTargets: [{
"interface": "string",
routeMap: "string",
vrf: "string",
}],
rd: "string",
role: "string",
vrf: "string",
}],
});
type: fortios:router:Bgp
properties:
additionalPath: string
additionalPath6: string
additionalPathSelect: 0
additionalPathSelect6: 0
additionalPathSelectVpnv4: 0
additionalPathSelectVpnv6: 0
additionalPathVpnv4: string
additionalPathVpnv6: string
adminDistances:
- distance: 0
id: 0
neighbourPrefix: string
routeList: string
aggregateAddress6s:
- asSet: string
id: 0
prefix6: string
summaryOnly: string
aggregateAddresses:
- asSet: string
id: 0
prefix: string
summaryOnly: string
alwaysCompareMed: string
as: 0
asString: string
bestpathAsPathIgnore: string
bestpathCmpConfedAspath: string
bestpathCmpRouterid: string
bestpathMedConfed: string
bestpathMedMissingAsWorst: string
clientToClientReflection: string
clusterId: string
confederationIdentifier: 0
confederationPeers:
- peer: string
crossFamilyConditionalAdv: string
dampening: string
dampeningMaxSuppressTime: 0
dampeningReachabilityHalfLife: 0
dampeningReuse: 0
dampeningRouteMap: string
dampeningSuppress: 0
dampeningUnreachabilityHalfLife: 0
defaultLocalPreference: 0
deterministicMed: string
distanceExternal: 0
distanceInternal: 0
distanceLocal: 0
dynamicSortSubtable: string
ebgpMultipath: string
enforceFirstAs: string
fastExternalFailover: string
getAllTables: string
gracefulEndOnTimer: string
gracefulRestart: string
gracefulRestartTime: 0
gracefulStalepathTime: 0
gracefulUpdateDelay: 0
holdtimeTimer: 0
ibgpMultipath: string
ignoreOptionalCapability: string
keepaliveTimer: 0
logNeighbourChanges: string
multipathRecursiveDistance: string
neighborGroups:
- activate: string
activate6: string
activateEvpn: string
activateVpnv4: string
activateVpnv6: string
additionalPath: string
additionalPath6: string
additionalPathVpnv4: string
additionalPathVpnv6: string
advAdditionalPath: 0
advAdditionalPath6: 0
advAdditionalPathVpnv4: 0
advAdditionalPathVpnv6: 0
advertisementInterval: 0
allowasIn: 0
allowasIn6: 0
allowasInEnable: string
allowasInEnable6: string
allowasInEnableEvpn: string
allowasInEnableVpnv4: string
allowasInEnableVpnv6: string
allowasInEvpn: 0
allowasInVpnv4: 0
allowasInVpnv6: 0
asOverride: string
asOverride6: string
attributeUnchanged: string
attributeUnchanged6: string
attributeUnchangedVpnv4: string
attributeUnchangedVpnv6: string
authOptions: string
bfd: string
capabilityDefaultOriginate: string
capabilityDefaultOriginate6: string
capabilityDynamic: string
capabilityGracefulRestart: string
capabilityGracefulRestart6: string
capabilityGracefulRestartEvpn: string
capabilityGracefulRestartVpnv4: string
capabilityGracefulRestartVpnv6: string
capabilityOrf: string
capabilityOrf6: string
capabilityRouteRefresh: string
connectTimer: 0
defaultOriginateRoutemap: string
defaultOriginateRoutemap6: string
description: string
distributeListIn: string
distributeListIn6: string
distributeListInVpnv4: string
distributeListInVpnv6: string
distributeListOut: string
distributeListOut6: string
distributeListOutVpnv4: string
distributeListOutVpnv6: string
dontCapabilityNegotiate: string
ebgpEnforceMultihop: string
ebgpMultihopTtl: 0
filterListIn: string
filterListIn6: string
filterListInVpnv4: string
filterListInVpnv6: string
filterListOut: string
filterListOut6: string
filterListOutVpnv4: string
filterListOutVpnv6: string
holdtimeTimer: 0
interface: string
keepAliveTimer: 0
linkDownFailover: string
localAs: 0
localAsNoPrepend: string
localAsReplaceAs: string
maximumPrefix: 0
maximumPrefix6: 0
maximumPrefixEvpn: 0
maximumPrefixThreshold: 0
maximumPrefixThreshold6: 0
maximumPrefixThresholdEvpn: 0
maximumPrefixThresholdVpnv4: 0
maximumPrefixThresholdVpnv6: 0
maximumPrefixVpnv4: 0
maximumPrefixVpnv6: 0
maximumPrefixWarningOnly: string
maximumPrefixWarningOnly6: string
maximumPrefixWarningOnlyEvpn: string
maximumPrefixWarningOnlyVpnv4: string
maximumPrefixWarningOnlyVpnv6: string
name: string
nextHopSelf: string
nextHopSelf6: string
nextHopSelfRr: string
nextHopSelfRr6: string
nextHopSelfVpnv4: string
nextHopSelfVpnv6: string
overrideCapability: string
passive: string
password: string
prefixListIn: string
prefixListIn6: string
prefixListInVpnv4: string
prefixListInVpnv6: string
prefixListOut: string
prefixListOut6: string
prefixListOutVpnv4: string
prefixListOutVpnv6: string
remoteAs: 0
remoteAsFilter: string
removePrivateAs: string
removePrivateAs6: string
removePrivateAsEvpn: string
removePrivateAsVpnv4: string
removePrivateAsVpnv6: string
restartTime: 0
retainStaleTime: 0
routeMapIn: string
routeMapIn6: string
routeMapInEvpn: string
routeMapInVpnv4: string
routeMapInVpnv6: string
routeMapOut: string
routeMapOut6: string
routeMapOut6Preferable: string
routeMapOutEvpn: string
routeMapOutPreferable: string
routeMapOutVpnv4: string
routeMapOutVpnv4Preferable: string
routeMapOutVpnv6: string
routeMapOutVpnv6Preferable: string
routeReflectorClient: string
routeReflectorClient6: string
routeReflectorClientEvpn: string
routeReflectorClientVpnv4: string
routeReflectorClientVpnv6: string
routeServerClient: string
routeServerClient6: string
routeServerClientEvpn: string
routeServerClientVpnv4: string
routeServerClientVpnv6: string
sendCommunity: string
sendCommunity6: string
sendCommunityEvpn: string
sendCommunityVpnv4: string
sendCommunityVpnv6: string
shutdown: string
softReconfiguration: string
softReconfiguration6: string
softReconfigurationEvpn: string
softReconfigurationVpnv4: string
softReconfigurationVpnv6: string
staleRoute: string
strictCapabilityMatch: string
unsuppressMap: string
unsuppressMap6: string
updateSource: string
weight: 0
neighborRange6s:
- id: 0
maxNeighborNum: 0
neighborGroup: string
prefix6: string
neighborRanges:
- id: 0
maxNeighborNum: 0
neighborGroup: string
prefix: string
neighbors:
- activate: string
activate6: string
activateEvpn: string
activateVpnv4: string
activateVpnv6: string
additionalPath: string
additionalPath6: string
additionalPathVpnv4: string
additionalPathVpnv6: string
advAdditionalPath: 0
advAdditionalPath6: 0
advAdditionalPathVpnv4: 0
advAdditionalPathVpnv6: 0
advertisementInterval: 0
allowasIn: 0
allowasIn6: 0
allowasInEnable: string
allowasInEnable6: string
allowasInEnableEvpn: string
allowasInEnableVpnv4: string
allowasInEnableVpnv6: string
allowasInEvpn: 0
allowasInVpnv4: 0
allowasInVpnv6: 0
asOverride: string
asOverride6: string
attributeUnchanged: string
attributeUnchanged6: string
attributeUnchangedVpnv4: string
attributeUnchangedVpnv6: string
authOptions: string
bfd: string
capabilityDefaultOriginate: string
capabilityDefaultOriginate6: string
capabilityDynamic: string
capabilityGracefulRestart: string
capabilityGracefulRestart6: string
capabilityGracefulRestartEvpn: string
capabilityGracefulRestartVpnv4: string
capabilityGracefulRestartVpnv6: string
capabilityOrf: string
capabilityOrf6: string
capabilityRouteRefresh: string
conditionalAdvertise6s:
- advertiseRoutemap: string
conditionRoutemap: string
conditionType: string
conditionalAdvertises:
- advertiseRoutemap: string
conditionRoutemap: string
conditionType: string
connectTimer: 0
defaultOriginateRoutemap: string
defaultOriginateRoutemap6: string
description: string
distributeListIn: string
distributeListIn6: string
distributeListInVpnv4: string
distributeListInVpnv6: string
distributeListOut: string
distributeListOut6: string
distributeListOutVpnv4: string
distributeListOutVpnv6: string
dontCapabilityNegotiate: string
ebgpEnforceMultihop: string
ebgpMultihopTtl: 0
filterListIn: string
filterListIn6: string
filterListInVpnv4: string
filterListInVpnv6: string
filterListOut: string
filterListOut6: string
filterListOutVpnv4: string
filterListOutVpnv6: string
holdtimeTimer: 0
interface: string
ip: string
keepAliveTimer: 0
linkDownFailover: string
localAs: 0
localAsNoPrepend: string
localAsReplaceAs: string
maximumPrefix: 0
maximumPrefix6: 0
maximumPrefixEvpn: 0
maximumPrefixThreshold: 0
maximumPrefixThreshold6: 0
maximumPrefixThresholdEvpn: 0
maximumPrefixThresholdVpnv4: 0
maximumPrefixThresholdVpnv6: 0
maximumPrefixVpnv4: 0
maximumPrefixVpnv6: 0
maximumPrefixWarningOnly: string
maximumPrefixWarningOnly6: string
maximumPrefixWarningOnlyEvpn: string
maximumPrefixWarningOnlyVpnv4: string
maximumPrefixWarningOnlyVpnv6: string
nextHopSelf: string
nextHopSelf6: string
nextHopSelfRr: string
nextHopSelfRr6: string
nextHopSelfVpnv4: string
nextHopSelfVpnv6: string
overrideCapability: string
passive: string
password: string
prefixListIn: string
prefixListIn6: string
prefixListInVpnv4: string
prefixListInVpnv6: string
prefixListOut: string
prefixListOut6: string
prefixListOutVpnv4: string
prefixListOutVpnv6: string
remoteAs: 0
removePrivateAs: string
removePrivateAs6: string
removePrivateAsEvpn: string
removePrivateAsVpnv4: string
removePrivateAsVpnv6: string
restartTime: 0
retainStaleTime: 0
routeMapIn: string
routeMapIn6: string
routeMapInEvpn: string
routeMapInVpnv4: string
routeMapInVpnv6: string
routeMapOut: string
routeMapOut6: string
routeMapOut6Preferable: string
routeMapOutEvpn: string
routeMapOutPreferable: string
routeMapOutVpnv4: string
routeMapOutVpnv4Preferable: string
routeMapOutVpnv6: string
routeMapOutVpnv6Preferable: string
routeReflectorClient: string
routeReflectorClient6: string
routeReflectorClientEvpn: string
routeReflectorClientVpnv4: string
routeReflectorClientVpnv6: string
routeServerClient: string
routeServerClient6: string
routeServerClientEvpn: string
routeServerClientVpnv4: string
routeServerClientVpnv6: string
sendCommunity: string
sendCommunity6: string
sendCommunityEvpn: string
sendCommunityVpnv4: string
sendCommunityVpnv6: string
shutdown: string
softReconfiguration: string
softReconfiguration6: string
softReconfigurationEvpn: string
softReconfigurationVpnv4: string
softReconfigurationVpnv6: string
staleRoute: string
strictCapabilityMatch: string
unsuppressMap: string
unsuppressMap6: string
updateSource: string
weight: 0
network6s:
- backdoor: string
id: 0
networkImportCheck: string
prefix6: string
routeMap: string
networkImportCheck: string
networks:
- backdoor: string
id: 0
networkImportCheck: string
prefix: string
routeMap: string
recursiveInheritPriority: string
recursiveNextHop: string
redistribute6s:
- name: string
routeMap: string
status: string
redistributes:
- name: string
routeMap: string
status: string
routerId: string
scanTime: 0
synchronization: string
tagResolveMode: string
vdomparam: string
vrf6s:
- exportRts:
- routeTarget: string
importRouteMap: string
importRts:
- routeTarget: string
leakTargets:
- interface: string
routeMap: string
vrf: string
rd: string
role: string
vrf: string
vrfLeak6s:
- targets:
- interface: string
routeMap: string
vrf: string
vrf: string
vrfLeaks:
- targets:
- interface: string
routeMap: string
vrf: string
vrf: string
vrves:
- exportRts:
- routeTarget: string
importRouteMap: string
importRts:
- routeTarget: string
leakTargets:
- interface: string
routeMap: string
vrf: string
rd: string
role: string
vrf: string
Bgp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Bgp resource accepts the following input properties:
- Additional
Path string - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - Additional
Path6 string - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - Additional
Path intSelect - Number of additional paths to be selected for each IPv4 NLRI.
- Additional
Path intSelect6 - Number of additional paths to be selected for each IPv6 NLRI.
- Additional
Path intSelect Vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- Additional
Path intSelect Vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- Additional
Path stringVpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - Additional
Path stringVpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - Admin
Distances List<Pulumiverse.Fortios. Router. Inputs. Bgp Admin Distance> - Administrative distance modifications. The structure of
admin_distance
block is documented below. - Aggregate
Address6s List<Pulumiverse.Fortios. Router. Inputs. Bgp Aggregate Address6> - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - Aggregate
Addresses List<Pulumiverse.Fortios. Router. Inputs. Bgp Aggregate Address> - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - Always
Compare stringMed - Enable/disable always compare MED. Valid values:
enable
,disable
. - As int
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - As
String string - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - Bestpath
As stringPath Ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - Bestpath
Cmp stringConfed Aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - Bestpath
Cmp stringRouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - Bestpath
Med stringConfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - Bestpath
Med stringMissing As Worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - Client
To stringClient Reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - Cluster
Id string - Route reflector cluster ID.
- Confederation
Identifier int - Confederation identifier.
- Confederation
Peers List<Pulumiverse.Fortios. Router. Inputs. Bgp Confederation Peer> - Confederation peers. The structure of
confederation_peers
block is documented below. - Cross
Family stringConditional Adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - Dampening string
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - Dampening
Max intSuppress Time - Maximum minutes a route can be suppressed.
- Dampening
Reachability intHalf Life - Reachability half-life time for penalty (min).
- Dampening
Reuse int - Threshold to reuse routes.
- Dampening
Route stringMap - Criteria for dampening.
- Dampening
Suppress int - Threshold to suppress routes.
- Dampening
Unreachability intHalf Life - Unreachability half-life time for penalty (min).
- Default
Local intPreference - Default local preference.
- Deterministic
Med string - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - Distance
External int - Distance for routes external to the AS.
- Distance
Internal int - Distance for routes internal to the AS.
- Distance
Local int - Distance for routes local to the AS.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Ebgp
Multipath string - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - Enforce
First stringAs - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - Fast
External stringFailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Graceful
End stringOn Timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - Graceful
Restart string - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - Graceful
Restart intTime - Time needed for neighbors to restart (sec).
- Graceful
Stalepath intTime - Time to hold stale paths of restarting neighbor (sec).
- Graceful
Update intDelay - Route advertisement/selection delay after restart (sec).
- Holdtime
Timer int - Number of seconds to mark peer as dead.
- Ibgp
Multipath string - Enable/disable IBGP multi-path. Valid values:
enable
,disable
. - Ignore
Optional stringCapability - Don't send unknown optional capability notification message Valid values:
enable
,disable
. - Keepalive
Timer int - Frequency to send keep alive requests.
- Log
Neighbour stringChanges - Enable logging of BGP neighbour's changes Valid values:
enable
,disable
. - Multipath
Recursive stringDistance - Enable/disable use of recursive distance to select multipath. Valid values:
enable
,disable
. - Neighbor
Groups List<Pulumiverse.Fortios. Router. Inputs. Bgp Neighbor Group> - BGP neighbor group table. The structure of
neighbor_group
block is documented below. - Neighbor
Range6s List<Pulumiverse.Fortios. Router. Inputs. Bgp Neighbor Range6> - BGP IPv6 neighbor range table. The structure of
neighbor_range6
block is documented below. - Neighbor
Ranges List<Pulumiverse.Fortios. Router. Inputs. Bgp Neighbor Range> - BGP neighbor range table. The structure of
neighbor_range
block is documented below. - Neighbors
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Neighbor> - BGP neighbor table. The structure of
neighbor
block is documented below. - Network6s
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Network6> - BGP IPv6 network table. The structure of
network6
block is documented below. - Network
Import stringCheck - Enable/disable ensure BGP network route exists in IGP. Valid values:
enable
,disable
. - Networks
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Network> - BGP network table. The structure of
network
block is documented below. - Recursive
Inherit stringPriority - Enable/disable priority inheritance for recursive resolution. Valid values:
enable
,disable
. - Recursive
Next stringHop - Enable/disable recursive resolution of next-hop using BGP route. Valid values:
enable
,disable
. - Redistribute6s
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Redistribute6> - BGP IPv6 redistribute table. The structure of
redistribute6
block is documented below. - Redistributes
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Redistribute> - BGP IPv4 redistribute table. The structure of
redistribute
block is documented below. - Router
Id string - Router ID.
- Scan
Time int - Background scanner interval (sec), 0 to disable it.
- Synchronization string
- Enable/disable only advertise routes from iBGP if routes present in an IGP. Valid values:
enable
,disable
. - Tag
Resolve stringMode - Configure tag-match mode. Resolves BGP routes with other routes containing the same tag. Valid values:
disable
,preferred
,merge
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Vrf6s
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Vrf6> - BGP IPv6 VRF leaking table. The structure of
vrf6
block is documented below. - Vrf
Leak6s List<Pulumiverse.Fortios. Router. Inputs. Bgp Vrf Leak6> - BGP IPv6 VRF leaking table. The structure of
vrf_leak6
block is documented below. - Vrf
Leaks List<Pulumiverse.Fortios. Router. Inputs. Bgp Vrf Leak> - BGP VRF leaking table. The structure of
vrf_leak
block is documented below. - Vrves
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Vrf> - BGP VRF leaking table. The structure of
vrf
block is documented below.
- Additional
Path string - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - Additional
Path6 string - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - Additional
Path intSelect - Number of additional paths to be selected for each IPv4 NLRI.
- Additional
Path intSelect6 - Number of additional paths to be selected for each IPv6 NLRI.
- Additional
Path intSelect Vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- Additional
Path intSelect Vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- Additional
Path stringVpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - Additional
Path stringVpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - Admin
Distances []BgpAdmin Distance Args - Administrative distance modifications. The structure of
admin_distance
block is documented below. - Aggregate
Address6s []BgpAggregate Address6Args - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - Aggregate
Addresses []BgpAggregate Address Args - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - Always
Compare stringMed - Enable/disable always compare MED. Valid values:
enable
,disable
. - As int
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - As
String string - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - Bestpath
As stringPath Ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - Bestpath
Cmp stringConfed Aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - Bestpath
Cmp stringRouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - Bestpath
Med stringConfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - Bestpath
Med stringMissing As Worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - Client
To stringClient Reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - Cluster
Id string - Route reflector cluster ID.
- Confederation
Identifier int - Confederation identifier.
- Confederation
Peers []BgpConfederation Peer Args - Confederation peers. The structure of
confederation_peers
block is documented below. - Cross
Family stringConditional Adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - Dampening string
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - Dampening
Max intSuppress Time - Maximum minutes a route can be suppressed.
- Dampening
Reachability intHalf Life - Reachability half-life time for penalty (min).
- Dampening
Reuse int - Threshold to reuse routes.
- Dampening
Route stringMap - Criteria for dampening.
- Dampening
Suppress int - Threshold to suppress routes.
- Dampening
Unreachability intHalf Life - Unreachability half-life time for penalty (min).
- Default
Local intPreference - Default local preference.
- Deterministic
Med string - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - Distance
External int - Distance for routes external to the AS.
- Distance
Internal int - Distance for routes internal to the AS.
- Distance
Local int - Distance for routes local to the AS.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Ebgp
Multipath string - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - Enforce
First stringAs - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - Fast
External stringFailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Graceful
End stringOn Timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - Graceful
Restart string - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - Graceful
Restart intTime - Time needed for neighbors to restart (sec).
- Graceful
Stalepath intTime - Time to hold stale paths of restarting neighbor (sec).
- Graceful
Update intDelay - Route advertisement/selection delay after restart (sec).
- Holdtime
Timer int - Number of seconds to mark peer as dead.
- Ibgp
Multipath string - Enable/disable IBGP multi-path. Valid values:
enable
,disable
. - Ignore
Optional stringCapability - Don't send unknown optional capability notification message Valid values:
enable
,disable
. - Keepalive
Timer int - Frequency to send keep alive requests.
- Log
Neighbour stringChanges - Enable logging of BGP neighbour's changes Valid values:
enable
,disable
. - Multipath
Recursive stringDistance - Enable/disable use of recursive distance to select multipath. Valid values:
enable
,disable
. - Neighbor
Groups []BgpNeighbor Group Args - BGP neighbor group table. The structure of
neighbor_group
block is documented below. - Neighbor
Range6s []BgpNeighbor Range6Args - BGP IPv6 neighbor range table. The structure of
neighbor_range6
block is documented below. - Neighbor
Ranges []BgpNeighbor Range Args - BGP neighbor range table. The structure of
neighbor_range
block is documented below. - Neighbors
[]Bgp
Neighbor Args - BGP neighbor table. The structure of
neighbor
block is documented below. - Network6s
[]Bgp
Network6Args - BGP IPv6 network table. The structure of
network6
block is documented below. - Network
Import stringCheck - Enable/disable ensure BGP network route exists in IGP. Valid values:
enable
,disable
. - Networks
[]Bgp
Network Args - BGP network table. The structure of
network
block is documented below. - Recursive
Inherit stringPriority - Enable/disable priority inheritance for recursive resolution. Valid values:
enable
,disable
. - Recursive
Next stringHop - Enable/disable recursive resolution of next-hop using BGP route. Valid values:
enable
,disable
. - Redistribute6s
[]Bgp
Redistribute6Args - BGP IPv6 redistribute table. The structure of
redistribute6
block is documented below. - Redistributes
[]Bgp
Redistribute Args - BGP IPv4 redistribute table. The structure of
redistribute
block is documented below. - Router
Id string - Router ID.
- Scan
Time int - Background scanner interval (sec), 0 to disable it.
- Synchronization string
- Enable/disable only advertise routes from iBGP if routes present in an IGP. Valid values:
enable
,disable
. - Tag
Resolve stringMode - Configure tag-match mode. Resolves BGP routes with other routes containing the same tag. Valid values:
disable
,preferred
,merge
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Vrf6s
[]Bgp
Vrf6Args - BGP IPv6 VRF leaking table. The structure of
vrf6
block is documented below. - Vrf
Leak6s []BgpVrf Leak6Args - BGP IPv6 VRF leaking table. The structure of
vrf_leak6
block is documented below. - Vrf
Leaks []BgpVrf Leak Args - BGP VRF leaking table. The structure of
vrf_leak
block is documented below. - Vrves
[]Bgp
Vrf Args - BGP VRF leaking table. The structure of
vrf
block is documented below.
- additional
Path String - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - additional
Path6 String - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - additional
Path IntegerSelect - Number of additional paths to be selected for each IPv4 NLRI.
- additional
Path IntegerSelect6 - Number of additional paths to be selected for each IPv6 NLRI.
- additional
Path IntegerSelect Vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- additional
Path IntegerSelect Vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- additional
Path StringVpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - additional
Path StringVpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - admin
Distances List<BgpAdmin Distance> - Administrative distance modifications. The structure of
admin_distance
block is documented below. - aggregate
Address6s List<BgpAggregate Address6> - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - aggregate
Addresses List<BgpAggregate Address> - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - always
Compare StringMed - Enable/disable always compare MED. Valid values:
enable
,disable
. - as Integer
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - as
String String - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - bestpath
As StringPath Ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - bestpath
Cmp StringConfed Aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - bestpath
Cmp StringRouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - bestpath
Med StringConfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - bestpath
Med StringMissing As Worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - client
To StringClient Reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - cluster
Id String - Route reflector cluster ID.
- confederation
Identifier Integer - Confederation identifier.
- confederation
Peers List<BgpConfederation Peer> - Confederation peers. The structure of
confederation_peers
block is documented below. - cross
Family StringConditional Adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - dampening String
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - dampening
Max IntegerSuppress Time - Maximum minutes a route can be suppressed.
- dampening
Reachability IntegerHalf Life - Reachability half-life time for penalty (min).
- dampening
Reuse Integer - Threshold to reuse routes.
- dampening
Route StringMap - Criteria for dampening.
- dampening
Suppress Integer - Threshold to suppress routes.
- dampening
Unreachability IntegerHalf Life - Unreachability half-life time for penalty (min).
- default
Local IntegerPreference - Default local preference.
- deterministic
Med String - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - distance
External Integer - Distance for routes external to the AS.
- distance
Internal Integer - Distance for routes internal to the AS.
- distance
Local Integer - Distance for routes local to the AS.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- ebgp
Multipath String - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - enforce
First StringAs - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - fast
External StringFailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- graceful
End StringOn Timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - graceful
Restart String - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - graceful
Restart IntegerTime - Time needed for neighbors to restart (sec).
- graceful
Stalepath IntegerTime - Time to hold stale paths of restarting neighbor (sec).
- graceful
Update IntegerDelay - Route advertisement/selection delay after restart (sec).
- holdtime
Timer Integer - Number of seconds to mark peer as dead.
- ibgp
Multipath String - Enable/disable IBGP multi-path. Valid values:
enable
,disable
. - ignore
Optional StringCapability - Don't send unknown optional capability notification message Valid values:
enable
,disable
. - keepalive
Timer Integer - Frequency to send keep alive requests.
- log
Neighbour StringChanges - Enable logging of BGP neighbour's changes Valid values:
enable
,disable
. - multipath
Recursive StringDistance - Enable/disable use of recursive distance to select multipath. Valid values:
enable
,disable
. - neighbor
Groups List<BgpNeighbor Group> - BGP neighbor group table. The structure of
neighbor_group
block is documented below. - neighbor
Range6s List<BgpNeighbor Range6> - BGP IPv6 neighbor range table. The structure of
neighbor_range6
block is documented below. - neighbor
Ranges List<BgpNeighbor Range> - BGP neighbor range table. The structure of
neighbor_range
block is documented below. - neighbors
List<Bgp
Neighbor> - BGP neighbor table. The structure of
neighbor
block is documented below. - network6s
List<Bgp
Network6> - BGP IPv6 network table. The structure of
network6
block is documented below. - network
Import StringCheck - Enable/disable ensure BGP network route exists in IGP. Valid values:
enable
,disable
. - networks
List<Bgp
Network> - BGP network table. The structure of
network
block is documented below. - recursive
Inherit StringPriority - Enable/disable priority inheritance for recursive resolution. Valid values:
enable
,disable
. - recursive
Next StringHop - Enable/disable recursive resolution of next-hop using BGP route. Valid values:
enable
,disable
. - redistribute6s
List<Bgp
Redistribute6> - BGP IPv6 redistribute table. The structure of
redistribute6
block is documented below. - redistributes
List<Bgp
Redistribute> - BGP IPv4 redistribute table. The structure of
redistribute
block is documented below. - router
Id String - Router ID.
- scan
Time Integer - Background scanner interval (sec), 0 to disable it.
- synchronization String
- Enable/disable only advertise routes from iBGP if routes present in an IGP. Valid values:
enable
,disable
. - tag
Resolve StringMode - Configure tag-match mode. Resolves BGP routes with other routes containing the same tag. Valid values:
disable
,preferred
,merge
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- vrf6s
List<Bgp
Vrf6> - BGP IPv6 VRF leaking table. The structure of
vrf6
block is documented below. - vrf
Leak6s List<BgpVrf Leak6> - BGP IPv6 VRF leaking table. The structure of
vrf_leak6
block is documented below. - vrf
Leaks List<BgpVrf Leak> - BGP VRF leaking table. The structure of
vrf_leak
block is documented below. - vrves
List<Bgp
Vrf> - BGP VRF leaking table. The structure of
vrf
block is documented below.
- additional
Path string - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - additional
Path6 string - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - additional
Path numberSelect - Number of additional paths to be selected for each IPv4 NLRI.
- additional
Path numberSelect6 - Number of additional paths to be selected for each IPv6 NLRI.
- additional
Path numberSelect Vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- additional
Path numberSelect Vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- additional
Path stringVpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - additional
Path stringVpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - admin
Distances BgpAdmin Distance[] - Administrative distance modifications. The structure of
admin_distance
block is documented below. - aggregate
Address6s BgpAggregate Address6[] - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - aggregate
Addresses BgpAggregate Address[] - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - always
Compare stringMed - Enable/disable always compare MED. Valid values:
enable
,disable
. - as number
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - as
String string - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - bestpath
As stringPath Ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - bestpath
Cmp stringConfed Aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - bestpath
Cmp stringRouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - bestpath
Med stringConfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - bestpath
Med stringMissing As Worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - client
To stringClient Reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - cluster
Id string - Route reflector cluster ID.
- confederation
Identifier number - Confederation identifier.
- confederation
Peers BgpConfederation Peer[] - Confederation peers. The structure of
confederation_peers
block is documented below. - cross
Family stringConditional Adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - dampening string
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - dampening
Max numberSuppress Time - Maximum minutes a route can be suppressed.
- dampening
Reachability numberHalf Life - Reachability half-life time for penalty (min).
- dampening
Reuse number - Threshold to reuse routes.
- dampening
Route stringMap - Criteria for dampening.
- dampening
Suppress number - Threshold to suppress routes.
- dampening
Unreachability numberHalf Life - Unreachability half-life time for penalty (min).
- default
Local numberPreference - Default local preference.
- deterministic
Med string - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - distance
External number - Distance for routes external to the AS.
- distance
Internal number - Distance for routes internal to the AS.
- distance
Local number - Distance for routes local to the AS.
- dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- ebgp
Multipath string - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - enforce
First stringAs - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - fast
External stringFailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- graceful
End stringOn Timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - graceful
Restart string - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - graceful
Restart numberTime - Time needed for neighbors to restart (sec).
- graceful
Stalepath numberTime - Time to hold stale paths of restarting neighbor (sec).
- graceful
Update numberDelay - Route advertisement/selection delay after restart (sec).
- holdtime
Timer number - Number of seconds to mark peer as dead.
- ibgp
Multipath string - Enable/disable IBGP multi-path. Valid values:
enable
,disable
. - ignore
Optional stringCapability - Don't send unknown optional capability notification message Valid values:
enable
,disable
. - keepalive
Timer number - Frequency to send keep alive requests.
- log
Neighbour stringChanges - Enable logging of BGP neighbour's changes Valid values:
enable
,disable
. - multipath
Recursive stringDistance - Enable/disable use of recursive distance to select multipath. Valid values:
enable
,disable
. - neighbor
Groups BgpNeighbor Group[] - BGP neighbor group table. The structure of
neighbor_group
block is documented below. - neighbor
Range6s BgpNeighbor Range6[] - BGP IPv6 neighbor range table. The structure of
neighbor_range6
block is documented below. - neighbor
Ranges BgpNeighbor Range[] - BGP neighbor range table. The structure of
neighbor_range
block is documented below. - neighbors
Bgp
Neighbor[] - BGP neighbor table. The structure of
neighbor
block is documented below. - network6s
Bgp
Network6[] - BGP IPv6 network table. The structure of
network6
block is documented below. - network
Import stringCheck - Enable/disable ensure BGP network route exists in IGP. Valid values:
enable
,disable
. - networks
Bgp
Network[] - BGP network table. The structure of
network
block is documented below. - recursive
Inherit stringPriority - Enable/disable priority inheritance for recursive resolution. Valid values:
enable
,disable
. - recursive
Next stringHop - Enable/disable recursive resolution of next-hop using BGP route. Valid values:
enable
,disable
. - redistribute6s
Bgp
Redistribute6[] - BGP IPv6 redistribute table. The structure of
redistribute6
block is documented below. - redistributes
Bgp
Redistribute[] - BGP IPv4 redistribute table. The structure of
redistribute
block is documented below. - router
Id string - Router ID.
- scan
Time number - Background scanner interval (sec), 0 to disable it.
- synchronization string
- Enable/disable only advertise routes from iBGP if routes present in an IGP. Valid values:
enable
,disable
. - tag
Resolve stringMode - Configure tag-match mode. Resolves BGP routes with other routes containing the same tag. Valid values:
disable
,preferred
,merge
. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- vrf6s
Bgp
Vrf6[] - BGP IPv6 VRF leaking table. The structure of
vrf6
block is documented below. - vrf
Leak6s BgpVrf Leak6[] - BGP IPv6 VRF leaking table. The structure of
vrf_leak6
block is documented below. - vrf
Leaks BgpVrf Leak[] - BGP VRF leaking table. The structure of
vrf_leak
block is documented below. - vrves
Bgp
Vrf[] - BGP VRF leaking table. The structure of
vrf
block is documented below.
- additional_
path str - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - additional_
path6 str - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - additional_
path_ intselect - Number of additional paths to be selected for each IPv4 NLRI.
- additional_
path_ intselect6 - Number of additional paths to be selected for each IPv6 NLRI.
- additional_
path_ intselect_ vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- additional_
path_ intselect_ vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- additional_
path_ strvpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - additional_
path_ strvpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - admin_
distances Sequence[BgpAdmin Distance Args] - Administrative distance modifications. The structure of
admin_distance
block is documented below. - aggregate_
address6s Sequence[BgpAggregate Address6Args] - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - aggregate_
addresses Sequence[BgpAggregate Address Args] - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - always_
compare_ strmed - Enable/disable always compare MED. Valid values:
enable
,disable
. - as_ int
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - as_
string str - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - bestpath_
as_ strpath_ ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - bestpath_
cmp_ strconfed_ aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - bestpath_
cmp_ strrouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - bestpath_
med_ strconfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - bestpath_
med_ strmissing_ as_ worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - client_
to_ strclient_ reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - cluster_
id str - Route reflector cluster ID.
- confederation_
identifier int - Confederation identifier.
- confederation_
peers Sequence[BgpConfederation Peer Args] - Confederation peers. The structure of
confederation_peers
block is documented below. - cross_
family_ strconditional_ adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - dampening str
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - dampening_
max_ intsuppress_ time - Maximum minutes a route can be suppressed.
- dampening_
reachability_ inthalf_ life - Reachability half-life time for penalty (min).
- dampening_
reuse int - Threshold to reuse routes.
- dampening_
route_ strmap - Criteria for dampening.
- dampening_
suppress int - Threshold to suppress routes.
- dampening_
unreachability_ inthalf_ life - Unreachability half-life time for penalty (min).
- default_
local_ intpreference - Default local preference.
- deterministic_
med str - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - distance_
external int - Distance for routes external to the AS.
- distance_
internal int - Distance for routes internal to the AS.
- distance_
local int - Distance for routes local to the AS.
- dynamic_
sort_ strsubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- ebgp_
multipath str - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - enforce_
first_ stras - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - fast_
external_ strfailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - get_
all_ strtables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- graceful_
end_ stron_ timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - graceful_
restart str - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - graceful_
restart_ inttime - Time needed for neighbors to restart (sec).
- graceful_
stalepath_ inttime - Time to hold stale paths of restarting neighbor (sec).
- graceful_
update_ intdelay - Route advertisement/selection delay after restart (sec).
- holdtime_
timer int - Number of seconds to mark peer as dead.
- ibgp_
multipath str - Enable/disable IBGP multi-path. Valid values:
enable
,disable
. - ignore_
optional_ strcapability - Don't send unknown optional capability notification message Valid values:
enable
,disable
. - keepalive_
timer int - Frequency to send keep alive requests.
- log_
neighbour_ strchanges - Enable logging of BGP neighbour's changes Valid values:
enable
,disable
. - multipath_
recursive_ strdistance - Enable/disable use of recursive distance to select multipath. Valid values:
enable
,disable
. - neighbor_
groups Sequence[BgpNeighbor Group Args] - BGP neighbor group table. The structure of
neighbor_group
block is documented below. - neighbor_
range6s Sequence[BgpNeighbor Range6Args] - BGP IPv6 neighbor range table. The structure of
neighbor_range6
block is documented below. - neighbor_
ranges Sequence[BgpNeighbor Range Args] - BGP neighbor range table. The structure of
neighbor_range
block is documented below. - neighbors
Sequence[Bgp
Neighbor Args] - BGP neighbor table. The structure of
neighbor
block is documented below. - network6s
Sequence[Bgp
Network6Args] - BGP IPv6 network table. The structure of
network6
block is documented below. - network_
import_ strcheck - Enable/disable ensure BGP network route exists in IGP. Valid values:
enable
,disable
. - networks
Sequence[Bgp
Network Args] - BGP network table. The structure of
network
block is documented below. - recursive_
inherit_ strpriority - Enable/disable priority inheritance for recursive resolution. Valid values:
enable
,disable
. - recursive_
next_ strhop - Enable/disable recursive resolution of next-hop using BGP route. Valid values:
enable
,disable
. - redistribute6s
Sequence[Bgp
Redistribute6Args] - BGP IPv6 redistribute table. The structure of
redistribute6
block is documented below. - redistributes
Sequence[Bgp
Redistribute Args] - BGP IPv4 redistribute table. The structure of
redistribute
block is documented below. - router_
id str - Router ID.
- scan_
time int - Background scanner interval (sec), 0 to disable it.
- synchronization str
- Enable/disable only advertise routes from iBGP if routes present in an IGP. Valid values:
enable
,disable
. - tag_
resolve_ strmode - Configure tag-match mode. Resolves BGP routes with other routes containing the same tag. Valid values:
disable
,preferred
,merge
. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- vrf6s
Sequence[Bgp
Vrf6Args] - BGP IPv6 VRF leaking table. The structure of
vrf6
block is documented below. - vrf_
leak6s Sequence[BgpVrf Leak6Args] - BGP IPv6 VRF leaking table. The structure of
vrf_leak6
block is documented below. - vrf_
leaks Sequence[BgpVrf Leak Args] - BGP VRF leaking table. The structure of
vrf_leak
block is documented below. - vrves
Sequence[Bgp
Vrf Args] - BGP VRF leaking table. The structure of
vrf
block is documented below.
- additional
Path String - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - additional
Path6 String - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - additional
Path NumberSelect - Number of additional paths to be selected for each IPv4 NLRI.
- additional
Path NumberSelect6 - Number of additional paths to be selected for each IPv6 NLRI.
- additional
Path NumberSelect Vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- additional
Path NumberSelect Vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- additional
Path StringVpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - additional
Path StringVpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - admin
Distances List<Property Map> - Administrative distance modifications. The structure of
admin_distance
block is documented below. - aggregate
Address6s List<Property Map> - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - aggregate
Addresses List<Property Map> - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - always
Compare StringMed - Enable/disable always compare MED. Valid values:
enable
,disable
. - as Number
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - as
String String - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - bestpath
As StringPath Ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - bestpath
Cmp StringConfed Aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - bestpath
Cmp StringRouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - bestpath
Med StringConfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - bestpath
Med StringMissing As Worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - client
To StringClient Reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - cluster
Id String - Route reflector cluster ID.
- confederation
Identifier Number - Confederation identifier.
- confederation
Peers List<Property Map> - Confederation peers. The structure of
confederation_peers
block is documented below. - cross
Family StringConditional Adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - dampening String
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - dampening
Max NumberSuppress Time - Maximum minutes a route can be suppressed.
- dampening
Reachability NumberHalf Life - Reachability half-life time for penalty (min).
- dampening
Reuse Number - Threshold to reuse routes.
- dampening
Route StringMap - Criteria for dampening.
- dampening
Suppress Number - Threshold to suppress routes.
- dampening
Unreachability NumberHalf Life - Unreachability half-life time for penalty (min).
- default
Local NumberPreference - Default local preference.
- deterministic
Med String - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - distance
External Number - Distance for routes external to the AS.
- distance
Internal Number - Distance for routes internal to the AS.
- distance
Local Number - Distance for routes local to the AS.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- ebgp
Multipath String - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - enforce
First StringAs - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - fast
External StringFailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- graceful
End StringOn Timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - graceful
Restart String - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - graceful
Restart NumberTime - Time needed for neighbors to restart (sec).
- graceful
Stalepath NumberTime - Time to hold stale paths of restarting neighbor (sec).
- graceful
Update NumberDelay - Route advertisement/selection delay after restart (sec).
- holdtime
Timer Number - Number of seconds to mark peer as dead.
- ibgp
Multipath String - Enable/disable IBGP multi-path. Valid values:
enable
,disable
. - ignore
Optional StringCapability - Don't send unknown optional capability notification message Valid values:
enable
,disable
. - keepalive
Timer Number - Frequency to send keep alive requests.
- log
Neighbour StringChanges - Enable logging of BGP neighbour's changes Valid values:
enable
,disable
. - multipath
Recursive StringDistance - Enable/disable use of recursive distance to select multipath. Valid values:
enable
,disable
. - neighbor
Groups List<Property Map> - BGP neighbor group table. The structure of
neighbor_group
block is documented below. - neighbor
Range6s List<Property Map> - BGP IPv6 neighbor range table. The structure of
neighbor_range6
block is documented below. - neighbor
Ranges List<Property Map> - BGP neighbor range table. The structure of
neighbor_range
block is documented below. - neighbors List<Property Map>
- BGP neighbor table. The structure of
neighbor
block is documented below. - network6s List<Property Map>
- BGP IPv6 network table. The structure of
network6
block is documented below. - network
Import StringCheck - Enable/disable ensure BGP network route exists in IGP. Valid values:
enable
,disable
. - networks List<Property Map>
- BGP network table. The structure of
network
block is documented below. - recursive
Inherit StringPriority - Enable/disable priority inheritance for recursive resolution. Valid values:
enable
,disable
. - recursive
Next StringHop - Enable/disable recursive resolution of next-hop using BGP route. Valid values:
enable
,disable
. - redistribute6s List<Property Map>
- BGP IPv6 redistribute table. The structure of
redistribute6
block is documented below. - redistributes List<Property Map>
- BGP IPv4 redistribute table. The structure of
redistribute
block is documented below. - router
Id String - Router ID.
- scan
Time Number - Background scanner interval (sec), 0 to disable it.
- synchronization String
- Enable/disable only advertise routes from iBGP if routes present in an IGP. Valid values:
enable
,disable
. - tag
Resolve StringMode - Configure tag-match mode. Resolves BGP routes with other routes containing the same tag. Valid values:
disable
,preferred
,merge
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- vrf6s List<Property Map>
- BGP IPv6 VRF leaking table. The structure of
vrf6
block is documented below. - vrf
Leak6s List<Property Map> - BGP IPv6 VRF leaking table. The structure of
vrf_leak6
block is documented below. - vrf
Leaks List<Property Map> - BGP VRF leaking table. The structure of
vrf_leak
block is documented below. - vrves List<Property Map>
- BGP VRF leaking table. The structure of
vrf
block is documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the Bgp resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Bgp Resource
Get an existing Bgp resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BgpState, opts?: CustomResourceOptions): Bgp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
additional_path: Optional[str] = None,
additional_path6: Optional[str] = None,
additional_path_select: Optional[int] = None,
additional_path_select6: Optional[int] = None,
additional_path_select_vpnv4: Optional[int] = None,
additional_path_select_vpnv6: Optional[int] = None,
additional_path_vpnv4: Optional[str] = None,
additional_path_vpnv6: Optional[str] = None,
admin_distances: Optional[Sequence[BgpAdminDistanceArgs]] = None,
aggregate_address6s: Optional[Sequence[BgpAggregateAddress6Args]] = None,
aggregate_addresses: Optional[Sequence[BgpAggregateAddressArgs]] = None,
always_compare_med: Optional[str] = None,
as_: Optional[int] = None,
as_string: Optional[str] = None,
bestpath_as_path_ignore: Optional[str] = None,
bestpath_cmp_confed_aspath: Optional[str] = None,
bestpath_cmp_routerid: Optional[str] = None,
bestpath_med_confed: Optional[str] = None,
bestpath_med_missing_as_worst: Optional[str] = None,
client_to_client_reflection: Optional[str] = None,
cluster_id: Optional[str] = None,
confederation_identifier: Optional[int] = None,
confederation_peers: Optional[Sequence[BgpConfederationPeerArgs]] = None,
cross_family_conditional_adv: Optional[str] = None,
dampening: Optional[str] = None,
dampening_max_suppress_time: Optional[int] = None,
dampening_reachability_half_life: Optional[int] = None,
dampening_reuse: Optional[int] = None,
dampening_route_map: Optional[str] = None,
dampening_suppress: Optional[int] = None,
dampening_unreachability_half_life: Optional[int] = None,
default_local_preference: Optional[int] = None,
deterministic_med: Optional[str] = None,
distance_external: Optional[int] = None,
distance_internal: Optional[int] = None,
distance_local: Optional[int] = None,
dynamic_sort_subtable: Optional[str] = None,
ebgp_multipath: Optional[str] = None,
enforce_first_as: Optional[str] = None,
fast_external_failover: Optional[str] = None,
get_all_tables: Optional[str] = None,
graceful_end_on_timer: Optional[str] = None,
graceful_restart: Optional[str] = None,
graceful_restart_time: Optional[int] = None,
graceful_stalepath_time: Optional[int] = None,
graceful_update_delay: Optional[int] = None,
holdtime_timer: Optional[int] = None,
ibgp_multipath: Optional[str] = None,
ignore_optional_capability: Optional[str] = None,
keepalive_timer: Optional[int] = None,
log_neighbour_changes: Optional[str] = None,
multipath_recursive_distance: Optional[str] = None,
neighbor_groups: Optional[Sequence[BgpNeighborGroupArgs]] = None,
neighbor_range6s: Optional[Sequence[BgpNeighborRange6Args]] = None,
neighbor_ranges: Optional[Sequence[BgpNeighborRangeArgs]] = None,
neighbors: Optional[Sequence[BgpNeighborArgs]] = None,
network6s: Optional[Sequence[BgpNetwork6Args]] = None,
network_import_check: Optional[str] = None,
networks: Optional[Sequence[BgpNetworkArgs]] = None,
recursive_inherit_priority: Optional[str] = None,
recursive_next_hop: Optional[str] = None,
redistribute6s: Optional[Sequence[BgpRedistribute6Args]] = None,
redistributes: Optional[Sequence[BgpRedistributeArgs]] = None,
router_id: Optional[str] = None,
scan_time: Optional[int] = None,
synchronization: Optional[str] = None,
tag_resolve_mode: Optional[str] = None,
vdomparam: Optional[str] = None,
vrf6s: Optional[Sequence[BgpVrf6Args]] = None,
vrf_leak6s: Optional[Sequence[BgpVrfLeak6Args]] = None,
vrf_leaks: Optional[Sequence[BgpVrfLeakArgs]] = None,
vrves: Optional[Sequence[BgpVrfArgs]] = None) -> Bgp
func GetBgp(ctx *Context, name string, id IDInput, state *BgpState, opts ...ResourceOption) (*Bgp, error)
public static Bgp Get(string name, Input<string> id, BgpState? state, CustomResourceOptions? opts = null)
public static Bgp get(String name, Output<String> id, BgpState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Additional
Path string - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - Additional
Path6 string - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - Additional
Path intSelect - Number of additional paths to be selected for each IPv4 NLRI.
- Additional
Path intSelect6 - Number of additional paths to be selected for each IPv6 NLRI.
- Additional
Path intSelect Vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- Additional
Path intSelect Vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- Additional
Path stringVpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - Additional
Path stringVpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - Admin
Distances List<Pulumiverse.Fortios. Router. Inputs. Bgp Admin Distance> - Administrative distance modifications. The structure of
admin_distance
block is documented below. - Aggregate
Address6s List<Pulumiverse.Fortios. Router. Inputs. Bgp Aggregate Address6> - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - Aggregate
Addresses List<Pulumiverse.Fortios. Router. Inputs. Bgp Aggregate Address> - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - Always
Compare stringMed - Enable/disable always compare MED. Valid values:
enable
,disable
. - As int
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - As
String string - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - Bestpath
As stringPath Ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - Bestpath
Cmp stringConfed Aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - Bestpath
Cmp stringRouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - Bestpath
Med stringConfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - Bestpath
Med stringMissing As Worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - Client
To stringClient Reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - Cluster
Id string - Route reflector cluster ID.
- Confederation
Identifier int - Confederation identifier.
- Confederation
Peers List<Pulumiverse.Fortios. Router. Inputs. Bgp Confederation Peer> - Confederation peers. The structure of
confederation_peers
block is documented below. - Cross
Family stringConditional Adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - Dampening string
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - Dampening
Max intSuppress Time - Maximum minutes a route can be suppressed.
- Dampening
Reachability intHalf Life - Reachability half-life time for penalty (min).
- Dampening
Reuse int - Threshold to reuse routes.
- Dampening
Route stringMap - Criteria for dampening.
- Dampening
Suppress int - Threshold to suppress routes.
- Dampening
Unreachability intHalf Life - Unreachability half-life time for penalty (min).
- Default
Local intPreference - Default local preference.
- Deterministic
Med string - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - Distance
External int - Distance for routes external to the AS.
- Distance
Internal int - Distance for routes internal to the AS.
- Distance
Local int - Distance for routes local to the AS.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Ebgp
Multipath string - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - Enforce
First stringAs - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - Fast
External stringFailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Graceful
End stringOn Timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - Graceful
Restart string - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - Graceful
Restart intTime - Time needed for neighbors to restart (sec).
- Graceful
Stalepath intTime - Time to hold stale paths of restarting neighbor (sec).
- Graceful
Update intDelay - Route advertisement/selection delay after restart (sec).
- Holdtime
Timer int - Number of seconds to mark peer as dead.
- Ibgp
Multipath string - Enable/disable IBGP multi-path. Valid values:
enable
,disable
. - Ignore
Optional stringCapability - Don't send unknown optional capability notification message Valid values:
enable
,disable
. - Keepalive
Timer int - Frequency to send keep alive requests.
- Log
Neighbour stringChanges - Enable logging of BGP neighbour's changes Valid values:
enable
,disable
. - Multipath
Recursive stringDistance - Enable/disable use of recursive distance to select multipath. Valid values:
enable
,disable
. - Neighbor
Groups List<Pulumiverse.Fortios. Router. Inputs. Bgp Neighbor Group> - BGP neighbor group table. The structure of
neighbor_group
block is documented below. - Neighbor
Range6s List<Pulumiverse.Fortios. Router. Inputs. Bgp Neighbor Range6> - BGP IPv6 neighbor range table. The structure of
neighbor_range6
block is documented below. - Neighbor
Ranges List<Pulumiverse.Fortios. Router. Inputs. Bgp Neighbor Range> - BGP neighbor range table. The structure of
neighbor_range
block is documented below. - Neighbors
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Neighbor> - BGP neighbor table. The structure of
neighbor
block is documented below. - Network6s
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Network6> - BGP IPv6 network table. The structure of
network6
block is documented below. - Network
Import stringCheck - Enable/disable ensure BGP network route exists in IGP. Valid values:
enable
,disable
. - Networks
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Network> - BGP network table. The structure of
network
block is documented below. - Recursive
Inherit stringPriority - Enable/disable priority inheritance for recursive resolution. Valid values:
enable
,disable
. - Recursive
Next stringHop - Enable/disable recursive resolution of next-hop using BGP route. Valid values:
enable
,disable
. - Redistribute6s
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Redistribute6> - BGP IPv6 redistribute table. The structure of
redistribute6
block is documented below. - Redistributes
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Redistribute> - BGP IPv4 redistribute table. The structure of
redistribute
block is documented below. - Router
Id string - Router ID.
- Scan
Time int - Background scanner interval (sec), 0 to disable it.
- Synchronization string
- Enable/disable only advertise routes from iBGP if routes present in an IGP. Valid values:
enable
,disable
. - Tag
Resolve stringMode - Configure tag-match mode. Resolves BGP routes with other routes containing the same tag. Valid values:
disable
,preferred
,merge
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Vrf6s
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Vrf6> - BGP IPv6 VRF leaking table. The structure of
vrf6
block is documented below. - Vrf
Leak6s List<Pulumiverse.Fortios. Router. Inputs. Bgp Vrf Leak6> - BGP IPv6 VRF leaking table. The structure of
vrf_leak6
block is documented below. - Vrf
Leaks List<Pulumiverse.Fortios. Router. Inputs. Bgp Vrf Leak> - BGP VRF leaking table. The structure of
vrf_leak
block is documented below. - Vrves
List<Pulumiverse.
Fortios. Router. Inputs. Bgp Vrf> - BGP VRF leaking table. The structure of
vrf
block is documented below.
- Additional
Path string - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - Additional
Path6 string - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - Additional
Path intSelect - Number of additional paths to be selected for each IPv4 NLRI.
- Additional
Path intSelect6 - Number of additional paths to be selected for each IPv6 NLRI.
- Additional
Path intSelect Vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- Additional
Path intSelect Vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- Additional
Path stringVpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - Additional
Path stringVpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - Admin
Distances []BgpAdmin Distance Args - Administrative distance modifications. The structure of
admin_distance
block is documented below. - Aggregate
Address6s []BgpAggregate Address6Args - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - Aggregate
Addresses []BgpAggregate Address Args - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - Always
Compare stringMed - Enable/disable always compare MED. Valid values:
enable
,disable
. - As int
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - As
String string - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - Bestpath
As stringPath Ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - Bestpath
Cmp stringConfed Aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - Bestpath
Cmp stringRouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - Bestpath
Med stringConfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - Bestpath
Med stringMissing As Worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - Client
To stringClient Reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - Cluster
Id string - Route reflector cluster ID.
- Confederation
Identifier int - Confederation identifier.
- Confederation
Peers []BgpConfederation Peer Args - Confederation peers. The structure of
confederation_peers
block is documented below. - Cross
Family stringConditional Adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - Dampening string
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - Dampening
Max intSuppress Time - Maximum minutes a route can be suppressed.
- Dampening
Reachability intHalf Life - Reachability half-life time for penalty (min).
- Dampening
Reuse int - Threshold to reuse routes.
- Dampening
Route stringMap - Criteria for dampening.
- Dampening
Suppress int - Threshold to suppress routes.
- Dampening
Unreachability intHalf Life - Unreachability half-life time for penalty (min).
- Default
Local intPreference - Default local preference.
- Deterministic
Med string - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - Distance
External int - Distance for routes external to the AS.
- Distance
Internal int - Distance for routes internal to the AS.
- Distance
Local int - Distance for routes local to the AS.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Ebgp
Multipath string - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - Enforce
First stringAs - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - Fast
External stringFailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Graceful
End stringOn Timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - Graceful
Restart string - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - Graceful
Restart intTime - Time needed for neighbors to restart (sec).
- Graceful
Stalepath intTime - Time to hold stale paths of restarting neighbor (sec).
- Graceful
Update intDelay - Route advertisement/selection delay after restart (sec).
- Holdtime
Timer int - Number of seconds to mark peer as dead.
- Ibgp
Multipath string - Enable/disable IBGP multi-path. Valid values:
enable
,disable
. - Ignore
Optional stringCapability - Don't send unknown optional capability notification message Valid values:
enable
,disable
. - Keepalive
Timer int - Frequency to send keep alive requests.
- Log
Neighbour stringChanges - Enable logging of BGP neighbour's changes Valid values:
enable
,disable
. - Multipath
Recursive stringDistance - Enable/disable use of recursive distance to select multipath. Valid values:
enable
,disable
. - Neighbor
Groups []BgpNeighbor Group Args - BGP neighbor group table. The structure of
neighbor_group
block is documented below. - Neighbor
Range6s []BgpNeighbor Range6Args - BGP IPv6 neighbor range table. The structure of
neighbor_range6
block is documented below. - Neighbor
Ranges []BgpNeighbor Range Args - BGP neighbor range table. The structure of
neighbor_range
block is documented below. - Neighbors
[]Bgp
Neighbor Args - BGP neighbor table. The structure of
neighbor
block is documented below. - Network6s
[]Bgp
Network6Args - BGP IPv6 network table. The structure of
network6
block is documented below. - Network
Import stringCheck - Enable/disable ensure BGP network route exists in IGP. Valid values:
enable
,disable
. - Networks
[]Bgp
Network Args - BGP network table. The structure of
network
block is documented below. - Recursive
Inherit stringPriority - Enable/disable priority inheritance for recursive resolution. Valid values:
enable
,disable
. - Recursive
Next stringHop - Enable/disable recursive resolution of next-hop using BGP route. Valid values:
enable
,disable
. - Redistribute6s
[]Bgp
Redistribute6Args - BGP IPv6 redistribute table. The structure of
redistribute6
block is documented below. - Redistributes
[]Bgp
Redistribute Args - BGP IPv4 redistribute table. The structure of
redistribute
block is documented below. - Router
Id string - Router ID.
- Scan
Time int - Background scanner interval (sec), 0 to disable it.
- Synchronization string
- Enable/disable only advertise routes from iBGP if routes present in an IGP. Valid values:
enable
,disable
. - Tag
Resolve stringMode - Configure tag-match mode. Resolves BGP routes with other routes containing the same tag. Valid values:
disable
,preferred
,merge
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Vrf6s
[]Bgp
Vrf6Args - BGP IPv6 VRF leaking table. The structure of
vrf6
block is documented below. - Vrf
Leak6s []BgpVrf Leak6Args - BGP IPv6 VRF leaking table. The structure of
vrf_leak6
block is documented below. - Vrf
Leaks []BgpVrf Leak Args - BGP VRF leaking table. The structure of
vrf_leak
block is documented below. - Vrves
[]Bgp
Vrf Args - BGP VRF leaking table. The structure of
vrf
block is documented below.
- additional
Path String - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - additional
Path6 String - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - additional
Path IntegerSelect - Number of additional paths to be selected for each IPv4 NLRI.
- additional
Path IntegerSelect6 - Number of additional paths to be selected for each IPv6 NLRI.
- additional
Path IntegerSelect Vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- additional
Path IntegerSelect Vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- additional
Path StringVpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - additional
Path StringVpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - admin
Distances List<BgpAdmin Distance> - Administrative distance modifications. The structure of
admin_distance
block is documented below. - aggregate
Address6s List<BgpAggregate Address6> - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - aggregate
Addresses List<BgpAggregate Address> - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - always
Compare StringMed - Enable/disable always compare MED. Valid values:
enable
,disable
. - as Integer
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - as
String String - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - bestpath
As StringPath Ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - bestpath
Cmp StringConfed Aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - bestpath
Cmp StringRouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - bestpath
Med StringConfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - bestpath
Med StringMissing As Worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - client
To StringClient Reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - cluster
Id String - Route reflector cluster ID.
- confederation
Identifier Integer - Confederation identifier.
- confederation
Peers List<BgpConfederation Peer> - Confederation peers. The structure of
confederation_peers
block is documented below. - cross
Family StringConditional Adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - dampening String
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - dampening
Max IntegerSuppress Time - Maximum minutes a route can be suppressed.
- dampening
Reachability IntegerHalf Life - Reachability half-life time for penalty (min).
- dampening
Reuse Integer - Threshold to reuse routes.
- dampening
Route StringMap - Criteria for dampening.
- dampening
Suppress Integer - Threshold to suppress routes.
- dampening
Unreachability IntegerHalf Life - Unreachability half-life time for penalty (min).
- default
Local IntegerPreference - Default local preference.
- deterministic
Med String - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - distance
External Integer - Distance for routes external to the AS.
- distance
Internal Integer - Distance for routes internal to the AS.
- distance
Local Integer - Distance for routes local to the AS.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- ebgp
Multipath String - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - enforce
First StringAs - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - fast
External StringFailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- graceful
End StringOn Timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - graceful
Restart String - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - graceful
Restart IntegerTime - Time needed for neighbors to restart (sec).
- graceful
Stalepath IntegerTime - Time to hold stale paths of restarting neighbor (sec).
- graceful
Update IntegerDelay - Route advertisement/selection delay after restart (sec).
- holdtime
Timer Integer - Number of seconds to mark peer as dead.
- ibgp
Multipath String - Enable/disable IBGP multi-path. Valid values:
enable
,disable
. - ignore
Optional StringCapability - Don't send unknown optional capability notification message Valid values:
enable
,disable
. - keepalive
Timer Integer - Frequency to send keep alive requests.
- log
Neighbour StringChanges - Enable logging of BGP neighbour's changes Valid values:
enable
,disable
. - multipath
Recursive StringDistance - Enable/disable use of recursive distance to select multipath. Valid values:
enable
,disable
. - neighbor
Groups List<BgpNeighbor Group> - BGP neighbor group table. The structure of
neighbor_group
block is documented below. - neighbor
Range6s List<BgpNeighbor Range6> - BGP IPv6 neighbor range table. The structure of
neighbor_range6
block is documented below. - neighbor
Ranges List<BgpNeighbor Range> - BGP neighbor range table. The structure of
neighbor_range
block is documented below. - neighbors
List<Bgp
Neighbor> - BGP neighbor table. The structure of
neighbor
block is documented below. - network6s
List<Bgp
Network6> - BGP IPv6 network table. The structure of
network6
block is documented below. - network
Import StringCheck - Enable/disable ensure BGP network route exists in IGP. Valid values:
enable
,disable
. - networks
List<Bgp
Network> - BGP network table. The structure of
network
block is documented below. - recursive
Inherit StringPriority - Enable/disable priority inheritance for recursive resolution. Valid values:
enable
,disable
. - recursive
Next StringHop - Enable/disable recursive resolution of next-hop using BGP route. Valid values:
enable
,disable
. - redistribute6s
List<Bgp
Redistribute6> - BGP IPv6 redistribute table. The structure of
redistribute6
block is documented below. - redistributes
List<Bgp
Redistribute> - BGP IPv4 redistribute table. The structure of
redistribute
block is documented below. - router
Id String - Router ID.
- scan
Time Integer - Background scanner interval (sec), 0 to disable it.
- synchronization String
- Enable/disable only advertise routes from iBGP if routes present in an IGP. Valid values:
enable
,disable
. - tag
Resolve StringMode - Configure tag-match mode. Resolves BGP routes with other routes containing the same tag. Valid values:
disable
,preferred
,merge
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- vrf6s
List<Bgp
Vrf6> - BGP IPv6 VRF leaking table. The structure of
vrf6
block is documented below. - vrf
Leak6s List<BgpVrf Leak6> - BGP IPv6 VRF leaking table. The structure of
vrf_leak6
block is documented below. - vrf
Leaks List<BgpVrf Leak> - BGP VRF leaking table. The structure of
vrf_leak
block is documented below. - vrves
List<Bgp
Vrf> - BGP VRF leaking table. The structure of
vrf
block is documented below.
- additional
Path string - Enable/disable selection of BGP IPv4 additional paths. Valid values:
enable
,disable
. - additional
Path6 string - Enable/disable selection of BGP IPv6 additional paths. Valid values:
enable
,disable
. - additional
Path numberSelect - Number of additional paths to be selected for each IPv4 NLRI.
- additional
Path numberSelect6 - Number of additional paths to be selected for each IPv6 NLRI.
- additional
Path numberSelect Vpnv4 - Number of additional paths to be selected for each VPNv4 NLRI.
- additional
Path numberSelect Vpnv6 - Number of additional paths to be selected for each VPNv6 NLRI.
- additional
Path stringVpnv4 - Enable/disable selection of BGP VPNv4 additional paths. Valid values:
enable
,disable
. - additional
Path stringVpnv6 - Enable/disable selection of BGP VPNv6 additional paths. Valid values:
enable
,disable
. - admin
Distances BgpAdmin Distance[] - Administrative distance modifications. The structure of
admin_distance
block is documented below. - aggregate
Address6s BgpAggregate Address6[] - BGP IPv6 aggregate address table. The structure of
aggregate_address6
block is documented below. - aggregate
Addresses BgpAggregate Address[] - BGP aggregate address table. The structure of
aggregate_address
block is documented below. - always
Compare stringMed - Enable/disable always compare MED. Valid values:
enable
,disable
. - as number
- Router AS number, valid from 1 to 4294967295, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as_string
. - as
String string - Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP. Due to the data type change of API, for other versions of FortiOS, please check variable
as
. - bestpath
As stringPath Ignore - Enable/disable ignore AS path. Valid values:
enable
,disable
. - bestpath
Cmp stringConfed Aspath - Enable/disable compare federation AS path length. Valid values:
enable
,disable
. - bestpath
Cmp stringRouterid - Enable/disable compare router ID for identical EBGP paths. Valid values:
enable
,disable
. - bestpath
Med stringConfed - Enable/disable compare MED among confederation paths. Valid values:
enable
,disable
. - bestpath
Med stringMissing As Worst - Enable/disable treat missing MED as least preferred. Valid values:
enable
,disable
. - client
To stringClient Reflection - Enable/disable client-to-client route reflection. Valid values:
enable
,disable
. - cluster
Id string - Route reflector cluster ID.
- confederation
Identifier number - Confederation identifier.
- confederation
Peers BgpConfederation Peer[] - Confederation peers. The structure of
confederation_peers
block is documented below. - cross
Family stringConditional Adv - Enable/disable cross address family conditional advertisement. Valid values:
enable
,disable
. - dampening string
- Enable/disable route-flap dampening. Valid values:
enable
,disable
. - dampening
Max numberSuppress Time - Maximum minutes a route can be suppressed.
- dampening
Reachability numberHalf Life - Reachability half-life time for penalty (min).
- dampening
Reuse number - Threshold to reuse routes.
- dampening
Route stringMap - Criteria for dampening.
- dampening
Suppress number - Threshold to suppress routes.
- dampening
Unreachability numberHalf Life - Unreachability half-life time for penalty (min).
- default
Local numberPreference - Default local preference.
- deterministic
Med string - Enable/disable enforce deterministic comparison of MED. Valid values:
enable
,disable
. - distance
External number - Distance for routes external to the AS.
- distance
Internal number - Distance for routes internal to the AS.
- distance
Local number - Distance for routes local to the AS.
- dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- ebgp
Multipath string - Enable/disable EBGP multi-path. Valid values:
enable
,disable
. - enforce
First stringAs - Enable/disable enforce first AS for EBGP routes. Valid values:
enable
,disable
. - fast
External stringFailover - Enable/disable reset peer BGP session if link goes down. Valid values:
enable
,disable
. - get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- graceful
End stringOn Timer - Enable/disable to exit graceful restart on timer only. Valid values:
enable
,disable
. - graceful
Restart string - Enable/disable BGP graceful restart capabilities. Valid values:
enable
,disable
. - graceful
Restart numberTime - Time needed for neighbors to restart (sec).
- graceful
Stalepath numberTime - Time to hold stale paths of restarting neighbor (sec).
- graceful
Update numberDelay - Route advertisement/selection delay after restart (sec).
- holdtime
Timer number - Number of seconds to mark peer as dead.
- ibgp
Multipath string - Enable/disable IBGP multi-path. Valid values:
enable
,disable
.