Resource Type: cisco_overlay_global

Defined in:
lib/puppet/type/cisco_overlay_global.rb
Providers:
cisco

Overview

Manages the global overlay configuration of a Cisco device.

~~~puppet cisco_overlay_global { <title>:

..attributes..

} ~~~

There can only be one instance of the cisco_overlay_global. Example:

~~~puppet

cisco_overlay_global { 'default':
  dup_host_ip_addr_detection_host_moves     => 200,
  dup_host_ip_addr_detection_timeout        => 20,
  anycast_gateway_mac                       => '1223.3445.5668',
  dup_host_mac_detection_host_moves         => 100,
  dup_host_mac_detection_timeout            => 10,
}

~~~

Properties

  • anycast_gateway_mac

    Distributed gateway virtual MAC address. Valid values are string, keyword ‘default’.

  • dup_host_ip_addr_detection_host_moves

    The number of host moves allowed in n seconds. Valid values are Integer, keyword ‘default’.

  • dup_host_ip_addr_detection_timeout

    The duplicate detection timeout in seconds for the number of host moves. Valid values are Integer, keyword ‘default’.

  • dup_host_mac_detection_host_moves

    The number of host moves allowed in n seconds. Valid values are Integer, keyword ‘default’.

  • dup_host_mac_detection_timeout

    The duplicate detection timeout in seconds for the number of host moves. Valid values are Integer, keyword ‘default’.

Parameters

  • name (namevar)

    Instance of overlay_global, only allow the value ‘default’

  • provider

    The specific backend to use for this ‘cisco_overlay_global` resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.