Resource Type: quagga_bgp_as_path

Defined in:
lib/puppet/type/quagga_bgp_as_path.rb
Providers:
quagga

Overview

This type provides the capabilities to manage BGP as-path access-list within puppet.

Examples:

  quagga_bgp_as_path { 'as100':
      ensure => present,
      rules => [
          'permit _100$',
          'permit _100_',
      ],
  }

Properties

  • ensure (defaults to: present)

    The basic property that the resource should be in.

    Supported values:
    • present
    • absent
  • rules

    Set actions of this ap-path list.

    Supported values:
    • %r{\A(permit|deny)\s\^?[_,\d\.\\\*\+\-\[\]\(\)\{\}\|\?]+\$?\Z}

Parameters

  • name (namevar)

    The name of the as-path access-list.

    Supported values:
    • %r{\A\w+\Z}
  • provider

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