1. Packages
  2. Fortios
  3. API Docs
  4. router
  5. getBgp
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.router.getBgp

Explore with Pulumi AI

Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

Use this data source to get information on fortios router bgp

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumi/fortios";

const sample1 = fortios.router.getBgp({});
export const output1 = sample1.then(sample1 => sample1.neighbors);
Copy
import pulumi
import pulumi_fortios as fortios

sample1 = fortios.router.get_bgp()
pulumi.export("output1", sample1.neighbors)
Copy
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 {
		sample1, err := router.LookupBgp(ctx, nil, nil)
		if err != nil {
			return err
		}
		ctx.Export("output1", sample1.Neighbors)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumi.Fortios;

return await Deployment.RunAsync(() => 
{
    var sample1 = Fortios.Router.GetBgp.Invoke();

    return new Dictionary<string, object?>
    {
        ["output1"] = sample1.Apply(getBgpResult => getBgpResult.Neighbors),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.router.RouterFunctions;
import com.pulumi.fortios.router.inputs.GetBgpArgs;
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) {
        final var sample1 = RouterFunctions.getBgp();

        ctx.export("output1", sample1.applyValue(getBgpResult -> getBgpResult.neighbors()));
    }
}
Copy
variables:
  sample1:
    fn::invoke:
      Function: fortios:router:getBgp
      Arguments: {}
outputs:
  output1: ${sample1.neighbors}
Copy

Using getBgp

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getBgp(args: GetBgpArgs, opts?: InvokeOptions): Promise<GetBgpResult>
function getBgpOutput(args: GetBgpOutputArgs, opts?: InvokeOptions): Output<GetBgpResult>
Copy
def get_bgp(vdomparam: Optional[str] = None,
            opts: Optional[InvokeOptions] = None) -> GetBgpResult
def get_bgp_output(vdomparam: Optional[pulumi.Input[str]] = None,
            opts: Optional[InvokeOptions] = None) -> Output[GetBgpResult]
Copy
func LookupBgp(ctx *Context, args *LookupBgpArgs, opts ...InvokeOption) (*LookupBgpResult, error)
func LookupBgpOutput(ctx *Context, args *LookupBgpOutputArgs, opts ...InvokeOption) LookupBgpResultOutput
Copy

> Note: This function is named LookupBgp in the Go SDK.

public static class GetBgp 
{
    public static Task<GetBgpResult> InvokeAsync(GetBgpArgs args, InvokeOptions? opts = null)
    public static Output<GetBgpResult> Invoke(GetBgpInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetBgpResult> getBgp(GetBgpArgs args, InvokeOptions options)
public static Output<GetBgpResult> getBgp(GetBgpArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: fortios:router/getBgp:getBgp
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the data source 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.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the data source 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.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the data source 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.
vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the data source 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.
vdomparam Changes to this property will trigger replacement. str
Specifies the vdom to which the data source 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.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the data source 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.

getBgp Result

The following output properties are available:

AdditionalPath string
Enable/disable IPv4 additional-path capability.
AdditionalPath6 string
Enable/disable IPv6 additional-path capability.
AdditionalPathSelect int
Number of additional paths to be selected for each IPv4 NLRI.
AdditionalPathSelect6 int
Number of additional paths to be selected for each IPv6 NLRI.
AdditionalPathSelectVpnv4 int
Number of additional paths to be selected for each VPNv4 NLRI.
AdditionalPathSelectVpnv6 int
Number of additional paths to be selected for each VPNv6 NLRI.
AdditionalPathVpnv4 string
Enable/disable VPNv4 additional-path capability.
AdditionalPathVpnv6 string
Enable/disable VPNv6 additional-path capability.
AdminDistances List<Pulumiverse.Fortios.Router.Outputs.GetBgpAdminDistance>
Administrative distance modifications. The structure of admin_distance block is documented below.
AggregateAddress6s List<Pulumiverse.Fortios.Router.Outputs.GetBgpAggregateAddress6>
BGP IPv6 aggregate address table. The structure of aggregate_address6 block is documented below.
AggregateAddresses List<Pulumiverse.Fortios.Router.Outputs.GetBgpAggregateAddress>
BGP aggregate address table. The structure of aggregate_address block is documented below.
AlwaysCompareMed string
Enable/disable always compare MED.
As int
Router AS number, valid from 1 to 4294967295, 0 to disable BGP.
AsString string
Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP.
BestpathAsPathIgnore string
Enable/disable ignore AS path.
BestpathCmpConfedAspath string
Enable/disable compare federation AS path length.
BestpathCmpRouterid string
Enable/disable compare router ID for identical EBGP paths.
BestpathMedConfed string
Enable/disable compare MED among confederation paths.
BestpathMedMissingAsWorst string
Enable/disable treat missing MED as least preferred.
ClientToClientReflection string
Enable/disable client-to-client route reflection.
ClusterId string
Route reflector cluster ID.
ConfederationIdentifier int
Confederation identifier.
ConfederationPeers List<Pulumiverse.Fortios.Router.Outputs.GetBgpConfederationPeer>
Confederation peers. The structure of confederation_peers block is documented below.
CrossFamilyConditionalAdv string
Enable/disable cross address family conditional advertisement.
Dampening string
Enable/disable route-flap dampening.
DampeningMaxSuppressTime int
Maximum minutes a route can be suppressed.
DampeningReachabilityHalfLife int
Reachability half-life time for penalty (min).
DampeningReuse int
Threshold to reuse routes.
DampeningRouteMap string
Criteria for dampening.
DampeningSuppress int
Threshold to suppress routes.
DampeningUnreachabilityHalfLife int
Unreachability half-life time for penalty (min).
DefaultLocalPreference int
Default local preference.
DeterministicMed string
Enable/disable enforce deterministic comparison of MED.
DistanceExternal int
Distance for routes external to the AS.
DistanceInternal int
Distance for routes internal to the AS.
DistanceLocal int
Distance for routes local to the AS.
EbgpMultipath string
Enable/disable EBGP multi-path.
EnforceFirstAs string
Enable/disable enforce first AS for EBGP routes.
FastExternalFailover string
Enable/disable reset peer BGP session if link goes down.
GracefulEndOnTimer string
Enable/disable to exit graceful restart on timer only.
GracefulRestart string
Enable/disable BGP graceful restart capabilities.
GracefulRestartTime int
Time needed for neighbors to restart (sec).
GracefulStalepathTime int
Time to hold stale paths of restarting neighbor (sec).
GracefulUpdateDelay int
Route advertisement/selection delay after restart (sec).
HoldtimeTimer int
Interval (sec) before peer considered dead.
IbgpMultipath string
Enable/disable IBGP multi-path.
Id string
The provider-assigned unique ID for this managed resource.
IgnoreOptionalCapability string
Don't send unknown optional capability notification message
KeepaliveTimer int
Frequency to send keep alive requests.
LogNeighbourChanges string
Enable logging of BGP neighbour's changes
MultipathRecursiveDistance string
Enable/disable use of recursive distance to select multipath.
NeighborGroups List<Pulumiverse.Fortios.Router.Outputs.GetBgpNeighborGroup>
Neighbor group name.
NeighborRange6s List<Pulumiverse.Fortios.Router.Outputs.GetBgpNeighborRange6>
BGP IPv6 neighbor range table. The structure of neighbor_range6 block is documented below.
NeighborRanges List<Pulumiverse.Fortios.Router.Outputs.GetBgpNeighborRange>
BGP neighbor range table. The structure of neighbor_range block is documented below.
Neighbors List<Pulumiverse.Fortios.Router.Outputs.GetBgpNeighbor>
BGP neighbor table. The structure of neighbor block is documented below.
Network6s List<Pulumiverse.Fortios.Router.Outputs.GetBgpNetwork6>
BGP IPv6 network table. The structure of network6 block is documented below.
NetworkImportCheck string
Configure insurance of BGP network route existence in IGP.
Networks List<Pulumiverse.Fortios.Router.Outputs.GetBgpNetwork>
BGP network table. The structure of network block is documented below.
RecursiveInheritPriority string
Enable/disable priority inheritance for recursive resolution.
RecursiveNextHop string
Enable/disable recursive resolution of next-hop using BGP route.
Redistribute6s List<Pulumiverse.Fortios.Router.Outputs.GetBgpRedistribute6>
BGP IPv6 redistribute table. The structure of redistribute6 block is documented below.
Redistributes List<Pulumiverse.Fortios.Router.Outputs.GetBgpRedistribute>
BGP IPv4 redistribute table. The structure of redistribute block is documented below.
RouterId string
Router ID.
ScanTime int
Background scanner interval (sec), 0 to disable it.
Synchronization string
Enable/disable only advertise routes from iBGP if routes present in an IGP.
TagResolveMode string
Configure tag-match mode. Resolves BGP routes with other routes containing the same tag.
Vrf6s List<Pulumiverse.Fortios.Router.Outputs.GetBgpVrf6>
BGP IPv6 VRF leaking table. The structure of vrf6 block is documented below.
VrfLeak6s List<Pulumiverse.Fortios.Router.Outputs.GetBgpVrfLeak6>
BGP IPv6 VRF leaking table. The structure of vrf_leak6 block is documented below.
VrfLeaks List<Pulumiverse.Fortios.Router.Outputs.GetBgpVrfLeak>
BGP VRF leaking table. The structure of vrf_leak block is documented below.
Vrves List<Pulumiverse.Fortios.Router.Outputs.GetBgpVrf>
Target VRF ID <0 - 31>.
Vdomparam string
AdditionalPath string
Enable/disable IPv4 additional-path capability.
AdditionalPath6 string
Enable/disable IPv6 additional-path capability.
AdditionalPathSelect int
Number of additional paths to be selected for each IPv4 NLRI.
AdditionalPathSelect6 int
Number of additional paths to be selected for each IPv6 NLRI.
AdditionalPathSelectVpnv4 int
Number of additional paths to be selected for each VPNv4 NLRI.
AdditionalPathSelectVpnv6 int
Number of additional paths to be selected for each VPNv6 NLRI.
AdditionalPathVpnv4 string
Enable/disable VPNv4 additional-path capability.
AdditionalPathVpnv6 string
Enable/disable VPNv6 additional-path capability.
AdminDistances []GetBgpAdminDistance
Administrative distance modifications. The structure of admin_distance block is documented below.
AggregateAddress6s []GetBgpAggregateAddress6
BGP IPv6 aggregate address table. The structure of aggregate_address6 block is documented below.
AggregateAddresses []GetBgpAggregateAddress
BGP aggregate address table. The structure of aggregate_address block is documented below.
AlwaysCompareMed string
Enable/disable always compare MED.
As int
Router AS number, valid from 1 to 4294967295, 0 to disable BGP.
AsString string
Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP.
BestpathAsPathIgnore string
Enable/disable ignore AS path.
BestpathCmpConfedAspath string
Enable/disable compare federation AS path length.
BestpathCmpRouterid string
Enable/disable compare router ID for identical EBGP paths.
BestpathMedConfed string
Enable/disable compare MED among confederation paths.
BestpathMedMissingAsWorst string
Enable/disable treat missing MED as least preferred.
ClientToClientReflection string
Enable/disable client-to-client route reflection.
ClusterId string
Route reflector cluster ID.
ConfederationIdentifier int
Confederation identifier.
ConfederationPeers []GetBgpConfederationPeer
Confederation peers. The structure of confederation_peers block is documented below.
CrossFamilyConditionalAdv string
Enable/disable cross address family conditional advertisement.
Dampening string
Enable/disable route-flap dampening.
DampeningMaxSuppressTime int
Maximum minutes a route can be suppressed.
DampeningReachabilityHalfLife int
Reachability half-life time for penalty (min).
DampeningReuse int
Threshold to reuse routes.
DampeningRouteMap string
Criteria for dampening.
DampeningSuppress int
Threshold to suppress routes.
DampeningUnreachabilityHalfLife int
Unreachability half-life time for penalty (min).
DefaultLocalPreference int
Default local preference.
DeterministicMed string
Enable/disable enforce deterministic comparison of MED.
DistanceExternal int
Distance for routes external to the AS.
DistanceInternal int
Distance for routes internal to the AS.
DistanceLocal int
Distance for routes local to the AS.
EbgpMultipath string
Enable/disable EBGP multi-path.
EnforceFirstAs string
Enable/disable enforce first AS for EBGP routes.
FastExternalFailover string
Enable/disable reset peer BGP session if link goes down.
GracefulEndOnTimer string
Enable/disable to exit graceful restart on timer only.
GracefulRestart string
Enable/disable BGP graceful restart capabilities.
GracefulRestartTime int
Time needed for neighbors to restart (sec).
GracefulStalepathTime int
Time to hold stale paths of restarting neighbor (sec).
GracefulUpdateDelay int
Route advertisement/selection delay after restart (sec).
HoldtimeTimer int
Interval (sec) before peer considered dead.
IbgpMultipath string
Enable/disable IBGP multi-path.
Id string
The provider-assigned unique ID for this managed resource.
IgnoreOptionalCapability string
Don't send unknown optional capability notification message
KeepaliveTimer int
Frequency to send keep alive requests.
LogNeighbourChanges string
Enable logging of BGP neighbour's changes
MultipathRecursiveDistance string
Enable/disable use of recursive distance to select multipath.
NeighborGroups []GetBgpNeighborGroup
Neighbor group name.
NeighborRange6s []GetBgpNeighborRange6
BGP IPv6 neighbor range table. The structure of neighbor_range6 block is documented below.
NeighborRanges []GetBgpNeighborRange
BGP neighbor range table. The structure of neighbor_range block is documented below.
Neighbors []GetBgpNeighbor
BGP neighbor table. The structure of neighbor block is documented below.
Network6s []GetBgpNetwork6
BGP IPv6 network table. The structure of network6 block is documented below.
NetworkImportCheck string
Configure insurance of BGP network route existence in IGP.
Networks []GetBgpNetwork
BGP network table. The structure of network block is documented below.
RecursiveInheritPriority string
Enable/disable priority inheritance for recursive resolution.
RecursiveNextHop string
Enable/disable recursive resolution of next-hop using BGP route.
Redistribute6s []GetBgpRedistribute6
BGP IPv6 redistribute table. The structure of redistribute6 block is documented below.
Redistributes []GetBgpRedistribute
BGP IPv4 redistribute table. The structure of redistribute block is documented below.
RouterId string
Router ID.
ScanTime int
Background scanner interval (sec), 0 to disable it.
Synchronization string
Enable/disable only advertise routes from iBGP if routes present in an IGP.
TagResolveMode string
Configure tag-match mode. Resolves BGP routes with other routes containing the same tag.
Vrf6s []GetBgpVrf6
BGP IPv6 VRF leaking table. The structure of vrf6 block is documented below.
VrfLeak6s []GetBgpVrfLeak6
BGP IPv6 VRF leaking table. The structure of vrf_leak6 block is documented below.
VrfLeaks []GetBgpVrfLeak
BGP VRF leaking table. The structure of vrf_leak block is documented below.
Vrves []GetBgpVrf
Target VRF ID <0 - 31>.
Vdomparam string
additionalPath String
Enable/disable IPv4 additional-path capability.
additionalPath6 String
Enable/disable IPv6 additional-path capability.
additionalPathSelect Integer
Number of additional paths to be selected for each IPv4 NLRI.
additionalPathSelect6 Integer
Number of additional paths to be selected for each IPv6 NLRI.
additionalPathSelectVpnv4 Integer
Number of additional paths to be selected for each VPNv4 NLRI.
additionalPathSelectVpnv6 Integer
Number of additional paths to be selected for each VPNv6 NLRI.
additionalPathVpnv4 String
Enable/disable VPNv4 additional-path capability.
additionalPathVpnv6 String
Enable/disable VPNv6 additional-path capability.
adminDistances List<GetBgpAdminDistance>
Administrative distance modifications. The structure of admin_distance block is documented below.
aggregateAddress6s List<GetBgpAggregateAddress6>
BGP IPv6 aggregate address table. The structure of aggregate_address6 block is documented below.
aggregateAddresses List<GetBgpAggregateAddress>
BGP aggregate address table. The structure of aggregate_address block is documented below.
alwaysCompareMed String
Enable/disable always compare MED.
as Integer
Router AS number, valid from 1 to 4294967295, 0 to disable BGP.
asString String
Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP.
bestpathAsPathIgnore String
Enable/disable ignore AS path.
bestpathCmpConfedAspath String
Enable/disable compare federation AS path length.
bestpathCmpRouterid String
Enable/disable compare router ID for identical EBGP paths.
bestpathMedConfed String
Enable/disable compare MED among confederation paths.
bestpathMedMissingAsWorst String
Enable/disable treat missing MED as least preferred.
clientToClientReflection String
Enable/disable client-to-client route reflection.
clusterId String
Route reflector cluster ID.
confederationIdentifier Integer
Confederation identifier.
confederationPeers List<GetBgpConfederationPeer>
Confederation peers. The structure of confederation_peers block is documented below.
crossFamilyConditionalAdv String
Enable/disable cross address family conditional advertisement.
dampening String
Enable/disable route-flap dampening.
dampeningMaxSuppressTime Integer
Maximum minutes a route can be suppressed.
dampeningReachabilityHalfLife Integer
Reachability half-life time for penalty (min).
dampeningReuse Integer
Threshold to reuse routes.
dampeningRouteMap String
Criteria for dampening.
dampeningSuppress Integer
Threshold to suppress routes.
dampeningUnreachabilityHalfLife Integer
Unreachability half-life time for penalty (min).
defaultLocalPreference Integer
Default local preference.
deterministicMed String
Enable/disable enforce deterministic comparison of MED.
distanceExternal Integer
Distance for routes external to the AS.
distanceInternal Integer
Distance for routes internal to the AS.
distanceLocal Integer
Distance for routes local to the AS.
ebgpMultipath String
Enable/disable EBGP multi-path.
enforceFirstAs String
Enable/disable enforce first AS for EBGP routes.
fastExternalFailover String
Enable/disable reset peer BGP session if link goes down.
gracefulEndOnTimer String
Enable/disable to exit graceful restart on timer only.
gracefulRestart String
Enable/disable BGP graceful restart capabilities.
gracefulRestartTime Integer
Time needed for neighbors to restart (sec).
gracefulStalepathTime Integer
Time to hold stale paths of restarting neighbor (sec).
gracefulUpdateDelay Integer
Route advertisement/selection delay after restart (sec).
holdtimeTimer Integer
Interval (sec) before peer considered dead.
ibgpMultipath String
Enable/disable IBGP multi-path.
id String
The provider-assigned unique ID for this managed resource.
ignoreOptionalCapability String
Don't send unknown optional capability notification message
keepaliveTimer Integer
Frequency to send keep alive requests.
logNeighbourChanges String
Enable logging of BGP neighbour's changes
multipathRecursiveDistance String
Enable/disable use of recursive distance to select multipath.
neighborGroups List<GetBgpNeighborGroup>
Neighbor group name.
neighborRange6s List<GetBgpNeighborRange6>
BGP IPv6 neighbor range table. The structure of neighbor_range6 block is documented below.
neighborRanges List<GetBgpNeighborRange>
BGP neighbor range table. The structure of neighbor_range block is documented below.
neighbors List<GetBgpNeighbor>
BGP neighbor table. The structure of neighbor block is documented below.
network6s List<GetBgpNetwork6>
BGP IPv6 network table. The structure of network6 block is documented below.
networkImportCheck String
Configure insurance of BGP network route existence in IGP.
networks List<GetBgpNetwork>
BGP network table. The structure of network block is documented below.
recursiveInheritPriority String
Enable/disable priority inheritance for recursive resolution.
recursiveNextHop String
Enable/disable recursive resolution of next-hop using BGP route.
redistribute6s List<GetBgpRedistribute6>
BGP IPv6 redistribute table. The structure of redistribute6 block is documented below.
redistributes List<GetBgpRedistribute>
BGP IPv4 redistribute table. The structure of redistribute block is documented below.
routerId String
Router ID.
scanTime Integer
Background scanner interval (sec), 0 to disable it.
synchronization String
Enable/disable only advertise routes from iBGP if routes present in an IGP.
tagResolveMode String
Configure tag-match mode. Resolves BGP routes with other routes containing the same tag.
vrf6s List<GetBgpVrf6>
BGP IPv6 VRF leaking table. The structure of vrf6 block is documented below.
vrfLeak6s List<GetBgpVrfLeak6>
BGP IPv6 VRF leaking table. The structure of vrf_leak6 block is documented below.
vrfLeaks List<GetBgpVrfLeak>
BGP VRF leaking table. The structure of vrf_leak block is documented below.
vrves List<GetBgpVrf>
Target VRF ID <0 - 31>.
vdomparam String
additionalPath string
Enable/disable IPv4 additional-path capability.
additionalPath6 string
Enable/disable IPv6 additional-path capability.
additionalPathSelect number
Number of additional paths to be selected for each IPv4 NLRI.
additionalPathSelect6 number
Number of additional paths to be selected for each IPv6 NLRI.
additionalPathSelectVpnv4 number
Number of additional paths to be selected for each VPNv4 NLRI.
additionalPathSelectVpnv6 number
Number of additional paths to be selected for each VPNv6 NLRI.
additionalPathVpnv4 string
Enable/disable VPNv4 additional-path capability.
additionalPathVpnv6 string
Enable/disable VPNv6 additional-path capability.
adminDistances GetBgpAdminDistance[]
Administrative distance modifications. The structure of admin_distance block is documented below.
aggregateAddress6s GetBgpAggregateAddress6[]
BGP IPv6 aggregate address table. The structure of aggregate_address6 block is documented below.
aggregateAddresses GetBgpAggregateAddress[]
BGP aggregate address table. The structure of aggregate_address block is documented below.
alwaysCompareMed string
Enable/disable always compare MED.
as number
Router AS number, valid from 1 to 4294967295, 0 to disable BGP.
asString string
Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP.
bestpathAsPathIgnore string
Enable/disable ignore AS path.
bestpathCmpConfedAspath string
Enable/disable compare federation AS path length.
bestpathCmpRouterid string
Enable/disable compare router ID for identical EBGP paths.
bestpathMedConfed string
Enable/disable compare MED among confederation paths.
bestpathMedMissingAsWorst string
Enable/disable treat missing MED as least preferred.
clientToClientReflection string
Enable/disable client-to-client route reflection.
clusterId string
Route reflector cluster ID.
confederationIdentifier number
Confederation identifier.
confederationPeers GetBgpConfederationPeer[]
Confederation peers. The structure of confederation_peers block is documented below.
crossFamilyConditionalAdv string
Enable/disable cross address family conditional advertisement.
dampening string
Enable/disable route-flap dampening.
dampeningMaxSuppressTime number
Maximum minutes a route can be suppressed.
dampeningReachabilityHalfLife number
Reachability half-life time for penalty (min).
dampeningReuse number
Threshold to reuse routes.
dampeningRouteMap string
Criteria for dampening.
dampeningSuppress number
Threshold to suppress routes.
dampeningUnreachabilityHalfLife number
Unreachability half-life time for penalty (min).
defaultLocalPreference number
Default local preference.
deterministicMed string
Enable/disable enforce deterministic comparison of MED.
distanceExternal number
Distance for routes external to the AS.
distanceInternal number
Distance for routes internal to the AS.
distanceLocal number
Distance for routes local to the AS.
ebgpMultipath string
Enable/disable EBGP multi-path.
enforceFirstAs string
Enable/disable enforce first AS for EBGP routes.
fastExternalFailover string
Enable/disable reset peer BGP session if link goes down.
gracefulEndOnTimer string
Enable/disable to exit graceful restart on timer only.
gracefulRestart string
Enable/disable BGP graceful restart capabilities.
gracefulRestartTime number
Time needed for neighbors to restart (sec).
gracefulStalepathTime number
Time to hold stale paths of restarting neighbor (sec).
gracefulUpdateDelay number
Route advertisement/selection delay after restart (sec).
holdtimeTimer number
Interval (sec) before peer considered dead.
ibgpMultipath string
Enable/disable IBGP multi-path.
id string
The provider-assigned unique ID for this managed resource.
ignoreOptionalCapability string
Don't send unknown optional capability notification message
keepaliveTimer number
Frequency to send keep alive requests.
logNeighbourChanges string
Enable logging of BGP neighbour's changes
multipathRecursiveDistance string
Enable/disable use of recursive distance to select multipath.
neighborGroups GetBgpNeighborGroup[]
Neighbor group name.
neighborRange6s GetBgpNeighborRange6[]
BGP IPv6 neighbor range table. The structure of neighbor_range6 block is documented below.
neighborRanges GetBgpNeighborRange[]
BGP neighbor range table. The structure of neighbor_range block is documented below.
neighbors GetBgpNeighbor[]
BGP neighbor table. The structure of neighbor block is documented below.
network6s GetBgpNetwork6[]
BGP IPv6 network table. The structure of network6 block is documented below.
networkImportCheck string
Configure insurance of BGP network route existence in IGP.
networks GetBgpNetwork[]
BGP network table. The structure of network block is documented below.
recursiveInheritPriority string
Enable/disable priority inheritance for recursive resolution.
recursiveNextHop string
Enable/disable recursive resolution of next-hop using BGP route.
redistribute6s GetBgpRedistribute6[]
BGP IPv6 redistribute table. The structure of redistribute6 block is documented below.
redistributes GetBgpRedistribute[]
BGP IPv4 redistribute table. The structure of redistribute block is documented below.
routerId string
Router ID.
scanTime number
Background scanner interval (sec), 0 to disable it.
synchronization string
Enable/disable only advertise routes from iBGP if routes present in an IGP.
tagResolveMode string
Configure tag-match mode. Resolves BGP routes with other routes containing the same tag.
vrf6s GetBgpVrf6[]
BGP IPv6 VRF leaking table. The structure of vrf6 block is documented below.
vrfLeak6s GetBgpVrfLeak6[]
BGP IPv6 VRF leaking table. The structure of vrf_leak6 block is documented below.
vrfLeaks GetBgpVrfLeak[]
BGP VRF leaking table. The structure of vrf_leak block is documented below.
vrves GetBgpVrf[]
Target VRF ID <0 - 31>.
vdomparam string
additional_path str
Enable/disable IPv4 additional-path capability.
additional_path6 str
Enable/disable IPv6 additional-path capability.
additional_path_select int
Number of additional paths to be selected for each IPv4 NLRI.
additional_path_select6 int
Number of additional paths to be selected for each IPv6 NLRI.
additional_path_select_vpnv4 int
Number of additional paths to be selected for each VPNv4 NLRI.
additional_path_select_vpnv6 int
Number of additional paths to be selected for each VPNv6 NLRI.
additional_path_vpnv4 str
Enable/disable VPNv4 additional-path capability.
additional_path_vpnv6 str
Enable/disable VPNv6 additional-path capability.
admin_distances Sequence[GetBgpAdminDistance]
Administrative distance modifications. The structure of admin_distance block is documented below.
aggregate_address6s Sequence[GetBgpAggregateAddress6]
BGP IPv6 aggregate address table. The structure of aggregate_address6 block is documented below.
aggregate_addresses Sequence[GetBgpAggregateAddress]
BGP aggregate address table. The structure of aggregate_address block is documented below.
always_compare_med str
Enable/disable always compare MED.
as_ int
Router AS number, valid from 1 to 4294967295, 0 to disable BGP.
as_string str
Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP.
bestpath_as_path_ignore str
Enable/disable ignore AS path.
bestpath_cmp_confed_aspath str
Enable/disable compare federation AS path length.
bestpath_cmp_routerid str
Enable/disable compare router ID for identical EBGP paths.
bestpath_med_confed str
Enable/disable compare MED among confederation paths.
bestpath_med_missing_as_worst str
Enable/disable treat missing MED as least preferred.
client_to_client_reflection str
Enable/disable client-to-client route reflection.
cluster_id str
Route reflector cluster ID.
confederation_identifier int
Confederation identifier.
confederation_peers Sequence[GetBgpConfederationPeer]
Confederation peers. The structure of confederation_peers block is documented below.
cross_family_conditional_adv str
Enable/disable cross address family conditional advertisement.
dampening str
Enable/disable route-flap dampening.
dampening_max_suppress_time int
Maximum minutes a route can be suppressed.
dampening_reachability_half_life int
Reachability half-life time for penalty (min).
dampening_reuse int
Threshold to reuse routes.
dampening_route_map str
Criteria for dampening.
dampening_suppress int
Threshold to suppress routes.
dampening_unreachability_half_life int
Unreachability half-life time for penalty (min).
default_local_preference int
Default local preference.
deterministic_med str
Enable/disable enforce deterministic comparison of MED.
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.
ebgp_multipath str
Enable/disable EBGP multi-path.
enforce_first_as str
Enable/disable enforce first AS for EBGP routes.
fast_external_failover str
Enable/disable reset peer BGP session if link goes down.
graceful_end_on_timer str
Enable/disable to exit graceful restart on timer only.
graceful_restart str
Enable/disable BGP graceful restart capabilities.
graceful_restart_time int
Time needed for neighbors to restart (sec).
graceful_stalepath_time int
Time to hold stale paths of restarting neighbor (sec).
graceful_update_delay int
Route advertisement/selection delay after restart (sec).
holdtime_timer int
Interval (sec) before peer considered dead.
ibgp_multipath str
Enable/disable IBGP multi-path.
id str
The provider-assigned unique ID for this managed resource.
ignore_optional_capability str
Don't send unknown optional capability notification message
keepalive_timer int
Frequency to send keep alive requests.
log_neighbour_changes str
Enable logging of BGP neighbour's changes
multipath_recursive_distance str
Enable/disable use of recursive distance to select multipath.
neighbor_groups Sequence[GetBgpNeighborGroup]
Neighbor group name.
neighbor_range6s Sequence[GetBgpNeighborRange6]
BGP IPv6 neighbor range table. The structure of neighbor_range6 block is documented below.
neighbor_ranges Sequence[GetBgpNeighborRange]
BGP neighbor range table. The structure of neighbor_range block is documented below.
neighbors Sequence[GetBgpNeighbor]
BGP neighbor table. The structure of neighbor block is documented below.
network6s Sequence[GetBgpNetwork6]
BGP IPv6 network table. The structure of network6 block is documented below.
network_import_check str
Configure insurance of BGP network route existence in IGP.
networks Sequence[GetBgpNetwork]
BGP network table. The structure of network block is documented below.
recursive_inherit_priority str
Enable/disable priority inheritance for recursive resolution.
recursive_next_hop str
Enable/disable recursive resolution of next-hop using BGP route.
redistribute6s Sequence[GetBgpRedistribute6]
BGP IPv6 redistribute table. The structure of redistribute6 block is documented below.
redistributes Sequence[GetBgpRedistribute]
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.
tag_resolve_mode str
Configure tag-match mode. Resolves BGP routes with other routes containing the same tag.
vrf6s Sequence[GetBgpVrf6]
BGP IPv6 VRF leaking table. The structure of vrf6 block is documented below.
vrf_leak6s Sequence[GetBgpVrfLeak6]
BGP IPv6 VRF leaking table. The structure of vrf_leak6 block is documented below.
vrf_leaks Sequence[GetBgpVrfLeak]
BGP VRF leaking table. The structure of vrf_leak block is documented below.
vrves Sequence[GetBgpVrf]
Target VRF ID <0 - 31>.
vdomparam str
additionalPath String
Enable/disable IPv4 additional-path capability.
additionalPath6 String
Enable/disable IPv6 additional-path capability.
additionalPathSelect Number
Number of additional paths to be selected for each IPv4 NLRI.
additionalPathSelect6 Number
Number of additional paths to be selected for each IPv6 NLRI.
additionalPathSelectVpnv4 Number
Number of additional paths to be selected for each VPNv4 NLRI.
additionalPathSelectVpnv6 Number
Number of additional paths to be selected for each VPNv6 NLRI.
additionalPathVpnv4 String
Enable/disable VPNv4 additional-path capability.
additionalPathVpnv6 String
Enable/disable VPNv6 additional-path capability.
adminDistances List<Property Map>
Administrative distance modifications. The structure of admin_distance block is documented below.
aggregateAddress6s List<Property Map>
BGP IPv6 aggregate address table. The structure of aggregate_address6 block is documented below.
aggregateAddresses List<Property Map>
BGP aggregate address table. The structure of aggregate_address block is documented below.
alwaysCompareMed String
Enable/disable always compare MED.
as Number
Router AS number, valid from 1 to 4294967295, 0 to disable BGP.
asString String
Router AS number, asplain/asdot/asdot+ format, 0 to disable BGP.
bestpathAsPathIgnore String
Enable/disable ignore AS path.
bestpathCmpConfedAspath String
Enable/disable compare federation AS path length.
bestpathCmpRouterid String
Enable/disable compare router ID for identical EBGP paths.
bestpathMedConfed String
Enable/disable compare MED among confederation paths.
bestpathMedMissingAsWorst String
Enable/disable treat missing MED as least preferred.
clientToClientReflection String
Enable/disable client-to-client route reflection.
clusterId String
Route reflector cluster ID.
confederationIdentifier Number
Confederation identifier.
confederationPeers List<Property Map>
Confederation peers. The structure of confederation_peers block is documented below.
crossFamilyConditionalAdv String
Enable/disable cross address family conditional advertisement.
dampening String
Enable/disable route-flap dampening.
dampeningMaxSuppressTime Number
Maximum minutes a route can be suppressed.
dampeningReachabilityHalfLife Number
Reachability half-life time for penalty (min).
dampeningReuse Number
Threshold to reuse routes.
dampeningRouteMap String
Criteria for dampening.
dampeningSuppress Number
Threshold to suppress routes.
dampeningUnreachabilityHalfLife Number
Unreachability half-life time for penalty (min).
defaultLocalPreference Number
Default local preference.
deterministicMed String
Enable/disable enforce deterministic comparison of MED.
distanceExternal Number
Distance for routes external to the AS.
distanceInternal Number
Distance for routes internal to the AS.
distanceLocal Number
Distance for routes local to the AS.
ebgpMultipath String
Enable/disable EBGP multi-path.
enforceFirstAs String
Enable/disable enforce first AS for EBGP routes.
fastExternalFailover String
Enable/disable reset peer BGP session if link goes down.
gracefulEndOnTimer String
Enable/disable to exit graceful restart on timer only.
gracefulRestart String
Enable/disable BGP graceful restart capabilities.
gracefulRestartTime Number
Time needed for neighbors to restart (sec).
gracefulStalepathTime Number
Time to hold stale paths of restarting neighbor (sec).
gracefulUpdateDelay Number
Route advertisement/selection delay after restart (sec).
holdtimeTimer Number
Interval (sec) before peer considered dead.
ibgpMultipath String
Enable/disable IBGP multi-path.
id String
The provider-assigned unique ID for this managed resource.
ignoreOptionalCapability String
Don't send unknown optional capability notification message
keepaliveTimer Number
Frequency to send keep alive requests.
logNeighbourChanges String
Enable logging of BGP neighbour's changes
multipathRecursiveDistance String
Enable/disable use of recursive distance to select multipath.
neighborGroups List<Property Map>
Neighbor group name.
neighborRange6s List<Property Map>
BGP IPv6 neighbor range table. The structure of neighbor_range6 block is documented below.
neighborRanges 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.
networkImportCheck String
Configure insurance of BGP network route existence in IGP.
networks List<Property Map>
BGP network table. The structure of network block is documented below.
recursiveInheritPriority String
Enable/disable priority inheritance for recursive resolution.
recursiveNextHop String
Enable/disable recursive resolution of next-hop using BGP route.
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.
routerId String
Router ID.
scanTime Number
Background scanner interval (sec), 0 to disable it.
synchronization String
Enable/disable only advertise routes from iBGP if routes present in an IGP.
tagResolveMode String
Configure tag-match mode. Resolves BGP routes with other routes containing the same tag.
vrf6s List<Property Map>
BGP IPv6 VRF leaking table. The structure of vrf6 block is documented below.
vrfLeak6s List<Property Map>
BGP IPv6 VRF leaking table. The structure of vrf_leak6 block is documented below.
vrfLeaks List<Property Map>
BGP VRF leaking table. The structure of vrf_leak block is documented below.
vrves List<Property Map>
Target VRF ID <0 - 31>.
vdomparam String

Supporting Types

GetBgpAdminDistance

Distance This property is required. int
Administrative distance to apply (1 - 255).
Id This property is required. int
ID.
NeighbourPrefix This property is required. string
Neighbor address prefix.
RouteList This property is required. string
Access list of routes to apply new distance to.
Distance This property is required. int
Administrative distance to apply (1 - 255).
Id This property is required. int
ID.
NeighbourPrefix This property is required. string
Neighbor address prefix.
RouteList This property is required. string
Access list of routes to apply new distance to.
distance This property is required. Integer
Administrative distance to apply (1 - 255).
id This property is required. Integer
ID.
neighbourPrefix This property is required. String
Neighbor address prefix.
routeList This property is required. String
Access list of routes to apply new distance to.
distance This property is required. number
Administrative distance to apply (1 - 255).
id This property is required. number
ID.
neighbourPrefix This property is required. string
Neighbor address prefix.
routeList This property is required. string
Access list of routes to apply new distance to.
distance This property is required. int
Administrative distance to apply (1 - 255).
id This property is required. int
ID.
neighbour_prefix This property is required. str
Neighbor address prefix.
route_list This property is required. str
Access list of routes to apply new distance to.
distance This property is required. Number
Administrative distance to apply (1 - 255).
id This property is required. Number
ID.
neighbourPrefix This property is required. String
Neighbor address prefix.
routeList This property is required. String
Access list of routes to apply new distance to.

GetBgpAggregateAddress

AsSet This property is required. string
Enable/disable generate AS set path information.
Id This property is required. int
ID.
Prefix This property is required. string
Network prefix.
SummaryOnly This property is required. string
Enable/disable filter more specific routes from updates.
AsSet This property is required. string
Enable/disable generate AS set path information.
Id This property is required. int
ID.
Prefix This property is required. string
Network prefix.
SummaryOnly This property is required. string
Enable/disable filter more specific routes from updates.
asSet This property is required. String
Enable/disable generate AS set path information.
id This property is required. Integer
ID.
prefix This property is required. String
Network prefix.
summaryOnly This property is required. String
Enable/disable filter more specific routes from updates.
asSet This property is required. string
Enable/disable generate AS set path information.
id This property is required. number
ID.
prefix This property is required. string
Network prefix.
summaryOnly This property is required. string
Enable/disable filter more specific routes from updates.
as_set This property is required. str
Enable/disable generate AS set path information.
id This property is required. int
ID.
prefix This property is required. str
Network prefix.
summary_only This property is required. str
Enable/disable filter more specific routes from updates.
asSet This property is required. String
Enable/disable generate AS set path information.
id This property is required. Number
ID.
prefix This property is required. String
Network prefix.
summaryOnly This property is required. String
Enable/disable filter more specific routes from updates.

GetBgpAggregateAddress6

AsSet This property is required. string
Enable/disable generate AS set path information.
Id This property is required. int
ID.
Prefix6 This property is required. string
Network IPv6 prefix.
SummaryOnly This property is required. string
Enable/disable filter more specific routes from updates.
AsSet This property is required. string
Enable/disable generate AS set path information.
Id This property is required. int
ID.
Prefix6 This property is required. string
Network IPv6 prefix.
SummaryOnly This property is required. string
Enable/disable filter more specific routes from updates.
asSet This property is required. String
Enable/disable generate AS set path information.
id This property is required. Integer
ID.
prefix6 This property is required. String
Network IPv6 prefix.
summaryOnly This property is required. String
Enable/disable filter more specific routes from updates.
asSet This property is required. string
Enable/disable generate AS set path information.
id This property is required. number
ID.
prefix6 This property is required. string
Network IPv6 prefix.
summaryOnly This property is required. string
Enable/disable filter more specific routes from updates.
as_set This property is required. str
Enable/disable generate AS set path information.
id This property is required. int
ID.
prefix6 This property is required. str
Network IPv6 prefix.
summary_only This property is required. str
Enable/disable filter more specific routes from updates.
asSet This property is required. String
Enable/disable generate AS set path information.
id This property is required. Number
ID.
prefix6 This property is required. String
Network IPv6 prefix.
summaryOnly This property is required. String
Enable/disable filter more specific routes from updates.

GetBgpConfederationPeer

Peer This property is required. string
Peer ID.
Peer This property is required. string
Peer ID.
peer This property is required. String
Peer ID.
peer This property is required. string
Peer ID.
peer This property is required. str
Peer ID.
peer This property is required. String
Peer ID.

GetBgpNeighbor

Activate This property is required. string
Enable/disable address family IPv4 for this neighbor.
Activate6 This property is required. string
Enable/disable address family IPv6 for this neighbor.
ActivateEvpn This property is required. string
Enable/disable address family L2VPN EVPN for this neighbor.
ActivateVpnv4 This property is required. string
Enable/disable address family VPNv4 for this neighbor.
ActivateVpnv6 This property is required. string
Enable/disable address family VPNv6 for this neighbor.
AdditionalPath This property is required. string
Enable/disable IPv4 additional-path capability.
AdditionalPath6 This property is required. string
Enable/disable IPv6 additional-path capability.
AdditionalPathVpnv4 This property is required. string
Enable/disable VPNv4 additional-path capability.
AdditionalPathVpnv6 This property is required. string
Enable/disable VPNv6 additional-path capability.
AdvAdditionalPath This property is required. int
Number of IPv4 additional paths that can be advertised to this neighbor.
AdvAdditionalPath6 This property is required. int
Number of IPv6 additional paths that can be advertised to this neighbor.
AdvAdditionalPathVpnv4 This property is required. int
Number of VPNv4 additional paths that can be advertised to this neighbor.
AdvAdditionalPathVpnv6 This property is required. int
Number of VPNv6 additional paths that can be advertised to this neighbor.
AdvertisementInterval This property is required. int
Minimum interval (sec) between sending updates.
AllowasIn This property is required. int
IPv4 The maximum number of occurrence of my AS number allowed.
AllowasIn6 This property is required. int
IPv6 The maximum number of occurrence of my AS number allowed.
AllowasInEnable This property is required. string
Enable/disable IPv4 Enable to allow my AS in AS path.
AllowasInEnable6 This property is required. string
Enable/disable IPv6 Enable to allow my AS in AS path.
AllowasInEnableEvpn This property is required. string
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
AllowasInEnableVpnv4 This property is required. string
Enable/disable to allow my AS in AS path for VPNv4 route.
AllowasInEnableVpnv6 This property is required. string
Enable/disable use of my AS in AS path for VPNv6 route.
AllowasInEvpn This property is required. int
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
AllowasInVpnv4 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv4 route.
AllowasInVpnv6 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv6 route.
AsOverride This property is required. string
Enable/disable replace peer AS with own AS for IPv4.
AsOverride6 This property is required. string
Enable/disable replace peer AS with own AS for IPv6.
AttributeUnchanged This property is required. string
IPv4 List of attributes that should be unchanged.
AttributeUnchanged6 This property is required. string
IPv6 List of attributes that should be unchanged.
AttributeUnchangedVpnv4 This property is required. string
List of attributes that should be unchanged for VPNv4 route.
AttributeUnchangedVpnv6 This property is required. string
List of attributes that should not be changed for VPNv6 route.
AuthOptions This property is required. string
Key-chain name for TCP authentication options.
Bfd This property is required. string
Enable/disable BFD for this neighbor.
CapabilityDefaultOriginate This property is required. string
Enable/disable advertise default IPv4 route to this neighbor.
CapabilityDefaultOriginate6 This property is required. string
Enable/disable advertise default IPv6 route to this neighbor.
CapabilityDynamic This property is required. string
Enable/disable advertise dynamic capability to this neighbor.
CapabilityGracefulRestart This property is required. string
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
CapabilityGracefulRestart6 This property is required. string
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
CapabilityGracefulRestartEvpn This property is required. string
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
CapabilityGracefulRestartVpnv4 This property is required. string
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
CapabilityGracefulRestartVpnv6 This property is required. string
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
CapabilityOrf This property is required. string
Accept/Send IPv4 ORF lists to/from this neighbor.
CapabilityOrf6 This property is required. string
Accept/Send IPv6 ORF lists to/from this neighbor.
CapabilityRouteRefresh This property is required. string
Enable/disable advertise route refresh capability to this neighbor.
ConditionalAdvertise6s This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpNeighborConditionalAdvertise6>
IPv6 conditional advertisement. The structure of conditional_advertise6 block is documented below.
ConditionalAdvertises This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpNeighborConditionalAdvertise>
Conditional advertisement. The structure of conditional_advertise block is documented below.
ConnectTimer This property is required. int
Interval (sec) for connect timer.
DefaultOriginateRoutemap This property is required. string
Route map to specify criteria to originate IPv4 default.
DefaultOriginateRoutemap6 This property is required. string
Route map to specify criteria to originate IPv6 default.
Description This property is required. string
Description.
DistributeListIn This property is required. string
Filter for IPv4 updates from this neighbor.
DistributeListIn6 This property is required. string
Filter for IPv6 updates from this neighbor.
DistributeListInVpnv4 This property is required. string
Filter for VPNv4 updates from this neighbor.
DistributeListInVpnv6 This property is required. string
Filter for VPNv6 updates from this neighbor.
DistributeListOut This property is required. string
Filter for IPv4 updates to this neighbor.
DistributeListOut6 This property is required. string
Filter for IPv6 updates to this neighbor.
DistributeListOutVpnv4 This property is required. string
Filter for VPNv4 updates to this neighbor.
DistributeListOutVpnv6 This property is required. string
Filter for VPNv6 updates to this neighbor.
DontCapabilityNegotiate This property is required. string
Don't negotiate capabilities with this neighbor
EbgpEnforceMultihop This property is required. string
Enable/disable allow multi-hop EBGP neighbors.
EbgpMultihopTtl This property is required. int
EBGP multihop TTL for this peer.
FilterListIn This property is required. string
BGP filter for IPv4 inbound routes.
FilterListIn6 This property is required. string
BGP filter for IPv6 inbound routes.
FilterListInVpnv4 This property is required. string
BGP filter for VPNv4 inbound routes.
FilterListInVpnv6 This property is required. string
BGP filter for VPNv6 inbound routes.
FilterListOut This property is required. string
BGP filter for IPv4 outbound routes.
FilterListOut6 This property is required. string
BGP filter for IPv6 outbound routes.
FilterListOutVpnv4 This property is required. string
BGP filter for VPNv4 outbound routes.
FilterListOutVpnv6 This property is required. string
BGP filter for VPNv6 outbound routes.
HoldtimeTimer This property is required. int
Interval (sec) before peer considered dead.
Interface This property is required. string
Interface which is used to leak routes to target VRF.
Ip This property is required. string
IP/IPv6 address of neighbor.
KeepAliveTimer This property is required. int
Keep alive timer interval (sec).
LinkDownFailover This property is required. string
Enable/disable failover upon link down.
LocalAs This property is required. int
Local AS number of neighbor.
LocalAsNoPrepend This property is required. string
Do not prepend local-as to incoming updates.
LocalAsReplaceAs This property is required. string
Replace real AS with local-as in outgoing updates.
MaximumPrefix This property is required. int
Maximum number of IPv4 prefixes to accept from this peer.
MaximumPrefix6 This property is required. int
Maximum number of IPv6 prefixes to accept from this peer.
MaximumPrefixEvpn This property is required. int
Maximum number of L2VPN EVPN prefixes to accept from this peer.
MaximumPrefixThreshold This property is required. int
Maximum IPv4 prefix threshold value (1 - 100 percent).
MaximumPrefixThreshold6 This property is required. int
Maximum IPv6 prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdEvpn This property is required. int
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdVpnv4 This property is required. int
Maximum VPNv4 prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdVpnv6 This property is required. int
Maximum VPNv6 prefix threshold value (1 - 100 percent).
MaximumPrefixVpnv4 This property is required. int
Maximum number of VPNv4 prefixes to accept from this peer.
MaximumPrefixVpnv6 This property is required. int
Maximum number of VPNv6 prefixes to accept from this peer.
MaximumPrefixWarningOnly This property is required. string
Enable/disable IPv4 Only give warning message when limit is exceeded.
MaximumPrefixWarningOnly6 This property is required. string
Enable/disable IPv6 Only give warning message when limit is exceeded.
MaximumPrefixWarningOnlyEvpn This property is required. string
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
MaximumPrefixWarningOnlyVpnv4 This property is required. string
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
MaximumPrefixWarningOnlyVpnv6 This property is required. string
Enable/disable warning message when limit is exceeded for VPNv6 routes.
NextHopSelf This property is required. string
Enable/disable IPv4 next-hop calculation for this neighbor.
NextHopSelf6 This property is required. string
Enable/disable IPv6 next-hop calculation for this neighbor.
NextHopSelfRr This property is required. string
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
NextHopSelfRr6 This property is required. string
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
NextHopSelfVpnv4 This property is required. string
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
NextHopSelfVpnv6 This property is required. string
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
OverrideCapability This property is required. string
Enable/disable override result of capability negotiation.
Passive This property is required. string
Enable/disable sending of open messages to this neighbor.
Password This property is required. string
Password used in MD5 authentication.
PrefixListIn This property is required. string
IPv4 Inbound filter for updates from this neighbor.
PrefixListIn6 This property is required. string
IPv6 Inbound filter for updates from this neighbor.
PrefixListInVpnv4 This property is required. string
Inbound filter for VPNv4 updates from this neighbor.
PrefixListInVpnv6 This property is required. string
Inbound filter for VPNv6 updates from this neighbor.
PrefixListOut This property is required. string
IPv4 Outbound filter for updates to this neighbor.
PrefixListOut6 This property is required. string
IPv6 Outbound filter for updates to this neighbor.
PrefixListOutVpnv4 This property is required. string
Outbound filter for VPNv4 updates to this neighbor.
PrefixListOutVpnv6 This property is required. string
Outbound filter for VPNv6 updates to this neighbor.
RemoteAs This property is required. int
AS number of neighbor.
RemovePrivateAs This property is required. string
Enable/disable remove private AS number from IPv4 outbound updates.
RemovePrivateAs6 This property is required. string
Enable/disable remove private AS number from IPv6 outbound updates.
RemovePrivateAsEvpn This property is required. string
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
RemovePrivateAsVpnv4 This property is required. string
Enable/disable remove private AS number from VPNv4 outbound updates.
RemovePrivateAsVpnv6 This property is required. string
Enable/disable to remove private AS number from VPNv6 outbound updates.
RestartTime This property is required. int
Graceful restart delay time (sec, 0 = global default).
RetainStaleTime This property is required. int
Time to retain stale routes.
RouteMapIn This property is required. string
IPv4 Inbound route map filter.
RouteMapIn6 This property is required. string
IPv6 Inbound route map filter.
RouteMapInEvpn This property is required. string
L2VPN EVPN inbound route map filter.
RouteMapInVpnv4 This property is required. string
VPNv4 inbound route map filter.
RouteMapInVpnv6 This property is required. string
VPNv6 inbound route map filter.
RouteMapOut This property is required. string
IPv4 Outbound route map filter.
RouteMapOut6 This property is required. string
IPv6 Outbound route map filter.
RouteMapOut6Preferable This property is required. string
IPv6 outbound route map filter if the peer is preferred.
RouteMapOutEvpn This property is required. string
L2VPN EVPN outbound route map filter.
RouteMapOutPreferable This property is required. string
IPv4 outbound route map filter if the peer is preferred.
RouteMapOutVpnv4 This property is required. string
VPNv4 outbound route map filter.
RouteMapOutVpnv4Preferable This property is required. string
VPNv4 outbound route map filter if the peer is preferred.
RouteMapOutVpnv6 This property is required. string
VPNv6 outbound route map filter.
RouteMapOutVpnv6Preferable This property is required. string
VPNv6 outbound route map filter if this neighbor is preferred.
RouteReflectorClient This property is required. string
Enable/disable IPv4 AS route reflector client.
RouteReflectorClient6 This property is required. string
Enable/disable IPv6 AS route reflector client.
RouteReflectorClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
RouteReflectorClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route reflector client for this neighbor.
RouteReflectorClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route reflector client for this neighbor.
RouteServerClient This property is required. string
Enable/disable IPv4 AS route server client.
RouteServerClient6 This property is required. string
Enable/disable IPv6 AS route server client.
RouteServerClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route server client for this neighbor.
RouteServerClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route server client for this neighbor.
RouteServerClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route server client for this neighbor.
SendCommunity This property is required. string
IPv4 Send community attribute to neighbor.
SendCommunity6 This property is required. string
IPv6 Send community attribute to neighbor.
SendCommunityEvpn This property is required. string
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
SendCommunityVpnv4 This property is required. string
Send community attribute to neighbor for VPNv4 address family.
SendCommunityVpnv6 This property is required. string
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
Shutdown This property is required. string
Enable/disable shutdown this neighbor.
SoftReconfiguration This property is required. string
Enable/disable allow IPv4 inbound soft reconfiguration.
SoftReconfiguration6 This property is required. string
Enable/disable allow IPv6 inbound soft reconfiguration.
SoftReconfigurationEvpn This property is required. string
Enable/disable L2VPN EVPN inbound soft reconfiguration.
SoftReconfigurationVpnv4 This property is required. string
Enable/disable allow VPNv4 inbound soft reconfiguration.
SoftReconfigurationVpnv6 This property is required. string
Enable/disable VPNv6 inbound soft reconfiguration.
StaleRoute This property is required. string
Enable/disable stale route after neighbor down.
StrictCapabilityMatch This property is required. string
Enable/disable strict capability matching.
UnsuppressMap This property is required. string
IPv4 Route map to selectively unsuppress suppressed routes.
UnsuppressMap6 This property is required. string
IPv6 Route map to selectively unsuppress suppressed routes.
UpdateSource This property is required. string
Interface to use as source IP/IPv6 address of TCP connections.
Weight This property is required. int
Neighbor weight.
Activate This property is required. string
Enable/disable address family IPv4 for this neighbor.
Activate6 This property is required. string
Enable/disable address family IPv6 for this neighbor.
ActivateEvpn This property is required. string
Enable/disable address family L2VPN EVPN for this neighbor.
ActivateVpnv4 This property is required. string
Enable/disable address family VPNv4 for this neighbor.
ActivateVpnv6 This property is required. string
Enable/disable address family VPNv6 for this neighbor.
AdditionalPath This property is required. string
Enable/disable IPv4 additional-path capability.
AdditionalPath6 This property is required. string
Enable/disable IPv6 additional-path capability.
AdditionalPathVpnv4 This property is required. string
Enable/disable VPNv4 additional-path capability.
AdditionalPathVpnv6 This property is required. string
Enable/disable VPNv6 additional-path capability.
AdvAdditionalPath This property is required. int
Number of IPv4 additional paths that can be advertised to this neighbor.
AdvAdditionalPath6 This property is required. int
Number of IPv6 additional paths that can be advertised to this neighbor.
AdvAdditionalPathVpnv4 This property is required. int
Number of VPNv4 additional paths that can be advertised to this neighbor.
AdvAdditionalPathVpnv6 This property is required. int
Number of VPNv6 additional paths that can be advertised to this neighbor.
AdvertisementInterval This property is required. int
Minimum interval (sec) between sending updates.
AllowasIn This property is required. int
IPv4 The maximum number of occurrence of my AS number allowed.
AllowasIn6 This property is required. int
IPv6 The maximum number of occurrence of my AS number allowed.
AllowasInEnable This property is required. string
Enable/disable IPv4 Enable to allow my AS in AS path.
AllowasInEnable6 This property is required. string
Enable/disable IPv6 Enable to allow my AS in AS path.
AllowasInEnableEvpn This property is required. string
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
AllowasInEnableVpnv4 This property is required. string
Enable/disable to allow my AS in AS path for VPNv4 route.
AllowasInEnableVpnv6 This property is required. string
Enable/disable use of my AS in AS path for VPNv6 route.
AllowasInEvpn This property is required. int
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
AllowasInVpnv4 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv4 route.
AllowasInVpnv6 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv6 route.
AsOverride This property is required. string
Enable/disable replace peer AS with own AS for IPv4.
AsOverride6 This property is required. string
Enable/disable replace peer AS with own AS for IPv6.
AttributeUnchanged This property is required. string
IPv4 List of attributes that should be unchanged.
AttributeUnchanged6 This property is required. string
IPv6 List of attributes that should be unchanged.
AttributeUnchangedVpnv4 This property is required. string
List of attributes that should be unchanged for VPNv4 route.
AttributeUnchangedVpnv6 This property is required. string
List of attributes that should not be changed for VPNv6 route.
AuthOptions This property is required. string
Key-chain name for TCP authentication options.
Bfd This property is required. string
Enable/disable BFD for this neighbor.
CapabilityDefaultOriginate This property is required. string
Enable/disable advertise default IPv4 route to this neighbor.
CapabilityDefaultOriginate6 This property is required. string
Enable/disable advertise default IPv6 route to this neighbor.
CapabilityDynamic This property is required. string
Enable/disable advertise dynamic capability to this neighbor.
CapabilityGracefulRestart This property is required. string
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
CapabilityGracefulRestart6 This property is required. string
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
CapabilityGracefulRestartEvpn This property is required. string
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
CapabilityGracefulRestartVpnv4 This property is required. string
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
CapabilityGracefulRestartVpnv6 This property is required. string
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
CapabilityOrf This property is required. string
Accept/Send IPv4 ORF lists to/from this neighbor.
CapabilityOrf6 This property is required. string
Accept/Send IPv6 ORF lists to/from this neighbor.
CapabilityRouteRefresh This property is required. string
Enable/disable advertise route refresh capability to this neighbor.
ConditionalAdvertise6s This property is required. []GetBgpNeighborConditionalAdvertise6
IPv6 conditional advertisement. The structure of conditional_advertise6 block is documented below.
ConditionalAdvertises This property is required. []GetBgpNeighborConditionalAdvertise
Conditional advertisement. The structure of conditional_advertise block is documented below.
ConnectTimer This property is required. int
Interval (sec) for connect timer.
DefaultOriginateRoutemap This property is required. string
Route map to specify criteria to originate IPv4 default.
DefaultOriginateRoutemap6 This property is required. string
Route map to specify criteria to originate IPv6 default.
Description This property is required. string
Description.
DistributeListIn This property is required. string
Filter for IPv4 updates from this neighbor.
DistributeListIn6 This property is required. string
Filter for IPv6 updates from this neighbor.
DistributeListInVpnv4 This property is required. string
Filter for VPNv4 updates from this neighbor.
DistributeListInVpnv6 This property is required. string
Filter for VPNv6 updates from this neighbor.
DistributeListOut This property is required. string
Filter for IPv4 updates to this neighbor.
DistributeListOut6 This property is required. string
Filter for IPv6 updates to this neighbor.
DistributeListOutVpnv4 This property is required. string
Filter for VPNv4 updates to this neighbor.
DistributeListOutVpnv6 This property is required. string
Filter for VPNv6 updates to this neighbor.
DontCapabilityNegotiate This property is required. string
Don't negotiate capabilities with this neighbor
EbgpEnforceMultihop This property is required. string
Enable/disable allow multi-hop EBGP neighbors.
EbgpMultihopTtl This property is required. int
EBGP multihop TTL for this peer.
FilterListIn This property is required. string
BGP filter for IPv4 inbound routes.
FilterListIn6 This property is required. string
BGP filter for IPv6 inbound routes.
FilterListInVpnv4 This property is required. string
BGP filter for VPNv4 inbound routes.
FilterListInVpnv6 This property is required. string
BGP filter for VPNv6 inbound routes.
FilterListOut This property is required. string
BGP filter for IPv4 outbound routes.
FilterListOut6 This property is required. string
BGP filter for IPv6 outbound routes.
FilterListOutVpnv4 This property is required. string
BGP filter for VPNv4 outbound routes.
FilterListOutVpnv6 This property is required. string
BGP filter for VPNv6 outbound routes.
HoldtimeTimer This property is required. int
Interval (sec) before peer considered dead.
Interface This property is required. string
Interface which is used to leak routes to target VRF.
Ip This property is required. string
IP/IPv6 address of neighbor.
KeepAliveTimer This property is required. int
Keep alive timer interval (sec).
LinkDownFailover This property is required. string
Enable/disable failover upon link down.
LocalAs This property is required. int
Local AS number of neighbor.
LocalAsNoPrepend This property is required. string
Do not prepend local-as to incoming updates.
LocalAsReplaceAs This property is required. string
Replace real AS with local-as in outgoing updates.
MaximumPrefix This property is required. int
Maximum number of IPv4 prefixes to accept from this peer.
MaximumPrefix6 This property is required. int
Maximum number of IPv6 prefixes to accept from this peer.
MaximumPrefixEvpn This property is required. int
Maximum number of L2VPN EVPN prefixes to accept from this peer.
MaximumPrefixThreshold This property is required. int
Maximum IPv4 prefix threshold value (1 - 100 percent).
MaximumPrefixThreshold6 This property is required. int
Maximum IPv6 prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdEvpn This property is required. int
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdVpnv4 This property is required. int
Maximum VPNv4 prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdVpnv6 This property is required. int
Maximum VPNv6 prefix threshold value (1 - 100 percent).
MaximumPrefixVpnv4 This property is required. int
Maximum number of VPNv4 prefixes to accept from this peer.
MaximumPrefixVpnv6 This property is required. int
Maximum number of VPNv6 prefixes to accept from this peer.
MaximumPrefixWarningOnly This property is required. string
Enable/disable IPv4 Only give warning message when limit is exceeded.
MaximumPrefixWarningOnly6 This property is required. string
Enable/disable IPv6 Only give warning message when limit is exceeded.
MaximumPrefixWarningOnlyEvpn This property is required. string
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
MaximumPrefixWarningOnlyVpnv4 This property is required. string
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
MaximumPrefixWarningOnlyVpnv6 This property is required. string
Enable/disable warning message when limit is exceeded for VPNv6 routes.
NextHopSelf This property is required. string
Enable/disable IPv4 next-hop calculation for this neighbor.
NextHopSelf6 This property is required. string
Enable/disable IPv6 next-hop calculation for this neighbor.
NextHopSelfRr This property is required. string
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
NextHopSelfRr6 This property is required. string
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
NextHopSelfVpnv4 This property is required. string
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
NextHopSelfVpnv6 This property is required. string
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
OverrideCapability This property is required. string
Enable/disable override result of capability negotiation.
Passive This property is required. string
Enable/disable sending of open messages to this neighbor.
Password This property is required. string
Password used in MD5 authentication.
PrefixListIn This property is required. string
IPv4 Inbound filter for updates from this neighbor.
PrefixListIn6 This property is required. string
IPv6 Inbound filter for updates from this neighbor.
PrefixListInVpnv4 This property is required. string
Inbound filter for VPNv4 updates from this neighbor.
PrefixListInVpnv6 This property is required. string
Inbound filter for VPNv6 updates from this neighbor.
PrefixListOut This property is required. string
IPv4 Outbound filter for updates to this neighbor.
PrefixListOut6 This property is required. string
IPv6 Outbound filter for updates to this neighbor.
PrefixListOutVpnv4 This property is required. string
Outbound filter for VPNv4 updates to this neighbor.
PrefixListOutVpnv6 This property is required. string
Outbound filter for VPNv6 updates to this neighbor.
RemoteAs This property is required. int
AS number of neighbor.
RemovePrivateAs This property is required. string
Enable/disable remove private AS number from IPv4 outbound updates.
RemovePrivateAs6 This property is required. string
Enable/disable remove private AS number from IPv6 outbound updates.
RemovePrivateAsEvpn This property is required. string
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
RemovePrivateAsVpnv4 This property is required. string
Enable/disable remove private AS number from VPNv4 outbound updates.
RemovePrivateAsVpnv6 This property is required. string
Enable/disable to remove private AS number from VPNv6 outbound updates.
RestartTime This property is required. int
Graceful restart delay time (sec, 0 = global default).
RetainStaleTime This property is required. int
Time to retain stale routes.
RouteMapIn This property is required. string
IPv4 Inbound route map filter.
RouteMapIn6 This property is required. string
IPv6 Inbound route map filter.
RouteMapInEvpn This property is required. string
L2VPN EVPN inbound route map filter.
RouteMapInVpnv4 This property is required. string
VPNv4 inbound route map filter.
RouteMapInVpnv6 This property is required. string
VPNv6 inbound route map filter.
RouteMapOut This property is required. string
IPv4 Outbound route map filter.
RouteMapOut6 This property is required. string
IPv6 Outbound route map filter.
RouteMapOut6Preferable This property is required. string
IPv6 outbound route map filter if the peer is preferred.
RouteMapOutEvpn This property is required. string
L2VPN EVPN outbound route map filter.
RouteMapOutPreferable This property is required. string
IPv4 outbound route map filter if the peer is preferred.
RouteMapOutVpnv4 This property is required. string
VPNv4 outbound route map filter.
RouteMapOutVpnv4Preferable This property is required. string
VPNv4 outbound route map filter if the peer is preferred.
RouteMapOutVpnv6 This property is required. string
VPNv6 outbound route map filter.
RouteMapOutVpnv6Preferable This property is required. string
VPNv6 outbound route map filter if this neighbor is preferred.
RouteReflectorClient This property is required. string
Enable/disable IPv4 AS route reflector client.
RouteReflectorClient6 This property is required. string
Enable/disable IPv6 AS route reflector client.
RouteReflectorClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
RouteReflectorClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route reflector client for this neighbor.
RouteReflectorClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route reflector client for this neighbor.
RouteServerClient This property is required. string
Enable/disable IPv4 AS route server client.
RouteServerClient6 This property is required. string
Enable/disable IPv6 AS route server client.
RouteServerClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route server client for this neighbor.
RouteServerClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route server client for this neighbor.
RouteServerClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route server client for this neighbor.
SendCommunity This property is required. string
IPv4 Send community attribute to neighbor.
SendCommunity6 This property is required. string
IPv6 Send community attribute to neighbor.
SendCommunityEvpn This property is required. string
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
SendCommunityVpnv4 This property is required. string
Send community attribute to neighbor for VPNv4 address family.
SendCommunityVpnv6 This property is required. string
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
Shutdown This property is required. string
Enable/disable shutdown this neighbor.
SoftReconfiguration This property is required. string
Enable/disable allow IPv4 inbound soft reconfiguration.
SoftReconfiguration6 This property is required. string
Enable/disable allow IPv6 inbound soft reconfiguration.
SoftReconfigurationEvpn This property is required. string
Enable/disable L2VPN EVPN inbound soft reconfiguration.
SoftReconfigurationVpnv4 This property is required. string
Enable/disable allow VPNv4 inbound soft reconfiguration.
SoftReconfigurationVpnv6 This property is required. string
Enable/disable VPNv6 inbound soft reconfiguration.
StaleRoute This property is required. string
Enable/disable stale route after neighbor down.
StrictCapabilityMatch This property is required. string
Enable/disable strict capability matching.
UnsuppressMap This property is required. string
IPv4 Route map to selectively unsuppress suppressed routes.
UnsuppressMap6 This property is required. string
IPv6 Route map to selectively unsuppress suppressed routes.
UpdateSource This property is required. string
Interface to use as source IP/IPv6 address of TCP connections.
Weight This property is required. int
Neighbor weight.
activate This property is required. String
Enable/disable address family IPv4 for this neighbor.
activate6 This property is required. String
Enable/disable address family IPv6 for this neighbor.
activateEvpn This property is required. String
Enable/disable address family L2VPN EVPN for this neighbor.
activateVpnv4 This property is required. String
Enable/disable address family VPNv4 for this neighbor.
activateVpnv6 This property is required. String
Enable/disable address family VPNv6 for this neighbor.
additionalPath This property is required. String
Enable/disable IPv4 additional-path capability.
additionalPath6 This property is required. String
Enable/disable IPv6 additional-path capability.
additionalPathVpnv4 This property is required. String
Enable/disable VPNv4 additional-path capability.
additionalPathVpnv6 This property is required. String
Enable/disable VPNv6 additional-path capability.
advAdditionalPath This property is required. Integer
Number of IPv4 additional paths that can be advertised to this neighbor.
advAdditionalPath6 This property is required. Integer
Number of IPv6 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv4 This property is required. Integer
Number of VPNv4 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv6 This property is required. Integer
Number of VPNv6 additional paths that can be advertised to this neighbor.
advertisementInterval This property is required. Integer
Minimum interval (sec) between sending updates.
allowasIn This property is required. Integer
IPv4 The maximum number of occurrence of my AS number allowed.
allowasIn6 This property is required. Integer
IPv6 The maximum number of occurrence of my AS number allowed.
allowasInEnable This property is required. String
Enable/disable IPv4 Enable to allow my AS in AS path.
allowasInEnable6 This property is required. String
Enable/disable IPv6 Enable to allow my AS in AS path.
allowasInEnableEvpn This property is required. String
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
allowasInEnableVpnv4 This property is required. String
Enable/disable to allow my AS in AS path for VPNv4 route.
allowasInEnableVpnv6 This property is required. String
Enable/disable use of my AS in AS path for VPNv6 route.
allowasInEvpn This property is required. Integer
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
allowasInVpnv4 This property is required. Integer
The maximum number of occurrence of my AS number allowed for VPNv4 route.
allowasInVpnv6 This property is required. Integer
The maximum number of occurrence of my AS number allowed for VPNv6 route.
asOverride This property is required. String
Enable/disable replace peer AS with own AS for IPv4.
asOverride6 This property is required. String
Enable/disable replace peer AS with own AS for IPv6.
attributeUnchanged This property is required. String
IPv4 List of attributes that should be unchanged.
attributeUnchanged6 This property is required. String
IPv6 List of attributes that should be unchanged.
attributeUnchangedVpnv4 This property is required. String
List of attributes that should be unchanged for VPNv4 route.
attributeUnchangedVpnv6 This property is required. String
List of attributes that should not be changed for VPNv6 route.
authOptions This property is required. String
Key-chain name for TCP authentication options.
bfd This property is required. String
Enable/disable BFD for this neighbor.
capabilityDefaultOriginate This property is required. String
Enable/disable advertise default IPv4 route to this neighbor.
capabilityDefaultOriginate6 This property is required. String
Enable/disable advertise default IPv6 route to this neighbor.
capabilityDynamic This property is required. String
Enable/disable advertise dynamic capability to this neighbor.
capabilityGracefulRestart This property is required. String
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
capabilityGracefulRestart6 This property is required. String
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
capabilityGracefulRestartEvpn This property is required. String
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv4 This property is required. String
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv6 This property is required. String
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
capabilityOrf This property is required. String
Accept/Send IPv4 ORF lists to/from this neighbor.
capabilityOrf6 This property is required. String
Accept/Send IPv6 ORF lists to/from this neighbor.
capabilityRouteRefresh This property is required. String
Enable/disable advertise route refresh capability to this neighbor.
conditionalAdvertise6s This property is required. List<GetBgpNeighborConditionalAdvertise6>
IPv6 conditional advertisement. The structure of conditional_advertise6 block is documented below.
conditionalAdvertises This property is required. List<GetBgpNeighborConditionalAdvertise>
Conditional advertisement. The structure of conditional_advertise block is documented below.
connectTimer This property is required. Integer
Interval (sec) for connect timer.
defaultOriginateRoutemap This property is required. String
Route map to specify criteria to originate IPv4 default.
defaultOriginateRoutemap6 This property is required. String
Route map to specify criteria to originate IPv6 default.
description This property is required. String
Description.
distributeListIn This property is required. String
Filter for IPv4 updates from this neighbor.
distributeListIn6 This property is required. String
Filter for IPv6 updates from this neighbor.
distributeListInVpnv4 This property is required. String
Filter for VPNv4 updates from this neighbor.
distributeListInVpnv6 This property is required. String
Filter for VPNv6 updates from this neighbor.
distributeListOut This property is required. String
Filter for IPv4 updates to this neighbor.
distributeListOut6 This property is required. String
Filter for IPv6 updates to this neighbor.
distributeListOutVpnv4 This property is required. String
Filter for VPNv4 updates to this neighbor.
distributeListOutVpnv6 This property is required. String
Filter for VPNv6 updates to this neighbor.
dontCapabilityNegotiate This property is required. String
Don't negotiate capabilities with this neighbor
ebgpEnforceMultihop This property is required. String
Enable/disable allow multi-hop EBGP neighbors.
ebgpMultihopTtl This property is required. Integer
EBGP multihop TTL for this peer.
filterListIn This property is required. String
BGP filter for IPv4 inbound routes.
filterListIn6 This property is required. String
BGP filter for IPv6 inbound routes.
filterListInVpnv4 This property is required. String
BGP filter for VPNv4 inbound routes.
filterListInVpnv6 This property is required. String
BGP filter for VPNv6 inbound routes.
filterListOut This property is required. String
BGP filter for IPv4 outbound routes.
filterListOut6 This property is required. String
BGP filter for IPv6 outbound routes.
filterListOutVpnv4 This property is required. String
BGP filter for VPNv4 outbound routes.
filterListOutVpnv6 This property is required. String
BGP filter for VPNv6 outbound routes.
holdtimeTimer This property is required. Integer
Interval (sec) before peer considered dead.
interface_ This property is required. String
Interface which is used to leak routes to target VRF.
ip This property is required. String
IP/IPv6 address of neighbor.
keepAliveTimer This property is required. Integer
Keep alive timer interval (sec).
linkDownFailover This property is required. String
Enable/disable failover upon link down.
localAs This property is required. Integer
Local AS number of neighbor.
localAsNoPrepend This property is required. String
Do not prepend local-as to incoming updates.
localAsReplaceAs This property is required. String
Replace real AS with local-as in outgoing updates.
maximumPrefix This property is required. Integer
Maximum number of IPv4 prefixes to accept from this peer.
maximumPrefix6 This property is required. Integer
Maximum number of IPv6 prefixes to accept from this peer.
maximumPrefixEvpn This property is required. Integer
Maximum number of L2VPN EVPN prefixes to accept from this peer.
maximumPrefixThreshold This property is required. Integer
Maximum IPv4 prefix threshold value (1 - 100 percent).
maximumPrefixThreshold6 This property is required. Integer
Maximum IPv6 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdEvpn This property is required. Integer
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv4 This property is required. Integer
Maximum VPNv4 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv6 This property is required. Integer
Maximum VPNv6 prefix threshold value (1 - 100 percent).
maximumPrefixVpnv4 This property is required. Integer
Maximum number of VPNv4 prefixes to accept from this peer.
maximumPrefixVpnv6 This property is required. Integer
Maximum number of VPNv6 prefixes to accept from this peer.
maximumPrefixWarningOnly This property is required. String
Enable/disable IPv4 Only give warning message when limit is exceeded.
maximumPrefixWarningOnly6 This property is required. String
Enable/disable IPv6 Only give warning message when limit is exceeded.
maximumPrefixWarningOnlyEvpn This property is required. String
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
maximumPrefixWarningOnlyVpnv4 This property is required. String
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
maximumPrefixWarningOnlyVpnv6 This property is required. String
Enable/disable warning message when limit is exceeded for VPNv6 routes.
nextHopSelf This property is required. String
Enable/disable IPv4 next-hop calculation for this neighbor.
nextHopSelf6 This property is required. String
Enable/disable IPv6 next-hop calculation for this neighbor.
nextHopSelfRr This property is required. String
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
nextHopSelfRr6 This property is required. String
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
nextHopSelfVpnv4 This property is required. String
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
nextHopSelfVpnv6 This property is required. String
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
overrideCapability This property is required. String
Enable/disable override result of capability negotiation.
passive This property is required. String
Enable/disable sending of open messages to this neighbor.
password This property is required. String
Password used in MD5 authentication.
prefixListIn This property is required. String
IPv4 Inbound filter for updates from this neighbor.
prefixListIn6 This property is required. String
IPv6 Inbound filter for updates from this neighbor.
prefixListInVpnv4 This property is required. String
Inbound filter for VPNv4 updates from this neighbor.
prefixListInVpnv6 This property is required. String
Inbound filter for VPNv6 updates from this neighbor.
prefixListOut This property is required. String
IPv4 Outbound filter for updates to this neighbor.
prefixListOut6 This property is required. String
IPv6 Outbound filter for updates to this neighbor.
prefixListOutVpnv4 This property is required. String
Outbound filter for VPNv4 updates to this neighbor.
prefixListOutVpnv6 This property is required. String
Outbound filter for VPNv6 updates to this neighbor.
remoteAs This property is required. Integer
AS number of neighbor.
removePrivateAs This property is required. String
Enable/disable remove private AS number from IPv4 outbound updates.
removePrivateAs6 This property is required. String
Enable/disable remove private AS number from IPv6 outbound updates.
removePrivateAsEvpn This property is required. String
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
removePrivateAsVpnv4 This property is required. String
Enable/disable remove private AS number from VPNv4 outbound updates.
removePrivateAsVpnv6 This property is required. String
Enable/disable to remove private AS number from VPNv6 outbound updates.
restartTime This property is required. Integer
Graceful restart delay time (sec, 0 = global default).
retainStaleTime This property is required. Integer
Time to retain stale routes.
routeMapIn This property is required. String
IPv4 Inbound route map filter.
routeMapIn6 This property is required. String
IPv6 Inbound route map filter.
routeMapInEvpn This property is required. String
L2VPN EVPN inbound route map filter.
routeMapInVpnv4 This property is required. String
VPNv4 inbound route map filter.
routeMapInVpnv6 This property is required. String
VPNv6 inbound route map filter.
routeMapOut This property is required. String
IPv4 Outbound route map filter.
routeMapOut6 This property is required. String
IPv6 Outbound route map filter.
routeMapOut6Preferable This property is required. String
IPv6 outbound route map filter if the peer is preferred.
routeMapOutEvpn This property is required. String
L2VPN EVPN outbound route map filter.
routeMapOutPreferable This property is required. String
IPv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv4 This property is required. String
VPNv4 outbound route map filter.
routeMapOutVpnv4Preferable This property is required. String
VPNv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv6 This property is required. String
VPNv6 outbound route map filter.
routeMapOutVpnv6Preferable This property is required. String
VPNv6 outbound route map filter if this neighbor is preferred.
routeReflectorClient This property is required. String
Enable/disable IPv4 AS route reflector client.
routeReflectorClient6 This property is required. String
Enable/disable IPv6 AS route reflector client.
routeReflectorClientEvpn This property is required. String
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
routeReflectorClientVpnv4 This property is required. String
Enable/disable VPNv4 AS route reflector client for this neighbor.
routeReflectorClientVpnv6 This property is required. String
Enable/disable VPNv6 AS route reflector client for this neighbor.
routeServerClient This property is required. String
Enable/disable IPv4 AS route server client.
routeServerClient6 This property is required. String
Enable/disable IPv6 AS route server client.
routeServerClientEvpn This property is required. String
Enable/disable L2VPN EVPN AS route server client for this neighbor.
routeServerClientVpnv4 This property is required. String
Enable/disable VPNv4 AS route server client for this neighbor.
routeServerClientVpnv6 This property is required. String
Enable/disable VPNv6 AS route server client for this neighbor.
sendCommunity This property is required. String
IPv4 Send community attribute to neighbor.
sendCommunity6 This property is required. String
IPv6 Send community attribute to neighbor.
sendCommunityEvpn This property is required. String
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
sendCommunityVpnv4 This property is required. String
Send community attribute to neighbor for VPNv4 address family.
sendCommunityVpnv6 This property is required. String
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
shutdown This property is required. String
Enable/disable shutdown this neighbor.
softReconfiguration This property is required. String
Enable/disable allow IPv4 inbound soft reconfiguration.
softReconfiguration6 This property is required. String
Enable/disable allow IPv6 inbound soft reconfiguration.
softReconfigurationEvpn This property is required. String
Enable/disable L2VPN EVPN inbound soft reconfiguration.
softReconfigurationVpnv4 This property is required. String
Enable/disable allow VPNv4 inbound soft reconfiguration.
softReconfigurationVpnv6 This property is required. String
Enable/disable VPNv6 inbound soft reconfiguration.
staleRoute This property is required. String
Enable/disable stale route after neighbor down.
strictCapabilityMatch This property is required. String
Enable/disable strict capability matching.
unsuppressMap This property is required. String
IPv4 Route map to selectively unsuppress suppressed routes.
unsuppressMap6 This property is required. String
IPv6 Route map to selectively unsuppress suppressed routes.
updateSource This property is required. String
Interface to use as source IP/IPv6 address of TCP connections.
weight This property is required. Integer
Neighbor weight.
activate This property is required. string
Enable/disable address family IPv4 for this neighbor.
activate6 This property is required. string
Enable/disable address family IPv6 for this neighbor.
activateEvpn This property is required. string
Enable/disable address family L2VPN EVPN for this neighbor.
activateVpnv4 This property is required. string
Enable/disable address family VPNv4 for this neighbor.
activateVpnv6 This property is required. string
Enable/disable address family VPNv6 for this neighbor.
additionalPath This property is required. string
Enable/disable IPv4 additional-path capability.
additionalPath6 This property is required. string
Enable/disable IPv6 additional-path capability.
additionalPathVpnv4 This property is required. string
Enable/disable VPNv4 additional-path capability.
additionalPathVpnv6 This property is required. string
Enable/disable VPNv6 additional-path capability.
advAdditionalPath This property is required. number
Number of IPv4 additional paths that can be advertised to this neighbor.
advAdditionalPath6 This property is required. number
Number of IPv6 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv4 This property is required. number
Number of VPNv4 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv6 This property is required. number
Number of VPNv6 additional paths that can be advertised to this neighbor.
advertisementInterval This property is required. number
Minimum interval (sec) between sending updates.
allowasIn This property is required. number
IPv4 The maximum number of occurrence of my AS number allowed.
allowasIn6 This property is required. number
IPv6 The maximum number of occurrence of my AS number allowed.
allowasInEnable This property is required. string
Enable/disable IPv4 Enable to allow my AS in AS path.
allowasInEnable6 This property is required. string
Enable/disable IPv6 Enable to allow my AS in AS path.
allowasInEnableEvpn This property is required. string
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
allowasInEnableVpnv4 This property is required. string
Enable/disable to allow my AS in AS path for VPNv4 route.
allowasInEnableVpnv6 This property is required. string
Enable/disable use of my AS in AS path for VPNv6 route.
allowasInEvpn This property is required. number
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
allowasInVpnv4 This property is required. number
The maximum number of occurrence of my AS number allowed for VPNv4 route.
allowasInVpnv6 This property is required. number
The maximum number of occurrence of my AS number allowed for VPNv6 route.
asOverride This property is required. string
Enable/disable replace peer AS with own AS for IPv4.
asOverride6 This property is required. string
Enable/disable replace peer AS with own AS for IPv6.
attributeUnchanged This property is required. string
IPv4 List of attributes that should be unchanged.
attributeUnchanged6 This property is required. string
IPv6 List of attributes that should be unchanged.
attributeUnchangedVpnv4 This property is required. string
List of attributes that should be unchanged for VPNv4 route.
attributeUnchangedVpnv6 This property is required. string
List of attributes that should not be changed for VPNv6 route.
authOptions This property is required. string
Key-chain name for TCP authentication options.
bfd This property is required. string
Enable/disable BFD for this neighbor.
capabilityDefaultOriginate This property is required. string
Enable/disable advertise default IPv4 route to this neighbor.
capabilityDefaultOriginate6 This property is required. string
Enable/disable advertise default IPv6 route to this neighbor.
capabilityDynamic This property is required. string
Enable/disable advertise dynamic capability to this neighbor.
capabilityGracefulRestart This property is required. string
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
capabilityGracefulRestart6 This property is required. string
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
capabilityGracefulRestartEvpn This property is required. string
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv4 This property is required. string
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv6 This property is required. string
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
capabilityOrf This property is required. string
Accept/Send IPv4 ORF lists to/from this neighbor.
capabilityOrf6 This property is required. string
Accept/Send IPv6 ORF lists to/from this neighbor.
capabilityRouteRefresh This property is required. string
Enable/disable advertise route refresh capability to this neighbor.
conditionalAdvertise6s This property is required. GetBgpNeighborConditionalAdvertise6[]
IPv6 conditional advertisement. The structure of conditional_advertise6 block is documented below.
conditionalAdvertises This property is required. GetBgpNeighborConditionalAdvertise[]
Conditional advertisement. The structure of conditional_advertise block is documented below.
connectTimer This property is required. number
Interval (sec) for connect timer.
defaultOriginateRoutemap This property is required. string
Route map to specify criteria to originate IPv4 default.
defaultOriginateRoutemap6 This property is required. string
Route map to specify criteria to originate IPv6 default.
description This property is required. string
Description.
distributeListIn This property is required. string
Filter for IPv4 updates from this neighbor.
distributeListIn6 This property is required. string
Filter for IPv6 updates from this neighbor.
distributeListInVpnv4 This property is required. string
Filter for VPNv4 updates from this neighbor.
distributeListInVpnv6 This property is required. string
Filter for VPNv6 updates from this neighbor.
distributeListOut This property is required. string
Filter for IPv4 updates to this neighbor.
distributeListOut6 This property is required. string
Filter for IPv6 updates to this neighbor.
distributeListOutVpnv4 This property is required. string
Filter for VPNv4 updates to this neighbor.
distributeListOutVpnv6 This property is required. string
Filter for VPNv6 updates to this neighbor.
dontCapabilityNegotiate This property is required. string
Don't negotiate capabilities with this neighbor
ebgpEnforceMultihop This property is required. string
Enable/disable allow multi-hop EBGP neighbors.
ebgpMultihopTtl This property is required. number
EBGP multihop TTL for this peer.
filterListIn This property is required. string
BGP filter for IPv4 inbound routes.
filterListIn6 This property is required. string
BGP filter for IPv6 inbound routes.
filterListInVpnv4 This property is required. string
BGP filter for VPNv4 inbound routes.
filterListInVpnv6 This property is required. string
BGP filter for VPNv6 inbound routes.
filterListOut This property is required. string
BGP filter for IPv4 outbound routes.
filterListOut6 This property is required. string
BGP filter for IPv6 outbound routes.
filterListOutVpnv4 This property is required. string
BGP filter for VPNv4 outbound routes.
filterListOutVpnv6 This property is required. string
BGP filter for VPNv6 outbound routes.
holdtimeTimer This property is required. number
Interval (sec) before peer considered dead.
interface This property is required. string
Interface which is used to leak routes to target VRF.
ip This property is required. string
IP/IPv6 address of neighbor.
keepAliveTimer This property is required. number
Keep alive timer interval (sec).
linkDownFailover This property is required. string
Enable/disable failover upon link down.
localAs This property is required. number
Local AS number of neighbor.
localAsNoPrepend This property is required. string
Do not prepend local-as to incoming updates.
localAsReplaceAs This property is required. string
Replace real AS with local-as in outgoing updates.
maximumPrefix This property is required. number
Maximum number of IPv4 prefixes to accept from this peer.
maximumPrefix6 This property is required. number
Maximum number of IPv6 prefixes to accept from this peer.
maximumPrefixEvpn This property is required. number
Maximum number of L2VPN EVPN prefixes to accept from this peer.
maximumPrefixThreshold This property is required. number
Maximum IPv4 prefix threshold value (1 - 100 percent).
maximumPrefixThreshold6 This property is required. number
Maximum IPv6 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdEvpn This property is required. number
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv4 This property is required. number
Maximum VPNv4 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv6 This property is required. number
Maximum VPNv6 prefix threshold value (1 - 100 percent).
maximumPrefixVpnv4 This property is required. number
Maximum number of VPNv4 prefixes to accept from this peer.
maximumPrefixVpnv6 This property is required. number
Maximum number of VPNv6 prefixes to accept from this peer.
maximumPrefixWarningOnly This property is required. string
Enable/disable IPv4 Only give warning message when limit is exceeded.
maximumPrefixWarningOnly6 This property is required. string
Enable/disable IPv6 Only give warning message when limit is exceeded.
maximumPrefixWarningOnlyEvpn This property is required. string
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
maximumPrefixWarningOnlyVpnv4 This property is required. string
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
maximumPrefixWarningOnlyVpnv6 This property is required. string
Enable/disable warning message when limit is exceeded for VPNv6 routes.
nextHopSelf This property is required. string
Enable/disable IPv4 next-hop calculation for this neighbor.
nextHopSelf6 This property is required. string
Enable/disable IPv6 next-hop calculation for this neighbor.
nextHopSelfRr This property is required. string
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
nextHopSelfRr6 This property is required. string
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
nextHopSelfVpnv4 This property is required. string
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
nextHopSelfVpnv6 This property is required. string
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
overrideCapability This property is required. string
Enable/disable override result of capability negotiation.
passive This property is required. string
Enable/disable sending of open messages to this neighbor.
password This property is required. string
Password used in MD5 authentication.
prefixListIn This property is required. string
IPv4 Inbound filter for updates from this neighbor.
prefixListIn6 This property is required. string
IPv6 Inbound filter for updates from this neighbor.
prefixListInVpnv4 This property is required. string
Inbound filter for VPNv4 updates from this neighbor.
prefixListInVpnv6 This property is required. string
Inbound filter for VPNv6 updates from this neighbor.
prefixListOut This property is required. string
IPv4 Outbound filter for updates to this neighbor.
prefixListOut6 This property is required. string
IPv6 Outbound filter for updates to this neighbor.
prefixListOutVpnv4 This property is required. string
Outbound filter for VPNv4 updates to this neighbor.
prefixListOutVpnv6 This property is required. string
Outbound filter for VPNv6 updates to this neighbor.
remoteAs This property is required. number
AS number of neighbor.
removePrivateAs This property is required. string
Enable/disable remove private AS number from IPv4 outbound updates.
removePrivateAs6 This property is required. string
Enable/disable remove private AS number from IPv6 outbound updates.
removePrivateAsEvpn This property is required. string
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
removePrivateAsVpnv4 This property is required. string
Enable/disable remove private AS number from VPNv4 outbound updates.
removePrivateAsVpnv6 This property is required. string
Enable/disable to remove private AS number from VPNv6 outbound updates.
restartTime This property is required. number
Graceful restart delay time (sec, 0 = global default).
retainStaleTime This property is required. number
Time to retain stale routes.
routeMapIn This property is required. string
IPv4 Inbound route map filter.
routeMapIn6 This property is required. string
IPv6 Inbound route map filter.
routeMapInEvpn This property is required. string
L2VPN EVPN inbound route map filter.
routeMapInVpnv4 This property is required. string
VPNv4 inbound route map filter.
routeMapInVpnv6 This property is required. string
VPNv6 inbound route map filter.
routeMapOut This property is required. string
IPv4 Outbound route map filter.
routeMapOut6 This property is required. string
IPv6 Outbound route map filter.
routeMapOut6Preferable This property is required. string
IPv6 outbound route map filter if the peer is preferred.
routeMapOutEvpn This property is required. string
L2VPN EVPN outbound route map filter.
routeMapOutPreferable This property is required. string
IPv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv4 This property is required. string
VPNv4 outbound route map filter.
routeMapOutVpnv4Preferable This property is required. string
VPNv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv6 This property is required. string
VPNv6 outbound route map filter.
routeMapOutVpnv6Preferable This property is required. string
VPNv6 outbound route map filter if this neighbor is preferred.
routeReflectorClient This property is required. string
Enable/disable IPv4 AS route reflector client.
routeReflectorClient6 This property is required. string
Enable/disable IPv6 AS route reflector client.
routeReflectorClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
routeReflectorClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route reflector client for this neighbor.
routeReflectorClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route reflector client for this neighbor.
routeServerClient This property is required. string
Enable/disable IPv4 AS route server client.
routeServerClient6 This property is required. string
Enable/disable IPv6 AS route server client.
routeServerClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route server client for this neighbor.
routeServerClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route server client for this neighbor.
routeServerClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route server client for this neighbor.
sendCommunity This property is required. string
IPv4 Send community attribute to neighbor.
sendCommunity6 This property is required. string
IPv6 Send community attribute to neighbor.
sendCommunityEvpn This property is required. string
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
sendCommunityVpnv4 This property is required. string
Send community attribute to neighbor for VPNv4 address family.
sendCommunityVpnv6 This property is required. string
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
shutdown This property is required. string
Enable/disable shutdown this neighbor.
softReconfiguration This property is required. string
Enable/disable allow IPv4 inbound soft reconfiguration.
softReconfiguration6 This property is required. string
Enable/disable allow IPv6 inbound soft reconfiguration.
softReconfigurationEvpn This property is required. string
Enable/disable L2VPN EVPN inbound soft reconfiguration.
softReconfigurationVpnv4 This property is required. string
Enable/disable allow VPNv4 inbound soft reconfiguration.
softReconfigurationVpnv6 This property is required. string
Enable/disable VPNv6 inbound soft reconfiguration.
staleRoute This property is required. string
Enable/disable stale route after neighbor down.
strictCapabilityMatch This property is required. string
Enable/disable strict capability matching.
unsuppressMap This property is required. string
IPv4 Route map to selectively unsuppress suppressed routes.
unsuppressMap6 This property is required. string
IPv6 Route map to selectively unsuppress suppressed routes.
updateSource This property is required. string
Interface to use as source IP/IPv6 address of TCP connections.
weight This property is required. number
Neighbor weight.
activate This property is required. str
Enable/disable address family IPv4 for this neighbor.
activate6 This property is required. str
Enable/disable address family IPv6 for this neighbor.
activate_evpn This property is required. str
Enable/disable address family L2VPN EVPN for this neighbor.
activate_vpnv4 This property is required. str
Enable/disable address family VPNv4 for this neighbor.
activate_vpnv6 This property is required. str
Enable/disable address family VPNv6 for this neighbor.
additional_path This property is required. str
Enable/disable IPv4 additional-path capability.
additional_path6 This property is required. str
Enable/disable IPv6 additional-path capability.
additional_path_vpnv4 This property is required. str
Enable/disable VPNv4 additional-path capability.
additional_path_vpnv6 This property is required. str
Enable/disable VPNv6 additional-path capability.
adv_additional_path This property is required. int
Number of IPv4 additional paths that can be advertised to this neighbor.
adv_additional_path6 This property is required. int
Number of IPv6 additional paths that can be advertised to this neighbor.
adv_additional_path_vpnv4 This property is required. int
Number of VPNv4 additional paths that can be advertised to this neighbor.
adv_additional_path_vpnv6 This property is required. int
Number of VPNv6 additional paths that can be advertised to this neighbor.
This property is required. int
Minimum interval (sec) between sending updates.
allowas_in This property is required. int
IPv4 The maximum number of occurrence of my AS number allowed.
allowas_in6 This property is required. int
IPv6 The maximum number of occurrence of my AS number allowed.
allowas_in_enable This property is required. str
Enable/disable IPv4 Enable to allow my AS in AS path.
allowas_in_enable6 This property is required. str
Enable/disable IPv6 Enable to allow my AS in AS path.
allowas_in_enable_evpn This property is required. str
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
allowas_in_enable_vpnv4 This property is required. str
Enable/disable to allow my AS in AS path for VPNv4 route.
allowas_in_enable_vpnv6 This property is required. str
Enable/disable use of my AS in AS path for VPNv6 route.
allowas_in_evpn This property is required. int
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
allowas_in_vpnv4 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv4 route.
allowas_in_vpnv6 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv6 route.
as_override This property is required. str
Enable/disable replace peer AS with own AS for IPv4.
as_override6 This property is required. str
Enable/disable replace peer AS with own AS for IPv6.
attribute_unchanged This property is required. str
IPv4 List of attributes that should be unchanged.
attribute_unchanged6 This property is required. str
IPv6 List of attributes that should be unchanged.
attribute_unchanged_vpnv4 This property is required. str
List of attributes that should be unchanged for VPNv4 route.
attribute_unchanged_vpnv6 This property is required. str
List of attributes that should not be changed for VPNv6 route.
auth_options This property is required. str
Key-chain name for TCP authentication options.
bfd This property is required. str
Enable/disable BFD for this neighbor.
capability_default_originate This property is required. str
Enable/disable advertise default IPv4 route to this neighbor.
capability_default_originate6 This property is required. str
Enable/disable advertise default IPv6 route to this neighbor.
capability_dynamic This property is required. str
Enable/disable advertise dynamic capability to this neighbor.
capability_graceful_restart This property is required. str
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
capability_graceful_restart6 This property is required. str
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
capability_graceful_restart_evpn This property is required. str
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
capability_graceful_restart_vpnv4 This property is required. str
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
capability_graceful_restart_vpnv6 This property is required. str
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
capability_orf This property is required. str
Accept/Send IPv4 ORF lists to/from this neighbor.
capability_orf6 This property is required. str
Accept/Send IPv6 ORF lists to/from this neighbor.
capability_route_refresh This property is required. str
Enable/disable advertise route refresh capability to this neighbor.
conditional_advertise6s This property is required. Sequence[GetBgpNeighborConditionalAdvertise6]
IPv6 conditional advertisement. The structure of conditional_advertise6 block is documented below.
conditional_advertises This property is required. Sequence[GetBgpNeighborConditionalAdvertise]
Conditional advertisement. The structure of conditional_advertise block is documented below.
connect_timer This property is required. int
Interval (sec) for connect timer.
default_originate_routemap This property is required. str
Route map to specify criteria to originate IPv4 default.
default_originate_routemap6 This property is required. str
Route map to specify criteria to originate IPv6 default.
description This property is required. str
Description.
distribute_list_in This property is required. str
Filter for IPv4 updates from this neighbor.
distribute_list_in6 This property is required. str
Filter for IPv6 updates from this neighbor.
distribute_list_in_vpnv4 This property is required. str
Filter for VPNv4 updates from this neighbor.
distribute_list_in_vpnv6 This property is required. str
Filter for VPNv6 updates from this neighbor.
distribute_list_out This property is required. str
Filter for IPv4 updates to this neighbor.
distribute_list_out6 This property is required. str
Filter for IPv6 updates to this neighbor.
distribute_list_out_vpnv4 This property is required. str
Filter for VPNv4 updates to this neighbor.
distribute_list_out_vpnv6 This property is required. str
Filter for VPNv6 updates to this neighbor.
dont_capability_negotiate This property is required. str
Don't negotiate capabilities with this neighbor
ebgp_enforce_multihop This property is required. str
Enable/disable allow multi-hop EBGP neighbors.
ebgp_multihop_ttl This property is required. int
EBGP multihop TTL for this peer.
filter_list_in This property is required. str
BGP filter for IPv4 inbound routes.
filter_list_in6 This property is required. str
BGP filter for IPv6 inbound routes.
filter_list_in_vpnv4 This property is required. str
BGP filter for VPNv4 inbound routes.
filter_list_in_vpnv6 This property is required. str
BGP filter for VPNv6 inbound routes.
filter_list_out This property is required. str
BGP filter for IPv4 outbound routes.
filter_list_out6 This property is required. str
BGP filter for IPv6 outbound routes.
filter_list_out_vpnv4 This property is required. str
BGP filter for VPNv4 outbound routes.
filter_list_out_vpnv6 This property is required. str
BGP filter for VPNv6 outbound routes.
holdtime_timer This property is required. int
Interval (sec) before peer considered dead.
interface This property is required. str
Interface which is used to leak routes to target VRF.
ip This property is required. str
IP/IPv6 address of neighbor.
keep_alive_timer This property is required. int
Keep alive timer interval (sec).
link_down_failover This property is required. str
Enable/disable failover upon link down.
local_as This property is required. int
Local AS number of neighbor.
local_as_no_prepend This property is required. str
Do not prepend local-as to incoming updates.
local_as_replace_as This property is required. str
Replace real AS with local-as in outgoing updates.
maximum_prefix This property is required. int
Maximum number of IPv4 prefixes to accept from this peer.
maximum_prefix6 This property is required. int
Maximum number of IPv6 prefixes to accept from this peer.
maximum_prefix_evpn This property is required. int
Maximum number of L2VPN EVPN prefixes to accept from this peer.
maximum_prefix_threshold This property is required. int
Maximum IPv4 prefix threshold value (1 - 100 percent).
maximum_prefix_threshold6 This property is required. int
Maximum IPv6 prefix threshold value (1 - 100 percent).
maximum_prefix_threshold_evpn This property is required. int
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
maximum_prefix_threshold_vpnv4 This property is required. int
Maximum VPNv4 prefix threshold value (1 - 100 percent).
maximum_prefix_threshold_vpnv6 This property is required. int
Maximum VPNv6 prefix threshold value (1 - 100 percent).
maximum_prefix_vpnv4 This property is required. int
Maximum number of VPNv4 prefixes to accept from this peer.
maximum_prefix_vpnv6 This property is required. int
Maximum number of VPNv6 prefixes to accept from this peer.
maximum_prefix_warning_only This property is required. str
Enable/disable IPv4 Only give warning message when limit is exceeded.
maximum_prefix_warning_only6 This property is required. str
Enable/disable IPv6 Only give warning message when limit is exceeded.
maximum_prefix_warning_only_evpn This property is required. str
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
maximum_prefix_warning_only_vpnv4 This property is required. str
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
maximum_prefix_warning_only_vpnv6 This property is required. str
Enable/disable warning message when limit is exceeded for VPNv6 routes.
next_hop_self This property is required. str
Enable/disable IPv4 next-hop calculation for this neighbor.
next_hop_self6 This property is required. str
Enable/disable IPv6 next-hop calculation for this neighbor.
next_hop_self_rr This property is required. str
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
next_hop_self_rr6 This property is required. str
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
next_hop_self_vpnv4 This property is required. str
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
next_hop_self_vpnv6 This property is required. str
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
override_capability This property is required. str
Enable/disable override result of capability negotiation.
passive This property is required. str
Enable/disable sending of open messages to this neighbor.
password This property is required. str
Password used in MD5 authentication.
prefix_list_in This property is required. str
IPv4 Inbound filter for updates from this neighbor.
prefix_list_in6 This property is required. str
IPv6 Inbound filter for updates from this neighbor.
prefix_list_in_vpnv4 This property is required. str
Inbound filter for VPNv4 updates from this neighbor.
prefix_list_in_vpnv6 This property is required. str
Inbound filter for VPNv6 updates from this neighbor.
prefix_list_out This property is required. str
IPv4 Outbound filter for updates to this neighbor.
prefix_list_out6 This property is required. str
IPv6 Outbound filter for updates to this neighbor.
prefix_list_out_vpnv4 This property is required. str
Outbound filter for VPNv4 updates to this neighbor.
prefix_list_out_vpnv6 This property is required. str
Outbound filter for VPNv6 updates to this neighbor.
remote_as This property is required. int
AS number of neighbor.
remove_private_as This property is required. str
Enable/disable remove private AS number from IPv4 outbound updates.
remove_private_as6 This property is required. str
Enable/disable remove private AS number from IPv6 outbound updates.
remove_private_as_evpn This property is required. str
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
remove_private_as_vpnv4 This property is required. str
Enable/disable remove private AS number from VPNv4 outbound updates.
remove_private_as_vpnv6 This property is required. str
Enable/disable to remove private AS number from VPNv6 outbound updates.
restart_time This property is required. int
Graceful restart delay time (sec, 0 = global default).
retain_stale_time This property is required. int
Time to retain stale routes.
route_map_in This property is required. str
IPv4 Inbound route map filter.
route_map_in6 This property is required. str
IPv6 Inbound route map filter.
route_map_in_evpn This property is required. str
L2VPN EVPN inbound route map filter.
route_map_in_vpnv4 This property is required. str
VPNv4 inbound route map filter.
route_map_in_vpnv6 This property is required. str
VPNv6 inbound route map filter.
route_map_out This property is required. str
IPv4 Outbound route map filter.
route_map_out6 This property is required. str
IPv6 Outbound route map filter.
route_map_out6_preferable This property is required. str
IPv6 outbound route map filter if the peer is preferred.
route_map_out_evpn This property is required. str
L2VPN EVPN outbound route map filter.
route_map_out_preferable This property is required. str
IPv4 outbound route map filter if the peer is preferred.
route_map_out_vpnv4 This property is required. str
VPNv4 outbound route map filter.
route_map_out_vpnv4_preferable This property is required. str
VPNv4 outbound route map filter if the peer is preferred.
route_map_out_vpnv6 This property is required. str
VPNv6 outbound route map filter.
route_map_out_vpnv6_preferable This property is required. str
VPNv6 outbound route map filter if this neighbor is preferred.
route_reflector_client This property is required. str
Enable/disable IPv4 AS route reflector client.
route_reflector_client6 This property is required. str
Enable/disable IPv6 AS route reflector client.
route_reflector_client_evpn This property is required. str
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
route_reflector_client_vpnv4 This property is required. str
Enable/disable VPNv4 AS route reflector client for this neighbor.
route_reflector_client_vpnv6 This property is required. str
Enable/disable VPNv6 AS route reflector client for this neighbor.
route_server_client This property is required. str
Enable/disable IPv4 AS route server client.
route_server_client6 This property is required. str
Enable/disable IPv6 AS route server client.
route_server_client_evpn This property is required. str
Enable/disable L2VPN EVPN AS route server client for this neighbor.
route_server_client_vpnv4 This property is required. str
Enable/disable VPNv4 AS route server client for this neighbor.
route_server_client_vpnv6 This property is required. str
Enable/disable VPNv6 AS route server client for this neighbor.
send_community This property is required. str
IPv4 Send community attribute to neighbor.
send_community6 This property is required. str
IPv6 Send community attribute to neighbor.
send_community_evpn This property is required. str
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
send_community_vpnv4 This property is required. str
Send community attribute to neighbor for VPNv4 address family.
send_community_vpnv6 This property is required. str
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
shutdown This property is required. str
Enable/disable shutdown this neighbor.
soft_reconfiguration This property is required. str
Enable/disable allow IPv4 inbound soft reconfiguration.
soft_reconfiguration6 This property is required. str
Enable/disable allow IPv6 inbound soft reconfiguration.
soft_reconfiguration_evpn This property is required. str
Enable/disable L2VPN EVPN inbound soft reconfiguration.
soft_reconfiguration_vpnv4 This property is required. str
Enable/disable allow VPNv4 inbound soft reconfiguration.
soft_reconfiguration_vpnv6 This property is required. str
Enable/disable VPNv6 inbound soft reconfiguration.
stale_route This property is required. str
Enable/disable stale route after neighbor down.
strict_capability_match This property is required. str
Enable/disable strict capability matching.
unsuppress_map This property is required. str
IPv4 Route map to selectively unsuppress suppressed routes.
unsuppress_map6 This property is required. str
IPv6 Route map to selectively unsuppress suppressed routes.
update_source This property is required. str
Interface to use as source IP/IPv6 address of TCP connections.
weight This property is required. int
Neighbor weight.
activate This property is required. String
Enable/disable address family IPv4 for this neighbor.
activate6 This property is required. String
Enable/disable address family IPv6 for this neighbor.
activateEvpn This property is required. String
Enable/disable address family L2VPN EVPN for this neighbor.
activateVpnv4 This property is required. String
Enable/disable address family VPNv4 for this neighbor.
activateVpnv6 This property is required. String
Enable/disable address family VPNv6 for this neighbor.
additionalPath This property is required. String
Enable/disable IPv4 additional-path capability.
additionalPath6 This property is required. String
Enable/disable IPv6 additional-path capability.
additionalPathVpnv4 This property is required. String
Enable/disable VPNv4 additional-path capability.
additionalPathVpnv6 This property is required. String
Enable/disable VPNv6 additional-path capability.
advAdditionalPath This property is required. Number
Number of IPv4 additional paths that can be advertised to this neighbor.
advAdditionalPath6 This property is required. Number
Number of IPv6 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv4 This property is required. Number
Number of VPNv4 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv6 This property is required. Number
Number of VPNv6 additional paths that can be advertised to this neighbor.
advertisementInterval This property is required. Number
Minimum interval (sec) between sending updates.
allowasIn This property is required. Number
IPv4 The maximum number of occurrence of my AS number allowed.
allowasIn6 This property is required. Number
IPv6 The maximum number of occurrence of my AS number allowed.
allowasInEnable This property is required. String
Enable/disable IPv4 Enable to allow my AS in AS path.
allowasInEnable6 This property is required. String
Enable/disable IPv6 Enable to allow my AS in AS path.
allowasInEnableEvpn This property is required. String
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
allowasInEnableVpnv4 This property is required. String
Enable/disable to allow my AS in AS path for VPNv4 route.
allowasInEnableVpnv6 This property is required. String
Enable/disable use of my AS in AS path for VPNv6 route.
allowasInEvpn This property is required. Number
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
allowasInVpnv4 This property is required. Number
The maximum number of occurrence of my AS number allowed for VPNv4 route.
allowasInVpnv6 This property is required. Number
The maximum number of occurrence of my AS number allowed for VPNv6 route.
asOverride This property is required. String
Enable/disable replace peer AS with own AS for IPv4.
asOverride6 This property is required. String
Enable/disable replace peer AS with own AS for IPv6.
attributeUnchanged This property is required. String
IPv4 List of attributes that should be unchanged.
attributeUnchanged6 This property is required. String
IPv6 List of attributes that should be unchanged.
attributeUnchangedVpnv4 This property is required. String
List of attributes that should be unchanged for VPNv4 route.
attributeUnchangedVpnv6 This property is required. String
List of attributes that should not be changed for VPNv6 route.
authOptions This property is required. String
Key-chain name for TCP authentication options.
bfd This property is required. String
Enable/disable BFD for this neighbor.
capabilityDefaultOriginate This property is required. String
Enable/disable advertise default IPv4 route to this neighbor.
capabilityDefaultOriginate6 This property is required. String
Enable/disable advertise default IPv6 route to this neighbor.
capabilityDynamic This property is required. String
Enable/disable advertise dynamic capability to this neighbor.
capabilityGracefulRestart This property is required. String
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
capabilityGracefulRestart6 This property is required. String
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
capabilityGracefulRestartEvpn This property is required. String
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv4 This property is required. String
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv6 This property is required. String
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
capabilityOrf This property is required. String
Accept/Send IPv4 ORF lists to/from this neighbor.
capabilityOrf6 This property is required. String
Accept/Send IPv6 ORF lists to/from this neighbor.
capabilityRouteRefresh This property is required. String
Enable/disable advertise route refresh capability to this neighbor.
conditionalAdvertise6s This property is required. List<Property Map>
IPv6 conditional advertisement. The structure of conditional_advertise6 block is documented below.
conditionalAdvertises This property is required. List<Property Map>
Conditional advertisement. The structure of conditional_advertise block is documented below.
connectTimer This property is required. Number
Interval (sec) for connect timer.
defaultOriginateRoutemap This property is required. String
Route map to specify criteria to originate IPv4 default.
defaultOriginateRoutemap6 This property is required. String
Route map to specify criteria to originate IPv6 default.
description This property is required. String
Description.
distributeListIn This property is required. String
Filter for IPv4 updates from this neighbor.
distributeListIn6 This property is required. String
Filter for IPv6 updates from this neighbor.
distributeListInVpnv4 This property is required. String
Filter for VPNv4 updates from this neighbor.
distributeListInVpnv6 This property is required. String
Filter for VPNv6 updates from this neighbor.
distributeListOut This property is required. String
Filter for IPv4 updates to this neighbor.
distributeListOut6 This property is required. String
Filter for IPv6 updates to this neighbor.
distributeListOutVpnv4 This property is required. String
Filter for VPNv4 updates to this neighbor.
distributeListOutVpnv6 This property is required. String
Filter for VPNv6 updates to this neighbor.
dontCapabilityNegotiate This property is required. String
Don't negotiate capabilities with this neighbor
ebgpEnforceMultihop This property is required. String
Enable/disable allow multi-hop EBGP neighbors.
ebgpMultihopTtl This property is required. Number
EBGP multihop TTL for this peer.
filterListIn This property is required. String
BGP filter for IPv4 inbound routes.
filterListIn6 This property is required. String
BGP filter for IPv6 inbound routes.
filterListInVpnv4 This property is required. String
BGP filter for VPNv4 inbound routes.
filterListInVpnv6 This property is required. String
BGP filter for VPNv6 inbound routes.
filterListOut This property is required. String
BGP filter for IPv4 outbound routes.
filterListOut6 This property is required. String
BGP filter for IPv6 outbound routes.
filterListOutVpnv4 This property is required. String
BGP filter for VPNv4 outbound routes.
filterListOutVpnv6 This property is required. String
BGP filter for VPNv6 outbound routes.
holdtimeTimer This property is required. Number
Interval (sec) before peer considered dead.
interface This property is required. String
Interface which is used to leak routes to target VRF.
ip This property is required. String
IP/IPv6 address of neighbor.
keepAliveTimer This property is required. Number
Keep alive timer interval (sec).
linkDownFailover This property is required. String
Enable/disable failover upon link down.
localAs This property is required. Number
Local AS number of neighbor.
localAsNoPrepend This property is required. String
Do not prepend local-as to incoming updates.
localAsReplaceAs This property is required. String
Replace real AS with local-as in outgoing updates.
maximumPrefix This property is required. Number
Maximum number of IPv4 prefixes to accept from this peer.
maximumPrefix6 This property is required. Number
Maximum number of IPv6 prefixes to accept from this peer.
maximumPrefixEvpn This property is required. Number
Maximum number of L2VPN EVPN prefixes to accept from this peer.
maximumPrefixThreshold This property is required. Number
Maximum IPv4 prefix threshold value (1 - 100 percent).
maximumPrefixThreshold6 This property is required. Number
Maximum IPv6 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdEvpn This property is required. Number
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv4 This property is required. Number
Maximum VPNv4 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv6 This property is required. Number
Maximum VPNv6 prefix threshold value (1 - 100 percent).
maximumPrefixVpnv4 This property is required. Number
Maximum number of VPNv4 prefixes to accept from this peer.
maximumPrefixVpnv6 This property is required. Number
Maximum number of VPNv6 prefixes to accept from this peer.
maximumPrefixWarningOnly This property is required. String
Enable/disable IPv4 Only give warning message when limit is exceeded.
maximumPrefixWarningOnly6 This property is required. String
Enable/disable IPv6 Only give warning message when limit is exceeded.
maximumPrefixWarningOnlyEvpn This property is required. String
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
maximumPrefixWarningOnlyVpnv4 This property is required. String
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
maximumPrefixWarningOnlyVpnv6 This property is required. String
Enable/disable warning message when limit is exceeded for VPNv6 routes.
nextHopSelf This property is required. String
Enable/disable IPv4 next-hop calculation for this neighbor.
nextHopSelf6 This property is required. String
Enable/disable IPv6 next-hop calculation for this neighbor.
nextHopSelfRr This property is required. String
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
nextHopSelfRr6 This property is required. String
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
nextHopSelfVpnv4 This property is required. String
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
nextHopSelfVpnv6 This property is required. String
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
overrideCapability This property is required. String
Enable/disable override result of capability negotiation.
passive This property is required. String
Enable/disable sending of open messages to this neighbor.
password This property is required. String
Password used in MD5 authentication.
prefixListIn This property is required. String
IPv4 Inbound filter for updates from this neighbor.
prefixListIn6 This property is required. String
IPv6 Inbound filter for updates from this neighbor.
prefixListInVpnv4 This property is required. String
Inbound filter for VPNv4 updates from this neighbor.
prefixListInVpnv6 This property is required. String
Inbound filter for VPNv6 updates from this neighbor.
prefixListOut This property is required. String
IPv4 Outbound filter for updates to this neighbor.
prefixListOut6 This property is required. String
IPv6 Outbound filter for updates to this neighbor.
prefixListOutVpnv4 This property is required. String
Outbound filter for VPNv4 updates to this neighbor.
prefixListOutVpnv6 This property is required. String
Outbound filter for VPNv6 updates to this neighbor.
remoteAs This property is required. Number
AS number of neighbor.
removePrivateAs This property is required. String
Enable/disable remove private AS number from IPv4 outbound updates.
removePrivateAs6 This property is required. String
Enable/disable remove private AS number from IPv6 outbound updates.
removePrivateAsEvpn This property is required. String
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
removePrivateAsVpnv4 This property is required. String
Enable/disable remove private AS number from VPNv4 outbound updates.
removePrivateAsVpnv6 This property is required. String
Enable/disable to remove private AS number from VPNv6 outbound updates.
restartTime This property is required. Number
Graceful restart delay time (sec, 0 = global default).
retainStaleTime This property is required. Number
Time to retain stale routes.
routeMapIn This property is required. String
IPv4 Inbound route map filter.
routeMapIn6 This property is required. String
IPv6 Inbound route map filter.
routeMapInEvpn This property is required. String
L2VPN EVPN inbound route map filter.
routeMapInVpnv4 This property is required. String
VPNv4 inbound route map filter.
routeMapInVpnv6 This property is required. String
VPNv6 inbound route map filter.
routeMapOut This property is required. String
IPv4 Outbound route map filter.
routeMapOut6 This property is required. String
IPv6 Outbound route map filter.
routeMapOut6Preferable This property is required. String
IPv6 outbound route map filter if the peer is preferred.
routeMapOutEvpn This property is required. String
L2VPN EVPN outbound route map filter.
routeMapOutPreferable This property is required. String
IPv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv4 This property is required. String
VPNv4 outbound route map filter.
routeMapOutVpnv4Preferable This property is required. String
VPNv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv6 This property is required. String
VPNv6 outbound route map filter.
routeMapOutVpnv6Preferable This property is required. String
VPNv6 outbound route map filter if this neighbor is preferred.
routeReflectorClient This property is required. String
Enable/disable IPv4 AS route reflector client.
routeReflectorClient6 This property is required. String
Enable/disable IPv6 AS route reflector client.
routeReflectorClientEvpn This property is required. String
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
routeReflectorClientVpnv4 This property is required. String
Enable/disable VPNv4 AS route reflector client for this neighbor.
routeReflectorClientVpnv6 This property is required. String
Enable/disable VPNv6 AS route reflector client for this neighbor.
routeServerClient This property is required. String
Enable/disable IPv4 AS route server client.
routeServerClient6 This property is required. String
Enable/disable IPv6 AS route server client.
routeServerClientEvpn This property is required. String
Enable/disable L2VPN EVPN AS route server client for this neighbor.
routeServerClientVpnv4 This property is required. String
Enable/disable VPNv4 AS route server client for this neighbor.
routeServerClientVpnv6 This property is required. String
Enable/disable VPNv6 AS route server client for this neighbor.
sendCommunity This property is required. String
IPv4 Send community attribute to neighbor.
sendCommunity6 This property is required. String
IPv6 Send community attribute to neighbor.
sendCommunityEvpn This property is required. String
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
sendCommunityVpnv4 This property is required. String
Send community attribute to neighbor for VPNv4 address family.
sendCommunityVpnv6 This property is required. String
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
shutdown This property is required. String
Enable/disable shutdown this neighbor.
softReconfiguration This property is required. String
Enable/disable allow IPv4 inbound soft reconfiguration.
softReconfiguration6 This property is required. String
Enable/disable allow IPv6 inbound soft reconfiguration.
softReconfigurationEvpn This property is required. String
Enable/disable L2VPN EVPN inbound soft reconfiguration.
softReconfigurationVpnv4 This property is required. String
Enable/disable allow VPNv4 inbound soft reconfiguration.
softReconfigurationVpnv6 This property is required. String
Enable/disable VPNv6 inbound soft reconfiguration.
staleRoute This property is required. String
Enable/disable stale route after neighbor down.
strictCapabilityMatch This property is required. String
Enable/disable strict capability matching.
unsuppressMap This property is required. String
IPv4 Route map to selectively unsuppress suppressed routes.
unsuppressMap6 This property is required. String
IPv6 Route map to selectively unsuppress suppressed routes.
updateSource This property is required. String
Interface to use as source IP/IPv6 address of TCP connections.
weight This property is required. Number
Neighbor weight.

GetBgpNeighborConditionalAdvertise

AdvertiseRoutemap This property is required. string
Name of advertising route map.
ConditionRoutemap This property is required. string
Name of condition route map.
ConditionType This property is required. string
Type of condition.
AdvertiseRoutemap This property is required. string
Name of advertising route map.
ConditionRoutemap This property is required. string
Name of condition route map.
ConditionType This property is required. string
Type of condition.
advertiseRoutemap This property is required. String
Name of advertising route map.
conditionRoutemap This property is required. String
Name of condition route map.
conditionType This property is required. String
Type of condition.
advertiseRoutemap This property is required. string
Name of advertising route map.
conditionRoutemap This property is required. string
Name of condition route map.
conditionType This property is required. string
Type of condition.
This property is required. str
Name of advertising route map.
condition_routemap This property is required. str
Name of condition route map.
condition_type This property is required. str
Type of condition.
advertiseRoutemap This property is required. String
Name of advertising route map.
conditionRoutemap This property is required. String
Name of condition route map.
conditionType This property is required. String
Type of condition.

GetBgpNeighborConditionalAdvertise6

AdvertiseRoutemap This property is required. string
Name of advertising route map.
ConditionRoutemap This property is required. string
Name of condition route map.
ConditionType This property is required. string
Type of condition.
AdvertiseRoutemap This property is required. string
Name of advertising route map.
ConditionRoutemap This property is required. string
Name of condition route map.
ConditionType This property is required. string
Type of condition.
advertiseRoutemap This property is required. String
Name of advertising route map.
conditionRoutemap This property is required. String
Name of condition route map.
conditionType This property is required. String
Type of condition.
advertiseRoutemap This property is required. string
Name of advertising route map.
conditionRoutemap This property is required. string
Name of condition route map.
conditionType This property is required. string
Type of condition.
This property is required. str
Name of advertising route map.
condition_routemap This property is required. str
Name of condition route map.
condition_type This property is required. str
Type of condition.
advertiseRoutemap This property is required. String
Name of advertising route map.
conditionRoutemap This property is required. String
Name of condition route map.
conditionType This property is required. String
Type of condition.

GetBgpNeighborGroup

Activate This property is required. string
Enable/disable address family IPv4 for this neighbor.
Activate6 This property is required. string
Enable/disable address family IPv6 for this neighbor.
ActivateEvpn This property is required. string
Enable/disable address family L2VPN EVPN for this neighbor.
ActivateVpnv4 This property is required. string
Enable/disable address family VPNv4 for this neighbor.
ActivateVpnv6 This property is required. string
Enable/disable address family VPNv6 for this neighbor.
AdditionalPath This property is required. string
Enable/disable IPv4 additional-path capability.
AdditionalPath6 This property is required. string
Enable/disable IPv6 additional-path capability.
AdditionalPathVpnv4 This property is required. string
Enable/disable VPNv4 additional-path capability.
AdditionalPathVpnv6 This property is required. string
Enable/disable VPNv6 additional-path capability.
AdvAdditionalPath This property is required. int
Number of IPv4 additional paths that can be advertised to this neighbor.
AdvAdditionalPath6 This property is required. int
Number of IPv6 additional paths that can be advertised to this neighbor.
AdvAdditionalPathVpnv4 This property is required. int
Number of VPNv4 additional paths that can be advertised to this neighbor.
AdvAdditionalPathVpnv6 This property is required. int
Number of VPNv6 additional paths that can be advertised to this neighbor.
AdvertisementInterval This property is required. int
Minimum interval (sec) between sending updates.
AllowasIn This property is required. int
IPv4 The maximum number of occurrence of my AS number allowed.
AllowasIn6 This property is required. int
IPv6 The maximum number of occurrence of my AS number allowed.
AllowasInEnable This property is required. string
Enable/disable IPv4 Enable to allow my AS in AS path.
AllowasInEnable6 This property is required. string
Enable/disable IPv6 Enable to allow my AS in AS path.
AllowasInEnableEvpn This property is required. string
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
AllowasInEnableVpnv4 This property is required. string
Enable/disable to allow my AS in AS path for VPNv4 route.
AllowasInEnableVpnv6 This property is required. string
Enable/disable use of my AS in AS path for VPNv6 route.
AllowasInEvpn This property is required. int
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
AllowasInVpnv4 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv4 route.
AllowasInVpnv6 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv6 route.
AsOverride This property is required. string
Enable/disable replace peer AS with own AS for IPv4.
AsOverride6 This property is required. string
Enable/disable replace peer AS with own AS for IPv6.
AttributeUnchanged This property is required. string
IPv4 List of attributes that should be unchanged.
AttributeUnchanged6 This property is required. string
IPv6 List of attributes that should be unchanged.
AttributeUnchangedVpnv4 This property is required. string
List of attributes that should be unchanged for VPNv4 route.
AttributeUnchangedVpnv6 This property is required. string
List of attributes that should not be changed for VPNv6 route.
AuthOptions This property is required. string
Key-chain name for TCP authentication options.
Bfd This property is required. string
Enable/disable BFD for this neighbor.
CapabilityDefaultOriginate This property is required. string
Enable/disable advertise default IPv4 route to this neighbor.
CapabilityDefaultOriginate6 This property is required. string
Enable/disable advertise default IPv6 route to this neighbor.
CapabilityDynamic This property is required. string
Enable/disable advertise dynamic capability to this neighbor.
CapabilityGracefulRestart This property is required. string
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
CapabilityGracefulRestart6 This property is required. string
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
CapabilityGracefulRestartEvpn This property is required. string
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
CapabilityGracefulRestartVpnv4 This property is required. string
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
CapabilityGracefulRestartVpnv6 This property is required. string
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
CapabilityOrf This property is required. string
Accept/Send IPv4 ORF lists to/from this neighbor.
CapabilityOrf6 This property is required. string
Accept/Send IPv6 ORF lists to/from this neighbor.
CapabilityRouteRefresh This property is required. string
Enable/disable advertise route refresh capability to this neighbor.
ConnectTimer This property is required. int
Interval (sec) for connect timer.
DefaultOriginateRoutemap This property is required. string
Route map to specify criteria to originate IPv4 default.
DefaultOriginateRoutemap6 This property is required. string
Route map to specify criteria to originate IPv6 default.
Description This property is required. string
Description.
DistributeListIn This property is required. string
Filter for IPv4 updates from this neighbor.
DistributeListIn6 This property is required. string
Filter for IPv6 updates from this neighbor.
DistributeListInVpnv4 This property is required. string
Filter for VPNv4 updates from this neighbor.
DistributeListInVpnv6 This property is required. string
Filter for VPNv6 updates from this neighbor.
DistributeListOut This property is required. string
Filter for IPv4 updates to this neighbor.
DistributeListOut6 This property is required. string
Filter for IPv6 updates to this neighbor.
DistributeListOutVpnv4 This property is required. string
Filter for VPNv4 updates to this neighbor.
DistributeListOutVpnv6 This property is required. string
Filter for VPNv6 updates to this neighbor.
DontCapabilityNegotiate This property is required. string
Don't negotiate capabilities with this neighbor
EbgpEnforceMultihop This property is required. string
Enable/disable allow multi-hop EBGP neighbors.
EbgpMultihopTtl This property is required. int
EBGP multihop TTL for this peer.
FilterListIn This property is required. string
BGP filter for IPv4 inbound routes.
FilterListIn6 This property is required. string
BGP filter for IPv6 inbound routes.
FilterListInVpnv4 This property is required. string
BGP filter for VPNv4 inbound routes.
FilterListInVpnv6 This property is required. string
BGP filter for VPNv6 inbound routes.
FilterListOut This property is required. string
BGP filter for IPv4 outbound routes.
FilterListOut6 This property is required. string
BGP filter for IPv6 outbound routes.
FilterListOutVpnv4 This property is required. string
BGP filter for VPNv4 outbound routes.
FilterListOutVpnv6 This property is required. string
BGP filter for VPNv6 outbound routes.
HoldtimeTimer This property is required. int
Interval (sec) before peer considered dead.
Interface This property is required. string
Interface which is used to leak routes to target VRF.
KeepAliveTimer This property is required. int
Keep alive timer interval (sec).
LinkDownFailover This property is required. string
Enable/disable failover upon link down.
LocalAs This property is required. int
Local AS number of neighbor.
LocalAsNoPrepend This property is required. string
Do not prepend local-as to incoming updates.
LocalAsReplaceAs This property is required. string
Replace real AS with local-as in outgoing updates.
MaximumPrefix This property is required. int
Maximum number of IPv4 prefixes to accept from this peer.
MaximumPrefix6 This property is required. int
Maximum number of IPv6 prefixes to accept from this peer.
MaximumPrefixEvpn This property is required. int
Maximum number of L2VPN EVPN prefixes to accept from this peer.
MaximumPrefixThreshold This property is required. int
Maximum IPv4 prefix threshold value (1 - 100 percent).
MaximumPrefixThreshold6 This property is required. int
Maximum IPv6 prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdEvpn This property is required. int
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdVpnv4 This property is required. int
Maximum VPNv4 prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdVpnv6 This property is required. int
Maximum VPNv6 prefix threshold value (1 - 100 percent).
MaximumPrefixVpnv4 This property is required. int
Maximum number of VPNv4 prefixes to accept from this peer.
MaximumPrefixVpnv6 This property is required. int
Maximum number of VPNv6 prefixes to accept from this peer.
MaximumPrefixWarningOnly This property is required. string
Enable/disable IPv4 Only give warning message when limit is exceeded.
MaximumPrefixWarningOnly6 This property is required. string
Enable/disable IPv6 Only give warning message when limit is exceeded.
MaximumPrefixWarningOnlyEvpn This property is required. string
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
MaximumPrefixWarningOnlyVpnv4 This property is required. string
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
MaximumPrefixWarningOnlyVpnv6 This property is required. string
Enable/disable warning message when limit is exceeded for VPNv6 routes.
Name This property is required. string
Distribute list entry name.
NextHopSelf This property is required. string
Enable/disable IPv4 next-hop calculation for this neighbor.
NextHopSelf6 This property is required. string
Enable/disable IPv6 next-hop calculation for this neighbor.
NextHopSelfRr This property is required. string
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
NextHopSelfRr6 This property is required. string
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
NextHopSelfVpnv4 This property is required. string
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
NextHopSelfVpnv6 This property is required. string
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
OverrideCapability This property is required. string
Enable/disable override result of capability negotiation.
Passive This property is required. string
Enable/disable sending of open messages to this neighbor.
Password This property is required. string
Password used in MD5 authentication.
PrefixListIn This property is required. string
IPv4 Inbound filter for updates from this neighbor.
PrefixListIn6 This property is required. string
IPv6 Inbound filter for updates from this neighbor.
PrefixListInVpnv4 This property is required. string
Inbound filter for VPNv4 updates from this neighbor.
PrefixListInVpnv6 This property is required. string
Inbound filter for VPNv6 updates from this neighbor.
PrefixListOut This property is required. string
IPv4 Outbound filter for updates to this neighbor.
PrefixListOut6 This property is required. string
IPv6 Outbound filter for updates to this neighbor.
PrefixListOutVpnv4 This property is required. string
Outbound filter for VPNv4 updates to this neighbor.
PrefixListOutVpnv6 This property is required. string
Outbound filter for VPNv6 updates to this neighbor.
RemoteAs This property is required. int
AS number of neighbor.
RemoteAsFilter This property is required. string
BGP filter for remote AS.
RemovePrivateAs This property is required. string
Enable/disable remove private AS number from IPv4 outbound updates.
RemovePrivateAs6 This property is required. string
Enable/disable remove private AS number from IPv6 outbound updates.
RemovePrivateAsEvpn This property is required. string
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
RemovePrivateAsVpnv4 This property is required. string
Enable/disable remove private AS number from VPNv4 outbound updates.
RemovePrivateAsVpnv6 This property is required. string
Enable/disable to remove private AS number from VPNv6 outbound updates.
RestartTime This property is required. int
Graceful restart delay time (sec, 0 = global default).
RetainStaleTime This property is required. int
Time to retain stale routes.
RouteMapIn This property is required. string
IPv4 Inbound route map filter.
RouteMapIn6 This property is required. string
IPv6 Inbound route map filter.
RouteMapInEvpn This property is required. string
L2VPN EVPN inbound route map filter.
RouteMapInVpnv4 This property is required. string
VPNv4 inbound route map filter.
RouteMapInVpnv6 This property is required. string
VPNv6 inbound route map filter.
RouteMapOut This property is required. string
IPv4 Outbound route map filter.
RouteMapOut6 This property is required. string
IPv6 Outbound route map filter.
RouteMapOut6Preferable This property is required. string
IPv6 outbound route map filter if the peer is preferred.
RouteMapOutEvpn This property is required. string
L2VPN EVPN outbound route map filter.
RouteMapOutPreferable This property is required. string
IPv4 outbound route map filter if the peer is preferred.
RouteMapOutVpnv4 This property is required. string
VPNv4 outbound route map filter.
RouteMapOutVpnv4Preferable This property is required. string
VPNv4 outbound route map filter if the peer is preferred.
RouteMapOutVpnv6 This property is required. string
VPNv6 outbound route map filter.
RouteMapOutVpnv6Preferable This property is required. string
VPNv6 outbound route map filter if this neighbor is preferred.
RouteReflectorClient This property is required. string
Enable/disable IPv4 AS route reflector client.
RouteReflectorClient6 This property is required. string
Enable/disable IPv6 AS route reflector client.
RouteReflectorClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
RouteReflectorClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route reflector client for this neighbor.
RouteReflectorClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route reflector client for this neighbor.
RouteServerClient This property is required. string
Enable/disable IPv4 AS route server client.
RouteServerClient6 This property is required. string
Enable/disable IPv6 AS route server client.
RouteServerClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route server client for this neighbor.
RouteServerClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route server client for this neighbor.
RouteServerClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route server client for this neighbor.
SendCommunity This property is required. string
IPv4 Send community attribute to neighbor.
SendCommunity6 This property is required. string
IPv6 Send community attribute to neighbor.
SendCommunityEvpn This property is required. string
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
SendCommunityVpnv4 This property is required. string
Send community attribute to neighbor for VPNv4 address family.
SendCommunityVpnv6 This property is required. string
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
Shutdown This property is required. string
Enable/disable shutdown this neighbor.
SoftReconfiguration This property is required. string
Enable/disable allow IPv4 inbound soft reconfiguration.
SoftReconfiguration6 This property is required. string
Enable/disable allow IPv6 inbound soft reconfiguration.
SoftReconfigurationEvpn This property is required. string
Enable/disable L2VPN EVPN inbound soft reconfiguration.
SoftReconfigurationVpnv4 This property is required. string
Enable/disable allow VPNv4 inbound soft reconfiguration.
SoftReconfigurationVpnv6 This property is required. string
Enable/disable VPNv6 inbound soft reconfiguration.
StaleRoute This property is required. string
Enable/disable stale route after neighbor down.
StrictCapabilityMatch This property is required. string
Enable/disable strict capability matching.
UnsuppressMap This property is required. string
IPv4 Route map to selectively unsuppress suppressed routes.
UnsuppressMap6 This property is required. string
IPv6 Route map to selectively unsuppress suppressed routes.
UpdateSource This property is required. string
Interface to use as source IP/IPv6 address of TCP connections.
Weight This property is required. int
Neighbor weight.
Activate This property is required. string
Enable/disable address family IPv4 for this neighbor.
Activate6 This property is required. string
Enable/disable address family IPv6 for this neighbor.
ActivateEvpn This property is required. string
Enable/disable address family L2VPN EVPN for this neighbor.
ActivateVpnv4 This property is required. string
Enable/disable address family VPNv4 for this neighbor.
ActivateVpnv6 This property is required. string
Enable/disable address family VPNv6 for this neighbor.
AdditionalPath This property is required. string
Enable/disable IPv4 additional-path capability.
AdditionalPath6 This property is required. string
Enable/disable IPv6 additional-path capability.
AdditionalPathVpnv4 This property is required. string
Enable/disable VPNv4 additional-path capability.
AdditionalPathVpnv6 This property is required. string
Enable/disable VPNv6 additional-path capability.
AdvAdditionalPath This property is required. int
Number of IPv4 additional paths that can be advertised to this neighbor.
AdvAdditionalPath6 This property is required. int
Number of IPv6 additional paths that can be advertised to this neighbor.
AdvAdditionalPathVpnv4 This property is required. int
Number of VPNv4 additional paths that can be advertised to this neighbor.
AdvAdditionalPathVpnv6 This property is required. int
Number of VPNv6 additional paths that can be advertised to this neighbor.
AdvertisementInterval This property is required. int
Minimum interval (sec) between sending updates.
AllowasIn This property is required. int
IPv4 The maximum number of occurrence of my AS number allowed.
AllowasIn6 This property is required. int
IPv6 The maximum number of occurrence of my AS number allowed.
AllowasInEnable This property is required. string
Enable/disable IPv4 Enable to allow my AS in AS path.
AllowasInEnable6 This property is required. string
Enable/disable IPv6 Enable to allow my AS in AS path.
AllowasInEnableEvpn This property is required. string
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
AllowasInEnableVpnv4 This property is required. string
Enable/disable to allow my AS in AS path for VPNv4 route.
AllowasInEnableVpnv6 This property is required. string
Enable/disable use of my AS in AS path for VPNv6 route.
AllowasInEvpn This property is required. int
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
AllowasInVpnv4 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv4 route.
AllowasInVpnv6 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv6 route.
AsOverride This property is required. string
Enable/disable replace peer AS with own AS for IPv4.
AsOverride6 This property is required. string
Enable/disable replace peer AS with own AS for IPv6.
AttributeUnchanged This property is required. string
IPv4 List of attributes that should be unchanged.
AttributeUnchanged6 This property is required. string
IPv6 List of attributes that should be unchanged.
AttributeUnchangedVpnv4 This property is required. string
List of attributes that should be unchanged for VPNv4 route.
AttributeUnchangedVpnv6 This property is required. string
List of attributes that should not be changed for VPNv6 route.
AuthOptions This property is required. string
Key-chain name for TCP authentication options.
Bfd This property is required. string
Enable/disable BFD for this neighbor.
CapabilityDefaultOriginate This property is required. string
Enable/disable advertise default IPv4 route to this neighbor.
CapabilityDefaultOriginate6 This property is required. string
Enable/disable advertise default IPv6 route to this neighbor.
CapabilityDynamic This property is required. string
Enable/disable advertise dynamic capability to this neighbor.
CapabilityGracefulRestart This property is required. string
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
CapabilityGracefulRestart6 This property is required. string
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
CapabilityGracefulRestartEvpn This property is required. string
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
CapabilityGracefulRestartVpnv4 This property is required. string
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
CapabilityGracefulRestartVpnv6 This property is required. string
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
CapabilityOrf This property is required. string
Accept/Send IPv4 ORF lists to/from this neighbor.
CapabilityOrf6 This property is required. string
Accept/Send IPv6 ORF lists to/from this neighbor.
CapabilityRouteRefresh This property is required. string
Enable/disable advertise route refresh capability to this neighbor.
ConnectTimer This property is required. int
Interval (sec) for connect timer.
DefaultOriginateRoutemap This property is required. string
Route map to specify criteria to originate IPv4 default.
DefaultOriginateRoutemap6 This property is required. string
Route map to specify criteria to originate IPv6 default.
Description This property is required. string
Description.
DistributeListIn This property is required. string
Filter for IPv4 updates from this neighbor.
DistributeListIn6 This property is required. string
Filter for IPv6 updates from this neighbor.
DistributeListInVpnv4 This property is required. string
Filter for VPNv4 updates from this neighbor.
DistributeListInVpnv6 This property is required. string
Filter for VPNv6 updates from this neighbor.
DistributeListOut This property is required. string
Filter for IPv4 updates to this neighbor.
DistributeListOut6 This property is required. string
Filter for IPv6 updates to this neighbor.
DistributeListOutVpnv4 This property is required. string
Filter for VPNv4 updates to this neighbor.
DistributeListOutVpnv6 This property is required. string
Filter for VPNv6 updates to this neighbor.
DontCapabilityNegotiate This property is required. string
Don't negotiate capabilities with this neighbor
EbgpEnforceMultihop This property is required. string
Enable/disable allow multi-hop EBGP neighbors.
EbgpMultihopTtl This property is required. int
EBGP multihop TTL for this peer.
FilterListIn This property is required. string
BGP filter for IPv4 inbound routes.
FilterListIn6 This property is required. string
BGP filter for IPv6 inbound routes.
FilterListInVpnv4 This property is required. string
BGP filter for VPNv4 inbound routes.
FilterListInVpnv6 This property is required. string
BGP filter for VPNv6 inbound routes.
FilterListOut This property is required. string
BGP filter for IPv4 outbound routes.
FilterListOut6 This property is required. string
BGP filter for IPv6 outbound routes.
FilterListOutVpnv4 This property is required. string
BGP filter for VPNv4 outbound routes.
FilterListOutVpnv6 This property is required. string
BGP filter for VPNv6 outbound routes.
HoldtimeTimer This property is required. int
Interval (sec) before peer considered dead.
Interface This property is required. string
Interface which is used to leak routes to target VRF.
KeepAliveTimer This property is required. int
Keep alive timer interval (sec).
LinkDownFailover This property is required. string
Enable/disable failover upon link down.
LocalAs This property is required. int
Local AS number of neighbor.
LocalAsNoPrepend This property is required. string
Do not prepend local-as to incoming updates.
LocalAsReplaceAs This property is required. string
Replace real AS with local-as in outgoing updates.
MaximumPrefix This property is required. int
Maximum number of IPv4 prefixes to accept from this peer.
MaximumPrefix6 This property is required. int
Maximum number of IPv6 prefixes to accept from this peer.
MaximumPrefixEvpn This property is required. int
Maximum number of L2VPN EVPN prefixes to accept from this peer.
MaximumPrefixThreshold This property is required. int
Maximum IPv4 prefix threshold value (1 - 100 percent).
MaximumPrefixThreshold6 This property is required. int
Maximum IPv6 prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdEvpn This property is required. int
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdVpnv4 This property is required. int
Maximum VPNv4 prefix threshold value (1 - 100 percent).
MaximumPrefixThresholdVpnv6 This property is required. int
Maximum VPNv6 prefix threshold value (1 - 100 percent).
MaximumPrefixVpnv4 This property is required. int
Maximum number of VPNv4 prefixes to accept from this peer.
MaximumPrefixVpnv6 This property is required. int
Maximum number of VPNv6 prefixes to accept from this peer.
MaximumPrefixWarningOnly This property is required. string
Enable/disable IPv4 Only give warning message when limit is exceeded.
MaximumPrefixWarningOnly6 This property is required. string
Enable/disable IPv6 Only give warning message when limit is exceeded.
MaximumPrefixWarningOnlyEvpn This property is required. string
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
MaximumPrefixWarningOnlyVpnv4 This property is required. string
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
MaximumPrefixWarningOnlyVpnv6 This property is required. string
Enable/disable warning message when limit is exceeded for VPNv6 routes.
Name This property is required. string
Distribute list entry name.
NextHopSelf This property is required. string
Enable/disable IPv4 next-hop calculation for this neighbor.
NextHopSelf6 This property is required. string
Enable/disable IPv6 next-hop calculation for this neighbor.
NextHopSelfRr This property is required. string
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
NextHopSelfRr6 This property is required. string
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
NextHopSelfVpnv4 This property is required. string
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
NextHopSelfVpnv6 This property is required. string
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
OverrideCapability This property is required. string
Enable/disable override result of capability negotiation.
Passive This property is required. string
Enable/disable sending of open messages to this neighbor.
Password This property is required. string
Password used in MD5 authentication.
PrefixListIn This property is required. string
IPv4 Inbound filter for updates from this neighbor.
PrefixListIn6 This property is required. string
IPv6 Inbound filter for updates from this neighbor.
PrefixListInVpnv4 This property is required. string
Inbound filter for VPNv4 updates from this neighbor.
PrefixListInVpnv6 This property is required. string
Inbound filter for VPNv6 updates from this neighbor.
PrefixListOut This property is required. string
IPv4 Outbound filter for updates to this neighbor.
PrefixListOut6 This property is required. string
IPv6 Outbound filter for updates to this neighbor.
PrefixListOutVpnv4 This property is required. string
Outbound filter for VPNv4 updates to this neighbor.
PrefixListOutVpnv6 This property is required. string
Outbound filter for VPNv6 updates to this neighbor.
RemoteAs This property is required. int
AS number of neighbor.
RemoteAsFilter This property is required. string
BGP filter for remote AS.
RemovePrivateAs This property is required. string
Enable/disable remove private AS number from IPv4 outbound updates.
RemovePrivateAs6 This property is required. string
Enable/disable remove private AS number from IPv6 outbound updates.
RemovePrivateAsEvpn This property is required. string
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
RemovePrivateAsVpnv4 This property is required. string
Enable/disable remove private AS number from VPNv4 outbound updates.
RemovePrivateAsVpnv6 This property is required. string
Enable/disable to remove private AS number from VPNv6 outbound updates.
RestartTime This property is required. int
Graceful restart delay time (sec, 0 = global default).
RetainStaleTime This property is required. int
Time to retain stale routes.
RouteMapIn This property is required. string
IPv4 Inbound route map filter.
RouteMapIn6 This property is required. string
IPv6 Inbound route map filter.
RouteMapInEvpn This property is required. string
L2VPN EVPN inbound route map filter.
RouteMapInVpnv4 This property is required. string
VPNv4 inbound route map filter.
RouteMapInVpnv6 This property is required. string
VPNv6 inbound route map filter.
RouteMapOut This property is required. string
IPv4 Outbound route map filter.
RouteMapOut6 This property is required. string
IPv6 Outbound route map filter.
RouteMapOut6Preferable This property is required. string
IPv6 outbound route map filter if the peer is preferred.
RouteMapOutEvpn This property is required. string
L2VPN EVPN outbound route map filter.
RouteMapOutPreferable This property is required. string
IPv4 outbound route map filter if the peer is preferred.
RouteMapOutVpnv4 This property is required. string
VPNv4 outbound route map filter.
RouteMapOutVpnv4Preferable This property is required. string
VPNv4 outbound route map filter if the peer is preferred.
RouteMapOutVpnv6 This property is required. string
VPNv6 outbound route map filter.
RouteMapOutVpnv6Preferable This property is required. string
VPNv6 outbound route map filter if this neighbor is preferred.
RouteReflectorClient This property is required. string
Enable/disable IPv4 AS route reflector client.
RouteReflectorClient6 This property is required. string
Enable/disable IPv6 AS route reflector client.
RouteReflectorClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
RouteReflectorClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route reflector client for this neighbor.
RouteReflectorClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route reflector client for this neighbor.
RouteServerClient This property is required. string
Enable/disable IPv4 AS route server client.
RouteServerClient6 This property is required. string
Enable/disable IPv6 AS route server client.
RouteServerClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route server client for this neighbor.
RouteServerClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route server client for this neighbor.
RouteServerClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route server client for this neighbor.
SendCommunity This property is required. string
IPv4 Send community attribute to neighbor.
SendCommunity6 This property is required. string
IPv6 Send community attribute to neighbor.
SendCommunityEvpn This property is required. string
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
SendCommunityVpnv4 This property is required. string
Send community attribute to neighbor for VPNv4 address family.
SendCommunityVpnv6 This property is required. string
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
Shutdown This property is required. string
Enable/disable shutdown this neighbor.
SoftReconfiguration This property is required. string
Enable/disable allow IPv4 inbound soft reconfiguration.
SoftReconfiguration6 This property is required. string
Enable/disable allow IPv6 inbound soft reconfiguration.
SoftReconfigurationEvpn This property is required. string
Enable/disable L2VPN EVPN inbound soft reconfiguration.
SoftReconfigurationVpnv4 This property is required. string
Enable/disable allow VPNv4 inbound soft reconfiguration.
SoftReconfigurationVpnv6 This property is required. string
Enable/disable VPNv6 inbound soft reconfiguration.
StaleRoute This property is required. string
Enable/disable stale route after neighbor down.
StrictCapabilityMatch This property is required. string
Enable/disable strict capability matching.
UnsuppressMap This property is required. string
IPv4 Route map to selectively unsuppress suppressed routes.
UnsuppressMap6 This property is required. string
IPv6 Route map to selectively unsuppress suppressed routes.
UpdateSource This property is required. string
Interface to use as source IP/IPv6 address of TCP connections.
Weight This property is required. int
Neighbor weight.
activate This property is required. String
Enable/disable address family IPv4 for this neighbor.
activate6 This property is required. String
Enable/disable address family IPv6 for this neighbor.
activateEvpn This property is required. String
Enable/disable address family L2VPN EVPN for this neighbor.
activateVpnv4 This property is required. String
Enable/disable address family VPNv4 for this neighbor.
activateVpnv6 This property is required. String
Enable/disable address family VPNv6 for this neighbor.
additionalPath This property is required. String
Enable/disable IPv4 additional-path capability.
additionalPath6 This property is required. String
Enable/disable IPv6 additional-path capability.
additionalPathVpnv4 This property is required. String
Enable/disable VPNv4 additional-path capability.
additionalPathVpnv6 This property is required. String
Enable/disable VPNv6 additional-path capability.
advAdditionalPath This property is required. Integer
Number of IPv4 additional paths that can be advertised to this neighbor.
advAdditionalPath6 This property is required. Integer
Number of IPv6 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv4 This property is required. Integer
Number of VPNv4 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv6 This property is required. Integer
Number of VPNv6 additional paths that can be advertised to this neighbor.
advertisementInterval This property is required. Integer
Minimum interval (sec) between sending updates.
allowasIn This property is required. Integer
IPv4 The maximum number of occurrence of my AS number allowed.
allowasIn6 This property is required. Integer
IPv6 The maximum number of occurrence of my AS number allowed.
allowasInEnable This property is required. String
Enable/disable IPv4 Enable to allow my AS in AS path.
allowasInEnable6 This property is required. String
Enable/disable IPv6 Enable to allow my AS in AS path.
allowasInEnableEvpn This property is required. String
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
allowasInEnableVpnv4 This property is required. String
Enable/disable to allow my AS in AS path for VPNv4 route.
allowasInEnableVpnv6 This property is required. String
Enable/disable use of my AS in AS path for VPNv6 route.
allowasInEvpn This property is required. Integer
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
allowasInVpnv4 This property is required. Integer
The maximum number of occurrence of my AS number allowed for VPNv4 route.
allowasInVpnv6 This property is required. Integer
The maximum number of occurrence of my AS number allowed for VPNv6 route.
asOverride This property is required. String
Enable/disable replace peer AS with own AS for IPv4.
asOverride6 This property is required. String
Enable/disable replace peer AS with own AS for IPv6.
attributeUnchanged This property is required. String
IPv4 List of attributes that should be unchanged.
attributeUnchanged6 This property is required. String
IPv6 List of attributes that should be unchanged.
attributeUnchangedVpnv4 This property is required. String
List of attributes that should be unchanged for VPNv4 route.
attributeUnchangedVpnv6 This property is required. String
List of attributes that should not be changed for VPNv6 route.
authOptions This property is required. String
Key-chain name for TCP authentication options.
bfd This property is required. String
Enable/disable BFD for this neighbor.
capabilityDefaultOriginate This property is required. String
Enable/disable advertise default IPv4 route to this neighbor.
capabilityDefaultOriginate6 This property is required. String
Enable/disable advertise default IPv6 route to this neighbor.
capabilityDynamic This property is required. String
Enable/disable advertise dynamic capability to this neighbor.
capabilityGracefulRestart This property is required. String
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
capabilityGracefulRestart6 This property is required. String
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
capabilityGracefulRestartEvpn This property is required. String
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv4 This property is required. String
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv6 This property is required. String
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
capabilityOrf This property is required. String
Accept/Send IPv4 ORF lists to/from this neighbor.
capabilityOrf6 This property is required. String
Accept/Send IPv6 ORF lists to/from this neighbor.
capabilityRouteRefresh This property is required. String
Enable/disable advertise route refresh capability to this neighbor.
connectTimer This property is required. Integer
Interval (sec) for connect timer.
defaultOriginateRoutemap This property is required. String
Route map to specify criteria to originate IPv4 default.
defaultOriginateRoutemap6 This property is required. String
Route map to specify criteria to originate IPv6 default.
description This property is required. String
Description.
distributeListIn This property is required. String
Filter for IPv4 updates from this neighbor.
distributeListIn6 This property is required. String
Filter for IPv6 updates from this neighbor.
distributeListInVpnv4 This property is required. String
Filter for VPNv4 updates from this neighbor.
distributeListInVpnv6 This property is required. String
Filter for VPNv6 updates from this neighbor.
distributeListOut This property is required. String
Filter for IPv4 updates to this neighbor.
distributeListOut6 This property is required. String
Filter for IPv6 updates to this neighbor.
distributeListOutVpnv4 This property is required. String
Filter for VPNv4 updates to this neighbor.
distributeListOutVpnv6 This property is required. String
Filter for VPNv6 updates to this neighbor.
dontCapabilityNegotiate This property is required. String
Don't negotiate capabilities with this neighbor
ebgpEnforceMultihop This property is required. String
Enable/disable allow multi-hop EBGP neighbors.
ebgpMultihopTtl This property is required. Integer
EBGP multihop TTL for this peer.
filterListIn This property is required. String
BGP filter for IPv4 inbound routes.
filterListIn6 This property is required. String
BGP filter for IPv6 inbound routes.
filterListInVpnv4 This property is required. String
BGP filter for VPNv4 inbound routes.
filterListInVpnv6 This property is required. String
BGP filter for VPNv6 inbound routes.
filterListOut This property is required. String
BGP filter for IPv4 outbound routes.
filterListOut6 This property is required. String
BGP filter for IPv6 outbound routes.
filterListOutVpnv4 This property is required. String
BGP filter for VPNv4 outbound routes.
filterListOutVpnv6 This property is required. String
BGP filter for VPNv6 outbound routes.
holdtimeTimer This property is required. Integer
Interval (sec) before peer considered dead.
interface_ This property is required. String
Interface which is used to leak routes to target VRF.
keepAliveTimer This property is required. Integer
Keep alive timer interval (sec).
linkDownFailover This property is required. String
Enable/disable failover upon link down.
localAs This property is required. Integer
Local AS number of neighbor.
localAsNoPrepend This property is required. String
Do not prepend local-as to incoming updates.
localAsReplaceAs This property is required. String
Replace real AS with local-as in outgoing updates.
maximumPrefix This property is required. Integer
Maximum number of IPv4 prefixes to accept from this peer.
maximumPrefix6 This property is required. Integer
Maximum number of IPv6 prefixes to accept from this peer.
maximumPrefixEvpn This property is required. Integer
Maximum number of L2VPN EVPN prefixes to accept from this peer.
maximumPrefixThreshold This property is required. Integer
Maximum IPv4 prefix threshold value (1 - 100 percent).
maximumPrefixThreshold6 This property is required. Integer
Maximum IPv6 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdEvpn This property is required. Integer
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv4 This property is required. Integer
Maximum VPNv4 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv6 This property is required. Integer
Maximum VPNv6 prefix threshold value (1 - 100 percent).
maximumPrefixVpnv4 This property is required. Integer
Maximum number of VPNv4 prefixes to accept from this peer.
maximumPrefixVpnv6 This property is required. Integer
Maximum number of VPNv6 prefixes to accept from this peer.
maximumPrefixWarningOnly This property is required. String
Enable/disable IPv4 Only give warning message when limit is exceeded.
maximumPrefixWarningOnly6 This property is required. String
Enable/disable IPv6 Only give warning message when limit is exceeded.
maximumPrefixWarningOnlyEvpn This property is required. String
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
maximumPrefixWarningOnlyVpnv4 This property is required. String
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
maximumPrefixWarningOnlyVpnv6 This property is required. String
Enable/disable warning message when limit is exceeded for VPNv6 routes.
name This property is required. String
Distribute list entry name.
nextHopSelf This property is required. String
Enable/disable IPv4 next-hop calculation for this neighbor.
nextHopSelf6 This property is required. String
Enable/disable IPv6 next-hop calculation for this neighbor.
nextHopSelfRr This property is required. String
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
nextHopSelfRr6 This property is required. String
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
nextHopSelfVpnv4 This property is required. String
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
nextHopSelfVpnv6 This property is required. String
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
overrideCapability This property is required. String
Enable/disable override result of capability negotiation.
passive This property is required. String
Enable/disable sending of open messages to this neighbor.
password This property is required. String
Password used in MD5 authentication.
prefixListIn This property is required. String
IPv4 Inbound filter for updates from this neighbor.
prefixListIn6 This property is required. String
IPv6 Inbound filter for updates from this neighbor.
prefixListInVpnv4 This property is required. String
Inbound filter for VPNv4 updates from this neighbor.
prefixListInVpnv6 This property is required. String
Inbound filter for VPNv6 updates from this neighbor.
prefixListOut This property is required. String
IPv4 Outbound filter for updates to this neighbor.
prefixListOut6 This property is required. String
IPv6 Outbound filter for updates to this neighbor.
prefixListOutVpnv4 This property is required. String
Outbound filter for VPNv4 updates to this neighbor.
prefixListOutVpnv6 This property is required. String
Outbound filter for VPNv6 updates to this neighbor.
remoteAs This property is required. Integer
AS number of neighbor.
remoteAsFilter This property is required. String
BGP filter for remote AS.
removePrivateAs This property is required. String
Enable/disable remove private AS number from IPv4 outbound updates.
removePrivateAs6 This property is required. String
Enable/disable remove private AS number from IPv6 outbound updates.
removePrivateAsEvpn This property is required. String
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
removePrivateAsVpnv4 This property is required. String
Enable/disable remove private AS number from VPNv4 outbound updates.
removePrivateAsVpnv6 This property is required. String
Enable/disable to remove private AS number from VPNv6 outbound updates.
restartTime This property is required. Integer
Graceful restart delay time (sec, 0 = global default).
retainStaleTime This property is required. Integer
Time to retain stale routes.
routeMapIn This property is required. String
IPv4 Inbound route map filter.
routeMapIn6 This property is required. String
IPv6 Inbound route map filter.
routeMapInEvpn This property is required. String
L2VPN EVPN inbound route map filter.
routeMapInVpnv4 This property is required. String
VPNv4 inbound route map filter.
routeMapInVpnv6 This property is required. String
VPNv6 inbound route map filter.
routeMapOut This property is required. String
IPv4 Outbound route map filter.
routeMapOut6 This property is required. String
IPv6 Outbound route map filter.
routeMapOut6Preferable This property is required. String
IPv6 outbound route map filter if the peer is preferred.
routeMapOutEvpn This property is required. String
L2VPN EVPN outbound route map filter.
routeMapOutPreferable This property is required. String
IPv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv4 This property is required. String
VPNv4 outbound route map filter.
routeMapOutVpnv4Preferable This property is required. String
VPNv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv6 This property is required. String
VPNv6 outbound route map filter.
routeMapOutVpnv6Preferable This property is required. String
VPNv6 outbound route map filter if this neighbor is preferred.
routeReflectorClient This property is required. String
Enable/disable IPv4 AS route reflector client.
routeReflectorClient6 This property is required. String
Enable/disable IPv6 AS route reflector client.
routeReflectorClientEvpn This property is required. String
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
routeReflectorClientVpnv4 This property is required. String
Enable/disable VPNv4 AS route reflector client for this neighbor.
routeReflectorClientVpnv6 This property is required. String
Enable/disable VPNv6 AS route reflector client for this neighbor.
routeServerClient This property is required. String
Enable/disable IPv4 AS route server client.
routeServerClient6 This property is required. String
Enable/disable IPv6 AS route server client.
routeServerClientEvpn This property is required. String
Enable/disable L2VPN EVPN AS route server client for this neighbor.
routeServerClientVpnv4 This property is required. String
Enable/disable VPNv4 AS route server client for this neighbor.
routeServerClientVpnv6 This property is required. String
Enable/disable VPNv6 AS route server client for this neighbor.
sendCommunity This property is required. String
IPv4 Send community attribute to neighbor.
sendCommunity6 This property is required. String
IPv6 Send community attribute to neighbor.
sendCommunityEvpn This property is required. String
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
sendCommunityVpnv4 This property is required. String
Send community attribute to neighbor for VPNv4 address family.
sendCommunityVpnv6 This property is required. String
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
shutdown This property is required. String
Enable/disable shutdown this neighbor.
softReconfiguration This property is required. String
Enable/disable allow IPv4 inbound soft reconfiguration.
softReconfiguration6 This property is required. String
Enable/disable allow IPv6 inbound soft reconfiguration.
softReconfigurationEvpn This property is required. String
Enable/disable L2VPN EVPN inbound soft reconfiguration.
softReconfigurationVpnv4 This property is required. String
Enable/disable allow VPNv4 inbound soft reconfiguration.
softReconfigurationVpnv6 This property is required. String
Enable/disable VPNv6 inbound soft reconfiguration.
staleRoute This property is required. String
Enable/disable stale route after neighbor down.
strictCapabilityMatch This property is required. String
Enable/disable strict capability matching.
unsuppressMap This property is required. String
IPv4 Route map to selectively unsuppress suppressed routes.
unsuppressMap6 This property is required. String
IPv6 Route map to selectively unsuppress suppressed routes.
updateSource This property is required. String
Interface to use as source IP/IPv6 address of TCP connections.
weight This property is required. Integer
Neighbor weight.
activate This property is required. string
Enable/disable address family IPv4 for this neighbor.
activate6 This property is required. string
Enable/disable address family IPv6 for this neighbor.
activateEvpn This property is required. string
Enable/disable address family L2VPN EVPN for this neighbor.
activateVpnv4 This property is required. string
Enable/disable address family VPNv4 for this neighbor.
activateVpnv6 This property is required. string
Enable/disable address family VPNv6 for this neighbor.
additionalPath This property is required. string
Enable/disable IPv4 additional-path capability.
additionalPath6 This property is required. string
Enable/disable IPv6 additional-path capability.
additionalPathVpnv4 This property is required. string
Enable/disable VPNv4 additional-path capability.
additionalPathVpnv6 This property is required. string
Enable/disable VPNv6 additional-path capability.
advAdditionalPath This property is required. number
Number of IPv4 additional paths that can be advertised to this neighbor.
advAdditionalPath6 This property is required. number
Number of IPv6 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv4 This property is required. number
Number of VPNv4 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv6 This property is required. number
Number of VPNv6 additional paths that can be advertised to this neighbor.
advertisementInterval This property is required. number
Minimum interval (sec) between sending updates.
allowasIn This property is required. number
IPv4 The maximum number of occurrence of my AS number allowed.
allowasIn6 This property is required. number
IPv6 The maximum number of occurrence of my AS number allowed.
allowasInEnable This property is required. string
Enable/disable IPv4 Enable to allow my AS in AS path.
allowasInEnable6 This property is required. string
Enable/disable IPv6 Enable to allow my AS in AS path.
allowasInEnableEvpn This property is required. string
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
allowasInEnableVpnv4 This property is required. string
Enable/disable to allow my AS in AS path for VPNv4 route.
allowasInEnableVpnv6 This property is required. string
Enable/disable use of my AS in AS path for VPNv6 route.
allowasInEvpn This property is required. number
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
allowasInVpnv4 This property is required. number
The maximum number of occurrence of my AS number allowed for VPNv4 route.
allowasInVpnv6 This property is required. number
The maximum number of occurrence of my AS number allowed for VPNv6 route.
asOverride This property is required. string
Enable/disable replace peer AS with own AS for IPv4.
asOverride6 This property is required. string
Enable/disable replace peer AS with own AS for IPv6.
attributeUnchanged This property is required. string
IPv4 List of attributes that should be unchanged.
attributeUnchanged6 This property is required. string
IPv6 List of attributes that should be unchanged.
attributeUnchangedVpnv4 This property is required. string
List of attributes that should be unchanged for VPNv4 route.
attributeUnchangedVpnv6 This property is required. string
List of attributes that should not be changed for VPNv6 route.
authOptions This property is required. string
Key-chain name for TCP authentication options.
bfd This property is required. string
Enable/disable BFD for this neighbor.
capabilityDefaultOriginate This property is required. string
Enable/disable advertise default IPv4 route to this neighbor.
capabilityDefaultOriginate6 This property is required. string
Enable/disable advertise default IPv6 route to this neighbor.
capabilityDynamic This property is required. string
Enable/disable advertise dynamic capability to this neighbor.
capabilityGracefulRestart This property is required. string
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
capabilityGracefulRestart6 This property is required. string
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
capabilityGracefulRestartEvpn This property is required. string
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv4 This property is required. string
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv6 This property is required. string
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
capabilityOrf This property is required. string
Accept/Send IPv4 ORF lists to/from this neighbor.
capabilityOrf6 This property is required. string
Accept/Send IPv6 ORF lists to/from this neighbor.
capabilityRouteRefresh This property is required. string
Enable/disable advertise route refresh capability to this neighbor.
connectTimer This property is required. number
Interval (sec) for connect timer.
defaultOriginateRoutemap This property is required. string
Route map to specify criteria to originate IPv4 default.
defaultOriginateRoutemap6 This property is required. string
Route map to specify criteria to originate IPv6 default.
description This property is required. string
Description.
distributeListIn This property is required. string
Filter for IPv4 updates from this neighbor.
distributeListIn6 This property is required. string
Filter for IPv6 updates from this neighbor.
distributeListInVpnv4 This property is required. string
Filter for VPNv4 updates from this neighbor.
distributeListInVpnv6 This property is required. string
Filter for VPNv6 updates from this neighbor.
distributeListOut This property is required. string
Filter for IPv4 updates to this neighbor.
distributeListOut6 This property is required. string
Filter for IPv6 updates to this neighbor.
distributeListOutVpnv4 This property is required. string
Filter for VPNv4 updates to this neighbor.
distributeListOutVpnv6 This property is required. string
Filter for VPNv6 updates to this neighbor.
dontCapabilityNegotiate This property is required. string
Don't negotiate capabilities with this neighbor
ebgpEnforceMultihop This property is required. string
Enable/disable allow multi-hop EBGP neighbors.
ebgpMultihopTtl This property is required. number
EBGP multihop TTL for this peer.
filterListIn This property is required. string
BGP filter for IPv4 inbound routes.
filterListIn6 This property is required. string
BGP filter for IPv6 inbound routes.
filterListInVpnv4 This property is required. string
BGP filter for VPNv4 inbound routes.
filterListInVpnv6 This property is required. string
BGP filter for VPNv6 inbound routes.
filterListOut This property is required. string
BGP filter for IPv4 outbound routes.
filterListOut6 This property is required. string
BGP filter for IPv6 outbound routes.
filterListOutVpnv4 This property is required. string
BGP filter for VPNv4 outbound routes.
filterListOutVpnv6 This property is required. string
BGP filter for VPNv6 outbound routes.
holdtimeTimer This property is required. number
Interval (sec) before peer considered dead.
interface This property is required. string
Interface which is used to leak routes to target VRF.
keepAliveTimer This property is required. number
Keep alive timer interval (sec).
linkDownFailover This property is required. string
Enable/disable failover upon link down.
localAs This property is required. number
Local AS number of neighbor.
localAsNoPrepend This property is required. string
Do not prepend local-as to incoming updates.
localAsReplaceAs This property is required. string
Replace real AS with local-as in outgoing updates.
maximumPrefix This property is required. number
Maximum number of IPv4 prefixes to accept from this peer.
maximumPrefix6 This property is required. number
Maximum number of IPv6 prefixes to accept from this peer.
maximumPrefixEvpn This property is required. number
Maximum number of L2VPN EVPN prefixes to accept from this peer.
maximumPrefixThreshold This property is required. number
Maximum IPv4 prefix threshold value (1 - 100 percent).
maximumPrefixThreshold6 This property is required. number
Maximum IPv6 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdEvpn This property is required. number
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv4 This property is required. number
Maximum VPNv4 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv6 This property is required. number
Maximum VPNv6 prefix threshold value (1 - 100 percent).
maximumPrefixVpnv4 This property is required. number
Maximum number of VPNv4 prefixes to accept from this peer.
maximumPrefixVpnv6 This property is required. number
Maximum number of VPNv6 prefixes to accept from this peer.
maximumPrefixWarningOnly This property is required. string
Enable/disable IPv4 Only give warning message when limit is exceeded.
maximumPrefixWarningOnly6 This property is required. string
Enable/disable IPv6 Only give warning message when limit is exceeded.
maximumPrefixWarningOnlyEvpn This property is required. string
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
maximumPrefixWarningOnlyVpnv4 This property is required. string
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
maximumPrefixWarningOnlyVpnv6 This property is required. string
Enable/disable warning message when limit is exceeded for VPNv6 routes.
name This property is required. string
Distribute list entry name.
nextHopSelf This property is required. string
Enable/disable IPv4 next-hop calculation for this neighbor.
nextHopSelf6 This property is required. string
Enable/disable IPv6 next-hop calculation for this neighbor.
nextHopSelfRr This property is required. string
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
nextHopSelfRr6 This property is required. string
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
nextHopSelfVpnv4 This property is required. string
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
nextHopSelfVpnv6 This property is required. string
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
overrideCapability This property is required. string
Enable/disable override result of capability negotiation.
passive This property is required. string
Enable/disable sending of open messages to this neighbor.
password This property is required. string
Password used in MD5 authentication.
prefixListIn This property is required. string
IPv4 Inbound filter for updates from this neighbor.
prefixListIn6 This property is required. string
IPv6 Inbound filter for updates from this neighbor.
prefixListInVpnv4 This property is required. string
Inbound filter for VPNv4 updates from this neighbor.
prefixListInVpnv6 This property is required. string
Inbound filter for VPNv6 updates from this neighbor.
prefixListOut This property is required. string
IPv4 Outbound filter for updates to this neighbor.
prefixListOut6 This property is required. string
IPv6 Outbound filter for updates to this neighbor.
prefixListOutVpnv4 This property is required. string
Outbound filter for VPNv4 updates to this neighbor.
prefixListOutVpnv6 This property is required. string
Outbound filter for VPNv6 updates to this neighbor.
remoteAs This property is required. number
AS number of neighbor.
remoteAsFilter This property is required. string
BGP filter for remote AS.
removePrivateAs This property is required. string
Enable/disable remove private AS number from IPv4 outbound updates.
removePrivateAs6 This property is required. string
Enable/disable remove private AS number from IPv6 outbound updates.
removePrivateAsEvpn This property is required. string
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
removePrivateAsVpnv4 This property is required. string
Enable/disable remove private AS number from VPNv4 outbound updates.
removePrivateAsVpnv6 This property is required. string
Enable/disable to remove private AS number from VPNv6 outbound updates.
restartTime This property is required. number
Graceful restart delay time (sec, 0 = global default).
retainStaleTime This property is required. number
Time to retain stale routes.
routeMapIn This property is required. string
IPv4 Inbound route map filter.
routeMapIn6 This property is required. string
IPv6 Inbound route map filter.
routeMapInEvpn This property is required. string
L2VPN EVPN inbound route map filter.
routeMapInVpnv4 This property is required. string
VPNv4 inbound route map filter.
routeMapInVpnv6 This property is required. string
VPNv6 inbound route map filter.
routeMapOut This property is required. string
IPv4 Outbound route map filter.
routeMapOut6 This property is required. string
IPv6 Outbound route map filter.
routeMapOut6Preferable This property is required. string
IPv6 outbound route map filter if the peer is preferred.
routeMapOutEvpn This property is required. string
L2VPN EVPN outbound route map filter.
routeMapOutPreferable This property is required. string
IPv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv4 This property is required. string
VPNv4 outbound route map filter.
routeMapOutVpnv4Preferable This property is required. string
VPNv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv6 This property is required. string
VPNv6 outbound route map filter.
routeMapOutVpnv6Preferable This property is required. string
VPNv6 outbound route map filter if this neighbor is preferred.
routeReflectorClient This property is required. string
Enable/disable IPv4 AS route reflector client.
routeReflectorClient6 This property is required. string
Enable/disable IPv6 AS route reflector client.
routeReflectorClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
routeReflectorClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route reflector client for this neighbor.
routeReflectorClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route reflector client for this neighbor.
routeServerClient This property is required. string
Enable/disable IPv4 AS route server client.
routeServerClient6 This property is required. string
Enable/disable IPv6 AS route server client.
routeServerClientEvpn This property is required. string
Enable/disable L2VPN EVPN AS route server client for this neighbor.
routeServerClientVpnv4 This property is required. string
Enable/disable VPNv4 AS route server client for this neighbor.
routeServerClientVpnv6 This property is required. string
Enable/disable VPNv6 AS route server client for this neighbor.
sendCommunity This property is required. string
IPv4 Send community attribute to neighbor.
sendCommunity6 This property is required. string
IPv6 Send community attribute to neighbor.
sendCommunityEvpn This property is required. string
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
sendCommunityVpnv4 This property is required. string
Send community attribute to neighbor for VPNv4 address family.
sendCommunityVpnv6 This property is required. string
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
shutdown This property is required. string
Enable/disable shutdown this neighbor.
softReconfiguration This property is required. string
Enable/disable allow IPv4 inbound soft reconfiguration.
softReconfiguration6 This property is required. string
Enable/disable allow IPv6 inbound soft reconfiguration.
softReconfigurationEvpn This property is required. string
Enable/disable L2VPN EVPN inbound soft reconfiguration.
softReconfigurationVpnv4 This property is required. string
Enable/disable allow VPNv4 inbound soft reconfiguration.
softReconfigurationVpnv6 This property is required. string
Enable/disable VPNv6 inbound soft reconfiguration.
staleRoute This property is required. string
Enable/disable stale route after neighbor down.
strictCapabilityMatch This property is required. string
Enable/disable strict capability matching.
unsuppressMap This property is required. string
IPv4 Route map to selectively unsuppress suppressed routes.
unsuppressMap6 This property is required. string
IPv6 Route map to selectively unsuppress suppressed routes.
updateSource This property is required. string
Interface to use as source IP/IPv6 address of TCP connections.
weight This property is required. number
Neighbor weight.
activate This property is required. str
Enable/disable address family IPv4 for this neighbor.
activate6 This property is required. str
Enable/disable address family IPv6 for this neighbor.
activate_evpn This property is required. str
Enable/disable address family L2VPN EVPN for this neighbor.
activate_vpnv4 This property is required. str
Enable/disable address family VPNv4 for this neighbor.
activate_vpnv6 This property is required. str
Enable/disable address family VPNv6 for this neighbor.
additional_path This property is required. str
Enable/disable IPv4 additional-path capability.
additional_path6 This property is required. str
Enable/disable IPv6 additional-path capability.
additional_path_vpnv4 This property is required. str
Enable/disable VPNv4 additional-path capability.
additional_path_vpnv6 This property is required. str
Enable/disable VPNv6 additional-path capability.
adv_additional_path This property is required. int
Number of IPv4 additional paths that can be advertised to this neighbor.
adv_additional_path6 This property is required. int
Number of IPv6 additional paths that can be advertised to this neighbor.
adv_additional_path_vpnv4 This property is required. int
Number of VPNv4 additional paths that can be advertised to this neighbor.
adv_additional_path_vpnv6 This property is required. int
Number of VPNv6 additional paths that can be advertised to this neighbor.
This property is required. int
Minimum interval (sec) between sending updates.
allowas_in This property is required. int
IPv4 The maximum number of occurrence of my AS number allowed.
allowas_in6 This property is required. int
IPv6 The maximum number of occurrence of my AS number allowed.
allowas_in_enable This property is required. str
Enable/disable IPv4 Enable to allow my AS in AS path.
allowas_in_enable6 This property is required. str
Enable/disable IPv6 Enable to allow my AS in AS path.
allowas_in_enable_evpn This property is required. str
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
allowas_in_enable_vpnv4 This property is required. str
Enable/disable to allow my AS in AS path for VPNv4 route.
allowas_in_enable_vpnv6 This property is required. str
Enable/disable use of my AS in AS path for VPNv6 route.
allowas_in_evpn This property is required. int
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
allowas_in_vpnv4 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv4 route.
allowas_in_vpnv6 This property is required. int
The maximum number of occurrence of my AS number allowed for VPNv6 route.
as_override This property is required. str
Enable/disable replace peer AS with own AS for IPv4.
as_override6 This property is required. str
Enable/disable replace peer AS with own AS for IPv6.
attribute_unchanged This property is required. str
IPv4 List of attributes that should be unchanged.
attribute_unchanged6 This property is required. str
IPv6 List of attributes that should be unchanged.
attribute_unchanged_vpnv4 This property is required. str
List of attributes that should be unchanged for VPNv4 route.
attribute_unchanged_vpnv6 This property is required. str
List of attributes that should not be changed for VPNv6 route.
auth_options This property is required. str
Key-chain name for TCP authentication options.
bfd This property is required. str
Enable/disable BFD for this neighbor.
capability_default_originate This property is required. str
Enable/disable advertise default IPv4 route to this neighbor.
capability_default_originate6 This property is required. str
Enable/disable advertise default IPv6 route to this neighbor.
capability_dynamic This property is required. str
Enable/disable advertise dynamic capability to this neighbor.
capability_graceful_restart This property is required. str
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
capability_graceful_restart6 This property is required. str
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
capability_graceful_restart_evpn This property is required. str
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
capability_graceful_restart_vpnv4 This property is required. str
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
capability_graceful_restart_vpnv6 This property is required. str
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
capability_orf This property is required. str
Accept/Send IPv4 ORF lists to/from this neighbor.
capability_orf6 This property is required. str
Accept/Send IPv6 ORF lists to/from this neighbor.
capability_route_refresh This property is required. str
Enable/disable advertise route refresh capability to this neighbor.
connect_timer This property is required. int
Interval (sec) for connect timer.
default_originate_routemap This property is required. str
Route map to specify criteria to originate IPv4 default.
default_originate_routemap6 This property is required. str
Route map to specify criteria to originate IPv6 default.
description This property is required. str
Description.
distribute_list_in This property is required. str
Filter for IPv4 updates from this neighbor.
distribute_list_in6 This property is required. str
Filter for IPv6 updates from this neighbor.
distribute_list_in_vpnv4 This property is required. str
Filter for VPNv4 updates from this neighbor.
distribute_list_in_vpnv6 This property is required. str
Filter for VPNv6 updates from this neighbor.
distribute_list_out This property is required. str
Filter for IPv4 updates to this neighbor.
distribute_list_out6 This property is required. str
Filter for IPv6 updates to this neighbor.
distribute_list_out_vpnv4 This property is required. str
Filter for VPNv4 updates to this neighbor.
distribute_list_out_vpnv6 This property is required. str
Filter for VPNv6 updates to this neighbor.
dont_capability_negotiate This property is required. str
Don't negotiate capabilities with this neighbor
ebgp_enforce_multihop This property is required. str
Enable/disable allow multi-hop EBGP neighbors.
ebgp_multihop_ttl This property is required. int
EBGP multihop TTL for this peer.
filter_list_in This property is required. str
BGP filter for IPv4 inbound routes.
filter_list_in6 This property is required. str
BGP filter for IPv6 inbound routes.
filter_list_in_vpnv4 This property is required. str
BGP filter for VPNv4 inbound routes.
filter_list_in_vpnv6 This property is required. str
BGP filter for VPNv6 inbound routes.
filter_list_out This property is required. str
BGP filter for IPv4 outbound routes.
filter_list_out6 This property is required. str
BGP filter for IPv6 outbound routes.
filter_list_out_vpnv4 This property is required. str
BGP filter for VPNv4 outbound routes.
filter_list_out_vpnv6 This property is required. str
BGP filter for VPNv6 outbound routes.
holdtime_timer This property is required. int
Interval (sec) before peer considered dead.
interface This property is required. str
Interface which is used to leak routes to target VRF.
keep_alive_timer This property is required. int
Keep alive timer interval (sec).
link_down_failover This property is required. str
Enable/disable failover upon link down.
local_as This property is required. int
Local AS number of neighbor.
local_as_no_prepend This property is required. str
Do not prepend local-as to incoming updates.
local_as_replace_as This property is required. str
Replace real AS with local-as in outgoing updates.
maximum_prefix This property is required. int
Maximum number of IPv4 prefixes to accept from this peer.
maximum_prefix6 This property is required. int
Maximum number of IPv6 prefixes to accept from this peer.
maximum_prefix_evpn This property is required. int
Maximum number of L2VPN EVPN prefixes to accept from this peer.
maximum_prefix_threshold This property is required. int
Maximum IPv4 prefix threshold value (1 - 100 percent).
maximum_prefix_threshold6 This property is required. int
Maximum IPv6 prefix threshold value (1 - 100 percent).
maximum_prefix_threshold_evpn This property is required. int
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
maximum_prefix_threshold_vpnv4 This property is required. int
Maximum VPNv4 prefix threshold value (1 - 100 percent).
maximum_prefix_threshold_vpnv6 This property is required. int
Maximum VPNv6 prefix threshold value (1 - 100 percent).
maximum_prefix_vpnv4 This property is required. int
Maximum number of VPNv4 prefixes to accept from this peer.
maximum_prefix_vpnv6 This property is required. int
Maximum number of VPNv6 prefixes to accept from this peer.
maximum_prefix_warning_only This property is required. str
Enable/disable IPv4 Only give warning message when limit is exceeded.
maximum_prefix_warning_only6 This property is required. str
Enable/disable IPv6 Only give warning message when limit is exceeded.
maximum_prefix_warning_only_evpn This property is required. str
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
maximum_prefix_warning_only_vpnv4 This property is required. str
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
maximum_prefix_warning_only_vpnv6 This property is required. str
Enable/disable warning message when limit is exceeded for VPNv6 routes.
name This property is required. str
Distribute list entry name.
next_hop_self This property is required. str
Enable/disable IPv4 next-hop calculation for this neighbor.
next_hop_self6 This property is required. str
Enable/disable IPv6 next-hop calculation for this neighbor.
next_hop_self_rr This property is required. str
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
next_hop_self_rr6 This property is required. str
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
next_hop_self_vpnv4 This property is required. str
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
next_hop_self_vpnv6 This property is required. str
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
override_capability This property is required. str
Enable/disable override result of capability negotiation.
passive This property is required. str
Enable/disable sending of open messages to this neighbor.
password This property is required. str
Password used in MD5 authentication.
prefix_list_in This property is required. str
IPv4 Inbound filter for updates from this neighbor.
prefix_list_in6 This property is required. str
IPv6 Inbound filter for updates from this neighbor.
prefix_list_in_vpnv4 This property is required. str
Inbound filter for VPNv4 updates from this neighbor.
prefix_list_in_vpnv6 This property is required. str
Inbound filter for VPNv6 updates from this neighbor.
prefix_list_out This property is required. str
IPv4 Outbound filter for updates to this neighbor.
prefix_list_out6 This property is required. str
IPv6 Outbound filter for updates to this neighbor.
prefix_list_out_vpnv4 This property is required. str
Outbound filter for VPNv4 updates to this neighbor.
prefix_list_out_vpnv6 This property is required. str
Outbound filter for VPNv6 updates to this neighbor.
remote_as This property is required. int
AS number of neighbor.
remote_as_filter This property is required. str
BGP filter for remote AS.
remove_private_as This property is required. str
Enable/disable remove private AS number from IPv4 outbound updates.
remove_private_as6 This property is required. str
Enable/disable remove private AS number from IPv6 outbound updates.
remove_private_as_evpn This property is required. str
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
remove_private_as_vpnv4 This property is required. str
Enable/disable remove private AS number from VPNv4 outbound updates.
remove_private_as_vpnv6 This property is required. str
Enable/disable to remove private AS number from VPNv6 outbound updates.
restart_time This property is required. int
Graceful restart delay time (sec, 0 = global default).
retain_stale_time This property is required. int
Time to retain stale routes.
route_map_in This property is required. str
IPv4 Inbound route map filter.
route_map_in6 This property is required. str
IPv6 Inbound route map filter.
route_map_in_evpn This property is required. str
L2VPN EVPN inbound route map filter.
route_map_in_vpnv4 This property is required. str
VPNv4 inbound route map filter.
route_map_in_vpnv6 This property is required. str
VPNv6 inbound route map filter.
route_map_out This property is required. str
IPv4 Outbound route map filter.
route_map_out6 This property is required. str
IPv6 Outbound route map filter.
route_map_out6_preferable This property is required. str
IPv6 outbound route map filter if the peer is preferred.
route_map_out_evpn This property is required. str
L2VPN EVPN outbound route map filter.
route_map_out_preferable This property is required. str
IPv4 outbound route map filter if the peer is preferred.
route_map_out_vpnv4 This property is required. str
VPNv4 outbound route map filter.
route_map_out_vpnv4_preferable This property is required. str
VPNv4 outbound route map filter if the peer is preferred.
route_map_out_vpnv6 This property is required. str
VPNv6 outbound route map filter.
route_map_out_vpnv6_preferable This property is required. str
VPNv6 outbound route map filter if this neighbor is preferred.
route_reflector_client This property is required. str
Enable/disable IPv4 AS route reflector client.
route_reflector_client6 This property is required. str
Enable/disable IPv6 AS route reflector client.
route_reflector_client_evpn This property is required. str
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
route_reflector_client_vpnv4 This property is required. str
Enable/disable VPNv4 AS route reflector client for this neighbor.
route_reflector_client_vpnv6 This property is required. str
Enable/disable VPNv6 AS route reflector client for this neighbor.
route_server_client This property is required. str
Enable/disable IPv4 AS route server client.
route_server_client6 This property is required. str
Enable/disable IPv6 AS route server client.
route_server_client_evpn This property is required. str
Enable/disable L2VPN EVPN AS route server client for this neighbor.
route_server_client_vpnv4 This property is required. str
Enable/disable VPNv4 AS route server client for this neighbor.
route_server_client_vpnv6 This property is required. str
Enable/disable VPNv6 AS route server client for this neighbor.
send_community This property is required. str
IPv4 Send community attribute to neighbor.
send_community6 This property is required. str
IPv6 Send community attribute to neighbor.
send_community_evpn This property is required. str
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
send_community_vpnv4 This property is required. str
Send community attribute to neighbor for VPNv4 address family.
send_community_vpnv6 This property is required. str
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
shutdown This property is required. str
Enable/disable shutdown this neighbor.
soft_reconfiguration This property is required. str
Enable/disable allow IPv4 inbound soft reconfiguration.
soft_reconfiguration6 This property is required. str
Enable/disable allow IPv6 inbound soft reconfiguration.
soft_reconfiguration_evpn This property is required. str
Enable/disable L2VPN EVPN inbound soft reconfiguration.
soft_reconfiguration_vpnv4 This property is required. str
Enable/disable allow VPNv4 inbound soft reconfiguration.
soft_reconfiguration_vpnv6 This property is required. str
Enable/disable VPNv6 inbound soft reconfiguration.
stale_route This property is required. str
Enable/disable stale route after neighbor down.
strict_capability_match This property is required. str
Enable/disable strict capability matching.
unsuppress_map This property is required. str
IPv4 Route map to selectively unsuppress suppressed routes.
unsuppress_map6 This property is required. str
IPv6 Route map to selectively unsuppress suppressed routes.
update_source This property is required. str
Interface to use as source IP/IPv6 address of TCP connections.
weight This property is required. int
Neighbor weight.
activate This property is required. String
Enable/disable address family IPv4 for this neighbor.
activate6 This property is required. String
Enable/disable address family IPv6 for this neighbor.
activateEvpn This property is required. String
Enable/disable address family L2VPN EVPN for this neighbor.
activateVpnv4 This property is required. String
Enable/disable address family VPNv4 for this neighbor.
activateVpnv6 This property is required. String
Enable/disable address family VPNv6 for this neighbor.
additionalPath This property is required. String
Enable/disable IPv4 additional-path capability.
additionalPath6 This property is required. String
Enable/disable IPv6 additional-path capability.
additionalPathVpnv4 This property is required. String
Enable/disable VPNv4 additional-path capability.
additionalPathVpnv6 This property is required. String
Enable/disable VPNv6 additional-path capability.
advAdditionalPath This property is required. Number
Number of IPv4 additional paths that can be advertised to this neighbor.
advAdditionalPath6 This property is required. Number
Number of IPv6 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv4 This property is required. Number
Number of VPNv4 additional paths that can be advertised to this neighbor.
advAdditionalPathVpnv6 This property is required. Number
Number of VPNv6 additional paths that can be advertised to this neighbor.
advertisementInterval This property is required. Number
Minimum interval (sec) between sending updates.
allowasIn This property is required. Number
IPv4 The maximum number of occurrence of my AS number allowed.
allowasIn6 This property is required. Number
IPv6 The maximum number of occurrence of my AS number allowed.
allowasInEnable This property is required. String
Enable/disable IPv4 Enable to allow my AS in AS path.
allowasInEnable6 This property is required. String
Enable/disable IPv6 Enable to allow my AS in AS path.
allowasInEnableEvpn This property is required. String
Enable/disable to allow my AS in AS path for L2VPN EVPN route.
allowasInEnableVpnv4 This property is required. String
Enable/disable to allow my AS in AS path for VPNv4 route.
allowasInEnableVpnv6 This property is required. String
Enable/disable use of my AS in AS path for VPNv6 route.
allowasInEvpn This property is required. Number
The maximum number of occurrence of my AS number allowed for L2VPN EVPN route.
allowasInVpnv4 This property is required. Number
The maximum number of occurrence of my AS number allowed for VPNv4 route.
allowasInVpnv6 This property is required. Number
The maximum number of occurrence of my AS number allowed for VPNv6 route.
asOverride This property is required. String
Enable/disable replace peer AS with own AS for IPv4.
asOverride6 This property is required. String
Enable/disable replace peer AS with own AS for IPv6.
attributeUnchanged This property is required. String
IPv4 List of attributes that should be unchanged.
attributeUnchanged6 This property is required. String
IPv6 List of attributes that should be unchanged.
attributeUnchangedVpnv4 This property is required. String
List of attributes that should be unchanged for VPNv4 route.
attributeUnchangedVpnv6 This property is required. String
List of attributes that should not be changed for VPNv6 route.
authOptions This property is required. String
Key-chain name for TCP authentication options.
bfd This property is required. String
Enable/disable BFD for this neighbor.
capabilityDefaultOriginate This property is required. String
Enable/disable advertise default IPv4 route to this neighbor.
capabilityDefaultOriginate6 This property is required. String
Enable/disable advertise default IPv6 route to this neighbor.
capabilityDynamic This property is required. String
Enable/disable advertise dynamic capability to this neighbor.
capabilityGracefulRestart This property is required. String
Enable/disable advertise IPv4 graceful restart capability to this neighbor.
capabilityGracefulRestart6 This property is required. String
Enable/disable advertise IPv6 graceful restart capability to this neighbor.
capabilityGracefulRestartEvpn This property is required. String
Enable/disable advertisement of L2VPN EVPN graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv4 This property is required. String
Enable/disable advertise VPNv4 graceful restart capability to this neighbor.
capabilityGracefulRestartVpnv6 This property is required. String
Enable/disable advertisement of VPNv6 graceful restart capability to this neighbor.
capabilityOrf This property is required. String
Accept/Send IPv4 ORF lists to/from this neighbor.
capabilityOrf6 This property is required. String
Accept/Send IPv6 ORF lists to/from this neighbor.
capabilityRouteRefresh This property is required. String
Enable/disable advertise route refresh capability to this neighbor.
connectTimer This property is required. Number
Interval (sec) for connect timer.
defaultOriginateRoutemap This property is required. String
Route map to specify criteria to originate IPv4 default.
defaultOriginateRoutemap6 This property is required. String
Route map to specify criteria to originate IPv6 default.
description This property is required. String
Description.
distributeListIn This property is required. String
Filter for IPv4 updates from this neighbor.
distributeListIn6 This property is required. String
Filter for IPv6 updates from this neighbor.
distributeListInVpnv4 This property is required. String
Filter for VPNv4 updates from this neighbor.
distributeListInVpnv6 This property is required. String
Filter for VPNv6 updates from this neighbor.
distributeListOut This property is required. String
Filter for IPv4 updates to this neighbor.
distributeListOut6 This property is required. String
Filter for IPv6 updates to this neighbor.
distributeListOutVpnv4 This property is required. String
Filter for VPNv4 updates to this neighbor.
distributeListOutVpnv6 This property is required. String
Filter for VPNv6 updates to this neighbor.
dontCapabilityNegotiate This property is required. String
Don't negotiate capabilities with this neighbor
ebgpEnforceMultihop This property is required. String
Enable/disable allow multi-hop EBGP neighbors.
ebgpMultihopTtl This property is required. Number
EBGP multihop TTL for this peer.
filterListIn This property is required. String
BGP filter for IPv4 inbound routes.
filterListIn6 This property is required. String
BGP filter for IPv6 inbound routes.
filterListInVpnv4 This property is required. String
BGP filter for VPNv4 inbound routes.
filterListInVpnv6 This property is required. String
BGP filter for VPNv6 inbound routes.
filterListOut This property is required. String
BGP filter for IPv4 outbound routes.
filterListOut6 This property is required. String
BGP filter for IPv6 outbound routes.
filterListOutVpnv4 This property is required. String
BGP filter for VPNv4 outbound routes.
filterListOutVpnv6 This property is required. String
BGP filter for VPNv6 outbound routes.
holdtimeTimer This property is required. Number
Interval (sec) before peer considered dead.
interface This property is required. String
Interface which is used to leak routes to target VRF.
keepAliveTimer This property is required. Number
Keep alive timer interval (sec).
linkDownFailover This property is required. String
Enable/disable failover upon link down.
localAs This property is required. Number
Local AS number of neighbor.
localAsNoPrepend This property is required. String
Do not prepend local-as to incoming updates.
localAsReplaceAs This property is required. String
Replace real AS with local-as in outgoing updates.
maximumPrefix This property is required. Number
Maximum number of IPv4 prefixes to accept from this peer.
maximumPrefix6 This property is required. Number
Maximum number of IPv6 prefixes to accept from this peer.
maximumPrefixEvpn This property is required. Number
Maximum number of L2VPN EVPN prefixes to accept from this peer.
maximumPrefixThreshold This property is required. Number
Maximum IPv4 prefix threshold value (1 - 100 percent).
maximumPrefixThreshold6 This property is required. Number
Maximum IPv6 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdEvpn This property is required. Number
Maximum L2VPN EVPN prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv4 This property is required. Number
Maximum VPNv4 prefix threshold value (1 - 100 percent).
maximumPrefixThresholdVpnv6 This property is required. Number
Maximum VPNv6 prefix threshold value (1 - 100 percent).
maximumPrefixVpnv4 This property is required. Number
Maximum number of VPNv4 prefixes to accept from this peer.
maximumPrefixVpnv6 This property is required. Number
Maximum number of VPNv6 prefixes to accept from this peer.
maximumPrefixWarningOnly This property is required. String
Enable/disable IPv4 Only give warning message when limit is exceeded.
maximumPrefixWarningOnly6 This property is required. String
Enable/disable IPv6 Only give warning message when limit is exceeded.
maximumPrefixWarningOnlyEvpn This property is required. String
Enable/disable only sending warning message when exceeding limit of L2VPN EVPN routes.
maximumPrefixWarningOnlyVpnv4 This property is required. String
Enable/disable only giving warning message when limit is exceeded for VPNv4 routes.
maximumPrefixWarningOnlyVpnv6 This property is required. String
Enable/disable warning message when limit is exceeded for VPNv6 routes.
name This property is required. String
Distribute list entry name.
nextHopSelf This property is required. String
Enable/disable IPv4 next-hop calculation for this neighbor.
nextHopSelf6 This property is required. String
Enable/disable IPv6 next-hop calculation for this neighbor.
nextHopSelfRr This property is required. String
Enable/disable setting nexthop's address to interface's IPv4 address for route-reflector routes.
nextHopSelfRr6 This property is required. String
Enable/disable setting nexthop's address to interface's IPv6 address for route-reflector routes.
nextHopSelfVpnv4 This property is required. String
Enable/disable setting VPNv4 next-hop to interface's IP address for this neighbor.
nextHopSelfVpnv6 This property is required. String
Enable/disable use of outgoing interface's IP address as VPNv6 next-hop for this neighbor.
overrideCapability This property is required. String
Enable/disable override result of capability negotiation.
passive This property is required. String
Enable/disable sending of open messages to this neighbor.
password This property is required. String
Password used in MD5 authentication.
prefixListIn This property is required. String
IPv4 Inbound filter for updates from this neighbor.
prefixListIn6 This property is required. String
IPv6 Inbound filter for updates from this neighbor.
prefixListInVpnv4 This property is required. String
Inbound filter for VPNv4 updates from this neighbor.
prefixListInVpnv6 This property is required. String
Inbound filter for VPNv6 updates from this neighbor.
prefixListOut This property is required. String
IPv4 Outbound filter for updates to this neighbor.
prefixListOut6 This property is required. String
IPv6 Outbound filter for updates to this neighbor.
prefixListOutVpnv4 This property is required. String
Outbound filter for VPNv4 updates to this neighbor.
prefixListOutVpnv6 This property is required. String
Outbound filter for VPNv6 updates to this neighbor.
remoteAs This property is required. Number
AS number of neighbor.
remoteAsFilter This property is required. String
BGP filter for remote AS.
removePrivateAs This property is required. String
Enable/disable remove private AS number from IPv4 outbound updates.
removePrivateAs6 This property is required. String
Enable/disable remove private AS number from IPv6 outbound updates.
removePrivateAsEvpn This property is required. String
Enable/disable removing private AS number from L2VPN EVPN outbound updates.
removePrivateAsVpnv4 This property is required. String
Enable/disable remove private AS number from VPNv4 outbound updates.
removePrivateAsVpnv6 This property is required. String
Enable/disable to remove private AS number from VPNv6 outbound updates.
restartTime This property is required. Number
Graceful restart delay time (sec, 0 = global default).
retainStaleTime This property is required. Number
Time to retain stale routes.
routeMapIn This property is required. String
IPv4 Inbound route map filter.
routeMapIn6 This property is required. String
IPv6 Inbound route map filter.
routeMapInEvpn This property is required. String
L2VPN EVPN inbound route map filter.
routeMapInVpnv4 This property is required. String
VPNv4 inbound route map filter.
routeMapInVpnv6 This property is required. String
VPNv6 inbound route map filter.
routeMapOut This property is required. String
IPv4 Outbound route map filter.
routeMapOut6 This property is required. String
IPv6 Outbound route map filter.
routeMapOut6Preferable This property is required. String
IPv6 outbound route map filter if the peer is preferred.
routeMapOutEvpn This property is required. String
L2VPN EVPN outbound route map filter.
routeMapOutPreferable This property is required. String
IPv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv4 This property is required. String
VPNv4 outbound route map filter.
routeMapOutVpnv4Preferable This property is required. String
VPNv4 outbound route map filter if the peer is preferred.
routeMapOutVpnv6 This property is required. String
VPNv6 outbound route map filter.
routeMapOutVpnv6Preferable This property is required. String
VPNv6 outbound route map filter if this neighbor is preferred.
routeReflectorClient This property is required. String
Enable/disable IPv4 AS route reflector client.
routeReflectorClient6 This property is required. String
Enable/disable IPv6 AS route reflector client.
routeReflectorClientEvpn This property is required. String
Enable/disable L2VPN EVPN AS route reflector client for this neighbor.
routeReflectorClientVpnv4 This property is required. String
Enable/disable VPNv4 AS route reflector client for this neighbor.
routeReflectorClientVpnv6 This property is required. String
Enable/disable VPNv6 AS route reflector client for this neighbor.
routeServerClient This property is required. String
Enable/disable IPv4 AS route server client.
routeServerClient6 This property is required. String
Enable/disable IPv6 AS route server client.
routeServerClientEvpn This property is required. String
Enable/disable L2VPN EVPN AS route server client for this neighbor.
routeServerClientVpnv4 This property is required. String
Enable/disable VPNv4 AS route server client for this neighbor.
routeServerClientVpnv6 This property is required. String
Enable/disable VPNv6 AS route server client for this neighbor.
sendCommunity This property is required. String
IPv4 Send community attribute to neighbor.
sendCommunity6 This property is required. String
IPv6 Send community attribute to neighbor.
sendCommunityEvpn This property is required. String
Enable/disable sending community attribute to neighbor for L2VPN EVPN address family.
sendCommunityVpnv4 This property is required. String
Send community attribute to neighbor for VPNv4 address family.
sendCommunityVpnv6 This property is required. String
Enable/disable sending community attribute to this neighbor for VPNv6 address family.
shutdown This property is required. String
Enable/disable shutdown this neighbor.
softReconfiguration This property is required. String
Enable/disable allow IPv4 inbound soft reconfiguration.
softReconfiguration6 This property is required. String
Enable/disable allow IPv6 inbound soft reconfiguration.
softReconfigurationEvpn This property is required. String
Enable/disable L2VPN EVPN inbound soft reconfiguration.
softReconfigurationVpnv4 This property is required. String
Enable/disable allow VPNv4 inbound soft reconfiguration.
softReconfigurationVpnv6 This property is required. String
Enable/disable VPNv6 inbound soft reconfiguration.
staleRoute This property is required. String
Enable/disable stale route after neighbor down.
strictCapabilityMatch This property is required. String
Enable/disable strict capability matching.
unsuppressMap This property is required. String
IPv4 Route map to selectively unsuppress suppressed routes.
unsuppressMap6 This property is required. String
IPv6 Route map to selectively unsuppress suppressed routes.
updateSource This property is required. String
Interface to use as source IP/IPv6 address of TCP connections.
weight This property is required. Number
Neighbor weight.

GetBgpNeighborRange

Id This property is required. int
ID.
MaxNeighborNum This property is required. int
Maximum number of neighbors.
NeighborGroup This property is required. string
Neighbor group name.
Prefix This property is required. string
Network prefix.
Id This property is required. int
ID.
MaxNeighborNum This property is required. int
Maximum number of neighbors.
NeighborGroup This property is required. string
Neighbor group name.
Prefix This property is required. string
Network prefix.
id This property is required. Integer
ID.
maxNeighborNum This property is required. Integer
Maximum number of neighbors.
neighborGroup This property is required. String
Neighbor group name.
prefix This property is required. String
Network prefix.
id This property is required. number
ID.
maxNeighborNum This property is required. number
Maximum number of neighbors.
neighborGroup This property is required. string
Neighbor group name.
prefix This property is required. string
Network prefix.
id This property is required. int
ID.
max_neighbor_num This property is required. int
Maximum number of neighbors.
neighbor_group This property is required. str
Neighbor group name.
prefix This property is required. str
Network prefix.
id This property is required. Number
ID.
maxNeighborNum This property is required. Number
Maximum number of neighbors.
neighborGroup This property is required. String
Neighbor group name.
prefix This property is required. String
Network prefix.

GetBgpNeighborRange6

Id This property is required. int
ID.
MaxNeighborNum This property is required. int
Maximum number of neighbors.
NeighborGroup This property is required. string
Neighbor group name.
Prefix6 This property is required. string
Network IPv6 prefix.
Id This property is required. int
ID.
MaxNeighborNum This property is required. int
Maximum number of neighbors.
NeighborGroup This property is required. string
Neighbor group name.
Prefix6 This property is required. string
Network IPv6 prefix.
id This property is required. Integer
ID.
maxNeighborNum This property is required. Integer
Maximum number of neighbors.
neighborGroup This property is required. String
Neighbor group name.
prefix6 This property is required. String
Network IPv6 prefix.
id This property is required. number
ID.
maxNeighborNum This property is required. number
Maximum number of neighbors.
neighborGroup This property is required. string
Neighbor group name.
prefix6 This property is required. string
Network IPv6 prefix.
id This property is required. int
ID.
max_neighbor_num This property is required. int
Maximum number of neighbors.
neighbor_group This property is required. str
Neighbor group name.
prefix6 This property is required. str
Network IPv6 prefix.
id This property is required. Number
ID.
maxNeighborNum This property is required. Number
Maximum number of neighbors.
neighborGroup This property is required. String
Neighbor group name.
prefix6 This property is required. String
Network IPv6 prefix.

GetBgpNetwork

Backdoor This property is required. string
Enable/disable route as backdoor.
Id This property is required. int
ID.
NetworkImportCheck This property is required. string
Configure insurance of BGP network route existence in IGP.
Prefix This property is required. string
Network prefix.
RouteMap This property is required. string
Route map of VRF leaking.
Backdoor This property is required. string
Enable/disable route as backdoor.
Id This property is required. int
ID.
NetworkImportCheck This property is required. string
Configure insurance of BGP network route existence in IGP.
Prefix This property is required. string
Network prefix.
RouteMap This property is required. string
Route map of VRF leaking.
backdoor This property is required. String
Enable/disable route as backdoor.
id This property is required. Integer
ID.
networkImportCheck This property is required. String
Configure insurance of BGP network route existence in IGP.
prefix This property is required. String
Network prefix.
routeMap This property is required. String
Route map of VRF leaking.
backdoor This property is required. string
Enable/disable route as backdoor.
id This property is required. number
ID.
networkImportCheck This property is required. string
Configure insurance of BGP network route existence in IGP.
prefix This property is required. string
Network prefix.
routeMap This property is required. string
Route map of VRF leaking.
backdoor This property is required. str
Enable/disable route as backdoor.
id This property is required. int
ID.
network_import_check This property is required. str
Configure insurance of BGP network route existence in IGP.
prefix This property is required. str
Network prefix.
route_map This property is required. str
Route map of VRF leaking.
backdoor This property is required. String
Enable/disable route as backdoor.
id This property is required. Number
ID.
networkImportCheck This property is required. String
Configure insurance of BGP network route existence in IGP.
prefix This property is required. String
Network prefix.
routeMap This property is required. String
Route map of VRF leaking.

GetBgpNetwork6

Backdoor This property is required. string
Enable/disable route as backdoor.
Id This property is required. int
ID.
NetworkImportCheck This property is required. string
Configure insurance of BGP network route existence in IGP.
Prefix6 This property is required. string
Network IPv6 prefix.
RouteMap This property is required. string
Route map of VRF leaking.
Backdoor This property is required. string
Enable/disable route as backdoor.
Id This property is required. int
ID.
NetworkImportCheck This property is required. string
Configure insurance of BGP network route existence in IGP.
Prefix6 This property is required. string
Network IPv6 prefix.
RouteMap This property is required. string
Route map of VRF leaking.
backdoor This property is required. String
Enable/disable route as backdoor.
id This property is required. Integer
ID.
networkImportCheck This property is required. String
Configure insurance of BGP network route existence in IGP.
prefix6 This property is required. String
Network IPv6 prefix.
routeMap This property is required. String
Route map of VRF leaking.
backdoor This property is required. string
Enable/disable route as backdoor.
id This property is required. number
ID.
networkImportCheck This property is required. string
Configure insurance of BGP network route existence in IGP.
prefix6 This property is required. string
Network IPv6 prefix.
routeMap This property is required. string
Route map of VRF leaking.
backdoor This property is required. str
Enable/disable route as backdoor.
id This property is required. int
ID.
network_import_check This property is required. str
Configure insurance of BGP network route existence in IGP.
prefix6 This property is required. str
Network IPv6 prefix.
route_map This property is required. str
Route map of VRF leaking.
backdoor This property is required. String
Enable/disable route as backdoor.
id This property is required. Number
ID.
networkImportCheck This property is required. String
Configure insurance of BGP network route existence in IGP.
prefix6 This property is required. String
Network IPv6 prefix.
routeMap This property is required. String
Route map of VRF leaking.

GetBgpRedistribute

Name This property is required. string
Distribute list entry name.
RouteMap This property is required. string
Route map of VRF leaking.
Status This property is required. string
Status
Name This property is required. string
Distribute list entry name.
RouteMap This property is required. string
Route map of VRF leaking.
Status This property is required. string
Status
name This property is required. String
Distribute list entry name.
routeMap This property is required. String
Route map of VRF leaking.
status This property is required. String
Status
name This property is required. string
Distribute list entry name.
routeMap This property is required. string
Route map of VRF leaking.
status This property is required. string
Status
name This property is required. str
Distribute list entry name.
route_map This property is required. str
Route map of VRF leaking.
status This property is required. str
Status
name This property is required. String
Distribute list entry name.
routeMap This property is required. String
Route map of VRF leaking.
status This property is required. String
Status

GetBgpRedistribute6

Name This property is required. string
Distribute list entry name.
RouteMap This property is required. string
Route map of VRF leaking.
Status This property is required. string
Status
Name This property is required. string
Distribute list entry name.
RouteMap This property is required. string
Route map of VRF leaking.
Status This property is required. string
Status
name This property is required. String
Distribute list entry name.
routeMap This property is required. String
Route map of VRF leaking.
status This property is required. String
Status
name This property is required. string
Distribute list entry name.
routeMap This property is required. string
Route map of VRF leaking.
status This property is required. string
Status
name This property is required. str
Distribute list entry name.
route_map This property is required. str
Route map of VRF leaking.
status This property is required. str
Status
name This property is required. String
Distribute list entry name.
routeMap This property is required. String
Route map of VRF leaking.
status This property is required. String
Status

GetBgpVrf

ExportRts This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpVrfExportRt>
List of export route target. The structure of export_rt block is documented below.
ImportRouteMap This property is required. string
Import route map.
ImportRts This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpVrfImportRt>
List of import route target. The structure of import_rt block is documented below.
LeakTargets This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpVrfLeakTarget>
Target VRF table. The structure of leak_target block is documented below.
Rd This property is required. string
Route Distinguisher: AA:NN|A.B.C.D:NN.
Role This property is required. string
VRF role.
Vrf This property is required. string
Target VRF ID <0 - 31>.
ExportRts This property is required. []GetBgpVrfExportRt
List of export route target. The structure of export_rt block is documented below.
ImportRouteMap This property is required. string
Import route map.
ImportRts This property is required. []GetBgpVrfImportRt
List of import route target. The structure of import_rt block is documented below.
LeakTargets This property is required. []GetBgpVrfLeakTarget
Target VRF table. The structure of leak_target block is documented below.
Rd This property is required. string
Route Distinguisher: AA:NN|A.B.C.D:NN.
Role This property is required. string
VRF role.
Vrf This property is required. string
Target VRF ID <0 - 31>.
exportRts This property is required. List<GetBgpVrfExportRt>
List of export route target. The structure of export_rt block is documented below.
importRouteMap This property is required. String
Import route map.
importRts This property is required. List<GetBgpVrfImportRt>
List of import route target. The structure of import_rt block is documented below.
leakTargets This property is required. List<GetBgpVrfLeakTarget>
Target VRF table. The structure of leak_target block is documented below.
rd This property is required. String
Route Distinguisher: AA:NN|A.B.C.D:NN.
role This property is required. String
VRF role.
vrf This property is required. String
Target VRF ID <0 - 31>.
exportRts This property is required. GetBgpVrfExportRt[]
List of export route target. The structure of export_rt block is documented below.
importRouteMap This property is required. string
Import route map.
importRts This property is required. GetBgpVrfImportRt[]
List of import route target. The structure of import_rt block is documented below.
leakTargets This property is required. GetBgpVrfLeakTarget[]
Target VRF table. The structure of leak_target block is documented below.
rd This property is required. string
Route Distinguisher: AA:NN|A.B.C.D:NN.
role This property is required. string
VRF role.
vrf This property is required. string
Target VRF ID <0 - 31>.
export_rts This property is required. Sequence[GetBgpVrfExportRt]
List of export route target. The structure of export_rt block is documented below.
import_route_map This property is required. str
Import route map.
import_rts This property is required. Sequence[GetBgpVrfImportRt]
List of import route target. The structure of import_rt block is documented below.
leak_targets This property is required. Sequence[GetBgpVrfLeakTarget]
Target VRF table. The structure of leak_target block is documented below.
rd This property is required. str
Route Distinguisher: AA:NN|A.B.C.D:NN.
role This property is required. str
VRF role.
vrf This property is required. str
Target VRF ID <0 - 31>.
exportRts This property is required. List<Property Map>
List of export route target. The structure of export_rt block is documented below.
importRouteMap This property is required. String
Import route map.
importRts This property is required. List<Property Map>
List of import route target. The structure of import_rt block is documented below.
leakTargets This property is required. List<Property Map>
Target VRF table. The structure of leak_target block is documented below.
rd This property is required. String
Route Distinguisher: AA:NN|A.B.C.D:NN.
role This property is required. String
VRF role.
vrf This property is required. String
Target VRF ID <0 - 31>.

GetBgpVrf6

ExportRts This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpVrf6ExportRt>
List of export route target. The structure of export_rt block is documented below.
ImportRouteMap This property is required. string
Import route map.
ImportRts This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpVrf6ImportRt>
List of import route target. The structure of import_rt block is documented below.
LeakTargets This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpVrf6LeakTarget>
Target VRF table. The structure of leak_target block is documented below.
Rd This property is required. string
Route Distinguisher: AA:NN|A.B.C.D:NN.
Role This property is required. string
VRF role.
Vrf This property is required. string
Target VRF ID <0 - 31>.
ExportRts This property is required. []GetBgpVrf6ExportRt
List of export route target. The structure of export_rt block is documented below.
ImportRouteMap This property is required. string
Import route map.
ImportRts This property is required. []GetBgpVrf6ImportRt
List of import route target. The structure of import_rt block is documented below.
LeakTargets This property is required. []GetBgpVrf6LeakTarget
Target VRF table. The structure of leak_target block is documented below.
Rd This property is required. string
Route Distinguisher: AA:NN|A.B.C.D:NN.
Role This property is required. string
VRF role.
Vrf This property is required. string
Target VRF ID <0 - 31>.
exportRts This property is required. List<GetBgpVrf6ExportRt>
List of export route target. The structure of export_rt block is documented below.
importRouteMap This property is required. String
Import route map.
importRts This property is required. List<GetBgpVrf6ImportRt>
List of import route target. The structure of import_rt block is documented below.
leakTargets This property is required. List<GetBgpVrf6LeakTarget>
Target VRF table. The structure of leak_target block is documented below.
rd This property is required. String
Route Distinguisher: AA:NN|A.B.C.D:NN.
role This property is required. String
VRF role.
vrf This property is required. String
Target VRF ID <0 - 31>.
exportRts This property is required. GetBgpVrf6ExportRt[]
List of export route target. The structure of export_rt block is documented below.
importRouteMap This property is required. string
Import route map.
importRts This property is required. GetBgpVrf6ImportRt[]
List of import route target. The structure of import_rt block is documented below.
leakTargets This property is required. GetBgpVrf6LeakTarget[]
Target VRF table. The structure of leak_target block is documented below.
rd This property is required. string
Route Distinguisher: AA:NN|A.B.C.D:NN.
role This property is required. string
VRF role.
vrf This property is required. string
Target VRF ID <0 - 31>.
export_rts This property is required. Sequence[GetBgpVrf6ExportRt]
List of export route target. The structure of export_rt block is documented below.
import_route_map This property is required. str
Import route map.
import_rts This property is required. Sequence[GetBgpVrf6ImportRt]
List of import route target. The structure of import_rt block is documented below.
leak_targets This property is required. Sequence[GetBgpVrf6LeakTarget]
Target VRF table. The structure of leak_target block is documented below.
rd This property is required. str
Route Distinguisher: AA:NN|A.B.C.D:NN.
role This property is required. str
VRF role.
vrf This property is required. str
Target VRF ID <0 - 31>.
exportRts This property is required. List<Property Map>
List of export route target. The structure of export_rt block is documented below.
importRouteMap This property is required. String
Import route map.
importRts This property is required. List<Property Map>
List of import route target. The structure of import_rt block is documented below.
leakTargets This property is required. List<Property Map>
Target VRF table. The structure of leak_target block is documented below.
rd This property is required. String
Route Distinguisher: AA:NN|A.B.C.D:NN.
role This property is required. String
VRF role.
vrf This property is required. String
Target VRF ID <0 - 31>.

GetBgpVrf6ExportRt

RouteTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
RouteTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. String
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
route_target This property is required. str
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. String
Attribute: AA:NN|A.B.C.D:NN

GetBgpVrf6ImportRt

RouteTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
RouteTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. String
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
route_target This property is required. str
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. String
Attribute: AA:NN|A.B.C.D:NN

GetBgpVrf6LeakTarget

Interface This property is required. string
Interface which is used to leak routes to target VRF.
RouteMap This property is required. string
Route map of VRF leaking.
Vrf This property is required. string
Target VRF ID <0 - 31>.
Interface This property is required. string
Interface which is used to leak routes to target VRF.
RouteMap This property is required. string
Route map of VRF leaking.
Vrf This property is required. string
Target VRF ID <0 - 31>.
interface_ This property is required. String
Interface which is used to leak routes to target VRF.
routeMap This property is required. String
Route map of VRF leaking.
vrf This property is required. String
Target VRF ID <0 - 31>.
interface This property is required. string
Interface which is used to leak routes to target VRF.
routeMap This property is required. string
Route map of VRF leaking.
vrf This property is required. string
Target VRF ID <0 - 31>.
interface This property is required. str
Interface which is used to leak routes to target VRF.
route_map This property is required. str
Route map of VRF leaking.
vrf This property is required. str
Target VRF ID <0 - 31>.
interface This property is required. String
Interface which is used to leak routes to target VRF.
routeMap This property is required. String
Route map of VRF leaking.
vrf This property is required. String
Target VRF ID <0 - 31>.

GetBgpVrfExportRt

RouteTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
RouteTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. String
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
route_target This property is required. str
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. String
Attribute: AA:NN|A.B.C.D:NN

GetBgpVrfImportRt

RouteTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
RouteTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. String
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. string
Attribute: AA:NN|A.B.C.D:NN
route_target This property is required. str
Attribute: AA:NN|A.B.C.D:NN
routeTarget This property is required. String
Attribute: AA:NN|A.B.C.D:NN

GetBgpVrfLeak

Targets This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpVrfLeakTarget>
Target VRF table. The structure of target block is documented below.
Vrf This property is required. string
Target VRF ID <0 - 31>.
Targets This property is required. []GetBgpVrfLeakTarget
Target VRF table. The structure of target block is documented below.
Vrf This property is required. string
Target VRF ID <0 - 31>.
targets This property is required. List<GetBgpVrfLeakTarget>
Target VRF table. The structure of target block is documented below.
vrf This property is required. String
Target VRF ID <0 - 31>.
targets This property is required. GetBgpVrfLeakTarget[]
Target VRF table. The structure of target block is documented below.
vrf This property is required. string
Target VRF ID <0 - 31>.
targets This property is required. Sequence[GetBgpVrfLeakTarget]
Target VRF table. The structure of target block is documented below.
vrf This property is required. str
Target VRF ID <0 - 31>.
targets This property is required. List<Property Map>
Target VRF table. The structure of target block is documented below.
vrf This property is required. String
Target VRF ID <0 - 31>.

GetBgpVrfLeak6

Targets This property is required. List<Pulumiverse.Fortios.Router.Inputs.GetBgpVrfLeak6Target>
Target VRF table. The structure of target block is documented below.
Vrf This property is required. string
Target VRF ID <0 - 31>.
Targets This property is required. []GetBgpVrfLeak6Target
Target VRF table. The structure of target block is documented below.
Vrf This property is required. string
Target VRF ID <0 - 31>.
targets This property is required. List<GetBgpVrfLeak6Target>
Target VRF table. The structure of target block is documented below.
vrf This property is required. String
Target VRF ID <0 - 31>.
targets This property is required. GetBgpVrfLeak6Target[]
Target VRF table. The structure of target block is documented below.
vrf This property is required. string
Target VRF ID <0 - 31>.
targets This property is required. Sequence[GetBgpVrfLeak6Target]
Target VRF table. The structure of target block is documented below.
vrf This property is required. str
Target VRF ID <0 - 31>.
targets This property is required. List<Property Map>
Target VRF table. The structure of target block is documented below.
vrf This property is required. String
Target VRF ID <0 - 31>.

GetBgpVrfLeak6Target

Interface This property is required. string
Interface which is used to leak routes to target VRF.
RouteMap This property is required. string
Route map of VRF leaking.
Vrf This property is required. string
Target VRF ID <0 - 31>.
Interface This property is required. string
Interface which is used to leak routes to target VRF.
RouteMap This property is required. string
Route map of VRF leaking.
Vrf This property is required. string
Target VRF ID <0 - 31>.
interface_ This property is required. String
Interface which is used to leak routes to target VRF.
routeMap This property is required. String
Route map of VRF leaking.
vrf This property is required. String
Target VRF ID <0 - 31>.
interface This property is required. string
Interface which is used to leak routes to target VRF.
routeMap This property is required. string
Route map of VRF leaking.
vrf This property is required. string
Target VRF ID <0 - 31>.
interface This property is required. str
Interface which is used to leak routes to target VRF.
route_map This property is required. str
Route map of VRF leaking.
vrf This property is required. str
Target VRF ID <0 - 31>.
interface This property is required. String
Interface which is used to leak routes to target VRF.
routeMap This property is required. String
Route map of VRF leaking.
vrf This property is required. String
Target VRF ID <0 - 31>.

GetBgpVrfLeakTarget

Interface This property is required. string
Interface which is used to leak routes to target VRF.
RouteMap This property is required. string
Route map of VRF leaking.
Vrf This property is required. string
Target VRF ID <0 - 31>.
Interface This property is required. string
Interface which is used to leak routes to target VRF.
RouteMap This property is required. string
Route map of VRF leaking.
Vrf This property is required. string
Target VRF ID <0 - 31>.
interface_ This property is required. String
Interface which is used to leak routes to target VRF.
routeMap This property is required. String
Route map of VRF leaking.
vrf This property is required. String
Target VRF ID <0 - 31>.
interface This property is required. string
Interface which is used to leak routes to target VRF.
routeMap This property is required. string
Route map of VRF leaking.
vrf This property is required. string
Target VRF ID <0 - 31>.
interface This property is required. str
Interface which is used to leak routes to target VRF.
route_map This property is required. str
Route map of VRF leaking.
vrf This property is required. str
Target VRF ID <0 - 31>.
interface This property is required. String
Interface which is used to leak routes to target VRF.
routeMap This property is required. String
Route map of VRF leaking.
vrf This property is required. String
Target VRF ID <0 - 31>.

Package Details

Repository
fortios pulumiverse/pulumi-fortios
License
Apache-2.0
Notes
This Pulumi package is based on the fortios Terraform Provider.
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse