addVirtualRouter

The addVirtualRouter operation handles configuration related to VirtualRouter 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 Name of the VRF
isSystemDefined True boolean A Boolean value, TRUE or FALSE(the default). The TRUE value indicates that this VRF object is a system defined object with name as Global
Field level constraints: cannot be null. (Note: Additional constraints might exist)
description False string An optional description of this VRF
Field level constraints: length must be between 0 and 200 (inclusive), must match pattern ^((?!;).)*$. (Note: Additional constraints might exist)
interfaces False [object] Interfaces which will operate under the specific VRF context
Allowed types are: [BridgeGroupInterface, EtherChannelInterface, PhysicalInterface, SubInterface, VirtualTunnelInterface, VlanInterface]
type True string virtualrouter

Example

- name: Execute 'addVirtualRouter' operation
  ftd_configuration:
    operation: "addVirtualRouter"
    data:
        name: "{{ name }}"
        isSystemDefined: "{{ is_system_defined }}"
        description: "{{ description }}"
        interfaces: "{{ interfaces }}"
        type: "{{ type }}"