1. Packages
  2. Cisco IOS XE Resource Provider
  3. API Docs
  4. Arp
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

iosxe.Arp

Explore with Pulumi AI

This resource can manage the ARP configuration.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Iosxe = Lbrlabs.PulumiPackage.Iosxe;

return await Deployment.RunAsync(() => 
{
    var example = new Iosxe.Arp("example", new()
    {
        IncompleteEntries = 10,
        ProxyDisable = true,
    });

});
Copy
package main

import (
	"github.com/lbrlabs/pulumi-iosxe/sdk/go/iosxe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := iosxe.NewArp(ctx, "example", &iosxe.ArpArgs{
			IncompleteEntries: pulumi.Int(10),
			ProxyDisable:      pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.iosxe.Arp;
import com.pulumi.iosxe.ArpArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Arp("example", ArpArgs.builder()        
            .incompleteEntries(10)
            .proxyDisable(true)
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as iosxe from "@lbrlabs/pulumi-iosxe";

const example = new iosxe.Arp("example", {
    incompleteEntries: 10,
    proxyDisable: true,
});
Copy
import pulumi
import lbrlabs_pulumi_iosxe as iosxe

example = iosxe.Arp("example",
    incomplete_entries=10,
    proxy_disable=True)
Copy
resources:
  example:
    type: iosxe:Arp
    properties:
      incompleteEntries: 10
      proxyDisable: true
Copy

Create Arp Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Arp(name: string, args?: ArpArgs, opts?: CustomResourceOptions);
@overload
def Arp(resource_name: str,
        args: Optional[ArpArgs] = None,
        opts: Optional[ResourceOptions] = None)

@overload
def Arp(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        delete_mode: Optional[str] = None,
        device: Optional[str] = None,
        entry_learn: Optional[int] = None,
        incomplete_entries: Optional[int] = None,
        inspection_filters: Optional[Sequence[ArpInspectionFilterArgs]] = None,
        inspection_log_buffer_entries: Optional[int] = None,
        inspection_log_buffer_logs_entries: Optional[int] = None,
        inspection_log_buffer_logs_interval: Optional[int] = None,
        inspection_validate_allow_zeros: Optional[bool] = None,
        inspection_validate_dst_mac: Optional[bool] = None,
        inspection_validate_ip: Optional[bool] = None,
        inspection_validate_src_mac: Optional[bool] = None,
        inspection_vlan: Optional[str] = None,
        proxy_disable: Optional[bool] = None)
func NewArp(ctx *Context, name string, args *ArpArgs, opts ...ResourceOption) (*Arp, error)
public Arp(string name, ArpArgs? args = null, CustomResourceOptions? opts = null)
public Arp(String name, ArpArgs args)
public Arp(String name, ArpArgs args, CustomResourceOptions options)
type: iosxe:Arp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ArpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ArpArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ArpArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ArpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ArpArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var arpResource = new Iosxe.Arp("arpResource", new()
{
    DeleteMode = "string",
    Device = "string",
    EntryLearn = 0,
    IncompleteEntries = 0,
    InspectionFilters = new[]
    {
        new Iosxe.Inputs.ArpInspectionFilterArgs
        {
            Name = "string",
            Vlans = new[]
            {
                new Iosxe.Inputs.ArpInspectionFilterVlanArgs
                {
                    VlanRange = "string",
                    Static = false,
                },
            },
        },
    },
    InspectionLogBufferEntries = 0,
    InspectionLogBufferLogsEntries = 0,
    InspectionLogBufferLogsInterval = 0,
    InspectionValidateAllowZeros = false,
    InspectionValidateDstMac = false,
    InspectionValidateIp = false,
    InspectionValidateSrcMac = false,
    InspectionVlan = "string",
    ProxyDisable = false,
});
Copy
example, err := iosxe.NewArp(ctx, "arpResource", &iosxe.ArpArgs{
	DeleteMode:        pulumi.String("string"),
	Device:            pulumi.String("string"),
	EntryLearn:        pulumi.Int(0),
	IncompleteEntries: pulumi.Int(0),
	InspectionFilters: iosxe.ArpInspectionFilterArray{
		&iosxe.ArpInspectionFilterArgs{
			Name: pulumi.String("string"),
			Vlans: iosxe.ArpInspectionFilterVlanArray{
				&iosxe.ArpInspectionFilterVlanArgs{
					VlanRange: pulumi.String("string"),
					Static:    pulumi.Bool(false),
				},
			},
		},
	},
	InspectionLogBufferEntries:      pulumi.Int(0),
	InspectionLogBufferLogsEntries:  pulumi.Int(0),
	InspectionLogBufferLogsInterval: pulumi.Int(0),
	InspectionValidateAllowZeros:    pulumi.Bool(false),
	InspectionValidateDstMac:        pulumi.Bool(false),
	InspectionValidateIp:            pulumi.Bool(false),
	InspectionValidateSrcMac:        pulumi.Bool(false),
	InspectionVlan:                  pulumi.String("string"),
	ProxyDisable:                    pulumi.Bool(false),
})
Copy
var arpResource = new Arp("arpResource", ArpArgs.builder()
    .deleteMode("string")
    .device("string")
    .entryLearn(0)
    .incompleteEntries(0)
    .inspectionFilters(ArpInspectionFilterArgs.builder()
        .name("string")
        .vlans(ArpInspectionFilterVlanArgs.builder()
            .vlanRange("string")
            .static_(false)
            .build())
        .build())
    .inspectionLogBufferEntries(0)
    .inspectionLogBufferLogsEntries(0)
    .inspectionLogBufferLogsInterval(0)
    .inspectionValidateAllowZeros(false)
    .inspectionValidateDstMac(false)
    .inspectionValidateIp(false)
    .inspectionValidateSrcMac(false)
    .inspectionVlan("string")
    .proxyDisable(false)
    .build());
Copy
arp_resource = iosxe.Arp("arpResource",
    delete_mode="string",
    device="string",
    entry_learn=0,
    incomplete_entries=0,
    inspection_filters=[{
        "name": "string",
        "vlans": [{
            "vlan_range": "string",
            "static": False,
        }],
    }],
    inspection_log_buffer_entries=0,
    inspection_log_buffer_logs_entries=0,
    inspection_log_buffer_logs_interval=0,
    inspection_validate_allow_zeros=False,
    inspection_validate_dst_mac=False,
    inspection_validate_ip=False,
    inspection_validate_src_mac=False,
    inspection_vlan="string",
    proxy_disable=False)
Copy
const arpResource = new iosxe.Arp("arpResource", {
    deleteMode: "string",
    device: "string",
    entryLearn: 0,
    incompleteEntries: 0,
    inspectionFilters: [{
        name: "string",
        vlans: [{
            vlanRange: "string",
            static: false,
        }],
    }],
    inspectionLogBufferEntries: 0,
    inspectionLogBufferLogsEntries: 0,
    inspectionLogBufferLogsInterval: 0,
    inspectionValidateAllowZeros: false,
    inspectionValidateDstMac: false,
    inspectionValidateIp: false,
    inspectionValidateSrcMac: false,
    inspectionVlan: "string",
    proxyDisable: false,
});
Copy
type: iosxe:Arp
properties:
    deleteMode: string
    device: string
    entryLearn: 0
    incompleteEntries: 0
    inspectionFilters:
        - name: string
          vlans:
            - static: false
              vlanRange: string
    inspectionLogBufferEntries: 0
    inspectionLogBufferLogsEntries: 0
    inspectionLogBufferLogsInterval: 0
    inspectionValidateAllowZeros: false
    inspectionValidateDstMac: false
    inspectionValidateIp: false
    inspectionValidateSrcMac: false
    inspectionVlan: string
    proxyDisable: false
Copy

Arp Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Arp resource accepts the following input properties:

DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
EntryLearn int
Maximum learn entry limit - Range: 255-512000
IncompleteEntries int
Specify the number of IP addresses to resolve - Range: 1-2147483647
InspectionFilters List<Lbrlabs.PulumiPackage.Iosxe.Inputs.ArpInspectionFilter>
Specify ARP acl to be applied
InspectionLogBufferEntries int
Number of entries for log buffer - Range: 0-1024
InspectionLogBufferLogsEntries int
Number of entries for log buffer - Range: 0-1024
InspectionLogBufferLogsInterval int
Interval for controlling logging rate - Range: 0-86400
InspectionValidateAllowZeros bool
Allow 0.0.0.0 sender IP address
InspectionValidateDstMac bool
Validate destination MAC address
InspectionValidateIp bool
Validate IP addresses
InspectionValidateSrcMac bool
Validate source MAC address
InspectionVlan string
Enable/Disable ARP Inspection on vlans
ProxyDisable bool
Disable proxy ARP on all interfaces
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
EntryLearn int
Maximum learn entry limit - Range: 255-512000
IncompleteEntries int
Specify the number of IP addresses to resolve - Range: 1-2147483647
InspectionFilters []ArpInspectionFilterArgs
Specify ARP acl to be applied
InspectionLogBufferEntries int
Number of entries for log buffer - Range: 0-1024
InspectionLogBufferLogsEntries int
Number of entries for log buffer - Range: 0-1024
InspectionLogBufferLogsInterval int
Interval for controlling logging rate - Range: 0-86400
InspectionValidateAllowZeros bool
Allow 0.0.0.0 sender IP address
InspectionValidateDstMac bool
Validate destination MAC address
InspectionValidateIp bool
Validate IP addresses
InspectionValidateSrcMac bool
Validate source MAC address
InspectionVlan string
Enable/Disable ARP Inspection on vlans
ProxyDisable bool
Disable proxy ARP on all interfaces
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
entryLearn Integer
Maximum learn entry limit - Range: 255-512000
incompleteEntries Integer
Specify the number of IP addresses to resolve - Range: 1-2147483647
inspectionFilters List<ArpInspectionFilter>
Specify ARP acl to be applied
inspectionLogBufferEntries Integer
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsEntries Integer
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsInterval Integer
Interval for controlling logging rate - Range: 0-86400
inspectionValidateAllowZeros Boolean
Allow 0.0.0.0 sender IP address
inspectionValidateDstMac Boolean
Validate destination MAC address
inspectionValidateIp Boolean
Validate IP addresses
inspectionValidateSrcMac Boolean
Validate source MAC address
inspectionVlan String
Enable/Disable ARP Inspection on vlans
proxyDisable Boolean
Disable proxy ARP on all interfaces
deleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device string
A device name from the provider configuration.
entryLearn number
Maximum learn entry limit - Range: 255-512000
incompleteEntries number
Specify the number of IP addresses to resolve - Range: 1-2147483647
inspectionFilters ArpInspectionFilter[]
Specify ARP acl to be applied
inspectionLogBufferEntries number
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsEntries number
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsInterval number
Interval for controlling logging rate - Range: 0-86400
inspectionValidateAllowZeros boolean
Allow 0.0.0.0 sender IP address
inspectionValidateDstMac boolean
Validate destination MAC address
inspectionValidateIp boolean
Validate IP addresses
inspectionValidateSrcMac boolean
Validate source MAC address
inspectionVlan string
Enable/Disable ARP Inspection on vlans
proxyDisable boolean
Disable proxy ARP on all interfaces
delete_mode str
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device str
A device name from the provider configuration.
entry_learn int
Maximum learn entry limit - Range: 255-512000
incomplete_entries int
Specify the number of IP addresses to resolve - Range: 1-2147483647
inspection_filters Sequence[ArpInspectionFilterArgs]
Specify ARP acl to be applied
inspection_log_buffer_entries int
Number of entries for log buffer - Range: 0-1024
inspection_log_buffer_logs_entries int
Number of entries for log buffer - Range: 0-1024
inspection_log_buffer_logs_interval int
Interval for controlling logging rate - Range: 0-86400
inspection_validate_allow_zeros bool
Allow 0.0.0.0 sender IP address
inspection_validate_dst_mac bool
Validate destination MAC address
inspection_validate_ip bool
Validate IP addresses
inspection_validate_src_mac bool
Validate source MAC address
inspection_vlan str
Enable/Disable ARP Inspection on vlans
proxy_disable bool
Disable proxy ARP on all interfaces
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
entryLearn Number
Maximum learn entry limit - Range: 255-512000
incompleteEntries Number
Specify the number of IP addresses to resolve - Range: 1-2147483647
inspectionFilters List<Property Map>
Specify ARP acl to be applied
inspectionLogBufferEntries Number
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsEntries Number
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsInterval Number
Interval for controlling logging rate - Range: 0-86400
inspectionValidateAllowZeros Boolean
Allow 0.0.0.0 sender IP address
inspectionValidateDstMac Boolean
Validate destination MAC address
inspectionValidateIp Boolean
Validate IP addresses
inspectionValidateSrcMac Boolean
Validate source MAC address
inspectionVlan String
Enable/Disable ARP Inspection on vlans
proxyDisable Boolean
Disable proxy ARP on all interfaces

Outputs

All input properties are implicitly available as output properties. Additionally, the Arp resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Arp Resource

Get an existing Arp resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ArpState, opts?: CustomResourceOptions): Arp
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        delete_mode: Optional[str] = None,
        device: Optional[str] = None,
        entry_learn: Optional[int] = None,
        incomplete_entries: Optional[int] = None,
        inspection_filters: Optional[Sequence[ArpInspectionFilterArgs]] = None,
        inspection_log_buffer_entries: Optional[int] = None,
        inspection_log_buffer_logs_entries: Optional[int] = None,
        inspection_log_buffer_logs_interval: Optional[int] = None,
        inspection_validate_allow_zeros: Optional[bool] = None,
        inspection_validate_dst_mac: Optional[bool] = None,
        inspection_validate_ip: Optional[bool] = None,
        inspection_validate_src_mac: Optional[bool] = None,
        inspection_vlan: Optional[str] = None,
        proxy_disable: Optional[bool] = None) -> Arp
func GetArp(ctx *Context, name string, id IDInput, state *ArpState, opts ...ResourceOption) (*Arp, error)
public static Arp Get(string name, Input<string> id, ArpState? state, CustomResourceOptions? opts = null)
public static Arp get(String name, Output<String> id, ArpState state, CustomResourceOptions options)
resources:  _:    type: iosxe:Arp    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
EntryLearn int
Maximum learn entry limit - Range: 255-512000
IncompleteEntries int
Specify the number of IP addresses to resolve - Range: 1-2147483647
InspectionFilters List<Lbrlabs.PulumiPackage.Iosxe.Inputs.ArpInspectionFilter>
Specify ARP acl to be applied
InspectionLogBufferEntries int
Number of entries for log buffer - Range: 0-1024
InspectionLogBufferLogsEntries int
Number of entries for log buffer - Range: 0-1024
InspectionLogBufferLogsInterval int
Interval for controlling logging rate - Range: 0-86400
InspectionValidateAllowZeros bool
Allow 0.0.0.0 sender IP address
InspectionValidateDstMac bool
Validate destination MAC address
InspectionValidateIp bool
Validate IP addresses
InspectionValidateSrcMac bool
Validate source MAC address
InspectionVlan string
Enable/Disable ARP Inspection on vlans
ProxyDisable bool
Disable proxy ARP on all interfaces
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
EntryLearn int
Maximum learn entry limit - Range: 255-512000
IncompleteEntries int
Specify the number of IP addresses to resolve - Range: 1-2147483647
InspectionFilters []ArpInspectionFilterArgs
Specify ARP acl to be applied
InspectionLogBufferEntries int
Number of entries for log buffer - Range: 0-1024
InspectionLogBufferLogsEntries int
Number of entries for log buffer - Range: 0-1024
InspectionLogBufferLogsInterval int
Interval for controlling logging rate - Range: 0-86400
InspectionValidateAllowZeros bool
Allow 0.0.0.0 sender IP address
InspectionValidateDstMac bool
Validate destination MAC address
InspectionValidateIp bool
Validate IP addresses
InspectionValidateSrcMac bool
Validate source MAC address
InspectionVlan string
Enable/Disable ARP Inspection on vlans
ProxyDisable bool
Disable proxy ARP on all interfaces
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
entryLearn Integer
Maximum learn entry limit - Range: 255-512000
incompleteEntries Integer
Specify the number of IP addresses to resolve - Range: 1-2147483647
inspectionFilters List<ArpInspectionFilter>
Specify ARP acl to be applied
inspectionLogBufferEntries Integer
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsEntries Integer
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsInterval Integer
Interval for controlling logging rate - Range: 0-86400
inspectionValidateAllowZeros Boolean
Allow 0.0.0.0 sender IP address
inspectionValidateDstMac Boolean
Validate destination MAC address
inspectionValidateIp Boolean
Validate IP addresses
inspectionValidateSrcMac Boolean
Validate source MAC address
inspectionVlan String
Enable/Disable ARP Inspection on vlans
proxyDisable Boolean
Disable proxy ARP on all interfaces
deleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device string
A device name from the provider configuration.
entryLearn number
Maximum learn entry limit - Range: 255-512000
incompleteEntries number
Specify the number of IP addresses to resolve - Range: 1-2147483647
inspectionFilters ArpInspectionFilter[]
Specify ARP acl to be applied
inspectionLogBufferEntries number
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsEntries number
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsInterval number
Interval for controlling logging rate - Range: 0-86400
inspectionValidateAllowZeros boolean
Allow 0.0.0.0 sender IP address
inspectionValidateDstMac boolean
Validate destination MAC address
inspectionValidateIp boolean
Validate IP addresses
inspectionValidateSrcMac boolean
Validate source MAC address
inspectionVlan string
Enable/Disable ARP Inspection on vlans
proxyDisable boolean
Disable proxy ARP on all interfaces
delete_mode str
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device str
A device name from the provider configuration.
entry_learn int
Maximum learn entry limit - Range: 255-512000
incomplete_entries int
Specify the number of IP addresses to resolve - Range: 1-2147483647
inspection_filters Sequence[ArpInspectionFilterArgs]
Specify ARP acl to be applied
inspection_log_buffer_entries int
Number of entries for log buffer - Range: 0-1024
inspection_log_buffer_logs_entries int
Number of entries for log buffer - Range: 0-1024
inspection_log_buffer_logs_interval int
Interval for controlling logging rate - Range: 0-86400
inspection_validate_allow_zeros bool
Allow 0.0.0.0 sender IP address
inspection_validate_dst_mac bool
Validate destination MAC address
inspection_validate_ip bool
Validate IP addresses
inspection_validate_src_mac bool
Validate source MAC address
inspection_vlan str
Enable/Disable ARP Inspection on vlans
proxy_disable bool
Disable proxy ARP on all interfaces
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
entryLearn Number
Maximum learn entry limit - Range: 255-512000
incompleteEntries Number
Specify the number of IP addresses to resolve - Range: 1-2147483647
inspectionFilters List<Property Map>
Specify ARP acl to be applied
inspectionLogBufferEntries Number
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsEntries Number
Number of entries for log buffer - Range: 0-1024
inspectionLogBufferLogsInterval Number
Interval for controlling logging rate - Range: 0-86400
inspectionValidateAllowZeros Boolean
Allow 0.0.0.0 sender IP address
inspectionValidateDstMac Boolean
Validate destination MAC address
inspectionValidateIp Boolean
Validate IP addresses
inspectionValidateSrcMac Boolean
Validate source MAC address
inspectionVlan String
Enable/Disable ARP Inspection on vlans
proxyDisable Boolean
Disable proxy ARP on all interfaces

Supporting Types

ArpInspectionFilter
, ArpInspectionFilterArgs

Name This property is required. string
Vlans []ArpInspectionFilterVlan
name This property is required. String
vlans List<ArpInspectionFilterVlan>
name This property is required. string
vlans ArpInspectionFilterVlan[]
name This property is required. str
vlans Sequence[ArpInspectionFilterVlan]
name This property is required. String
vlans List<Property Map>

ArpInspectionFilterVlan
, ArpInspectionFilterVlanArgs

VlanRange This property is required. string
Static bool
VlanRange This property is required. string
Static bool
vlanRange This property is required. String
static_ Boolean
vlanRange This property is required. string
static boolean
vlan_range This property is required. str
static bool
vlanRange This property is required. String
static Boolean

Import

 $ pulumi import iosxe:index/arp:Arp example "Cisco-IOS-XE-native:native/ip/arp"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
iosxe lbrlabs/pulumi-iosxe
License
Apache-2.0
Notes
This Pulumi package is based on the iosxe Terraform Provider.