addOSPFInterfaceSettings

The addOSPFInterfaceSettings operation handles configuration related to OSPFInterfaceSettings model. 

Description

This API call is not allowed on the standby unit in an HA pair.

Data Parameters

Parameter Required Type Description
name True string A string that represents the name of the object
description False string
Field level constraints: length must be between 0 and 200 (inclusive). (Note: Additional constraints might exist)
deviceInterface True object The interface for which ospf settings has to be configured. The interface must not be a BVI interface, member of BVI interface, or be passive, or used in high availability configuration, and should be in enabled state
Field level constraints: cannot be null. (Note: Additional constraints might exist)
Allowed types are: [BridgeGroupInterface, EtherChannelInterface, PhysicalInterface, SubInterface, VirtualTunnelInterface, VlanInterface]
ospfProtocolConfiguration True object Represents the configuration to be made for OSPF protocol
Field level constraints: cannot be null. (Note: Additional constraints might exist)
type True string A UTF8 string, all letters lower-case, that represents the class-type. This corresponds to the class name.

Path Parameters

Parameter Required Type Description
vrfId True string

Example

- name: Execute 'addOSPFInterfaceSettings' operation
  ftd_configuration:
    operation: "addOSPFInterfaceSettings"
    data:
        name: "{{ name }}"
        description: "{{ description }}"
        deviceInterface: "{{ device_interface }}"
        ospfProtocolConfiguration: "{{ ospf_protocol_configuration }}"
        type: "{{ type }}"
    path_params:
        vrfId: "{{ vrf_id }}"