Resource Type: cisco_vrf
- Defined in:
- lib/puppet/type/cisco_vrf.rb
- Providers:
-
cisco
Overview
Manages a Cisco VRF. ~~~puppet cisco_vrf
..attributes..
~~~
<vrf> is the complete name of the VRF.
Example: ~~~puppet
cisco_vrf {'red':
ensure => present,
shutdown => false,
description => 'vrf red',
mhost_ipv4_default_interface => 'Loopback100'
mhost_ipv6_default_interface => 'Loopback100'
remote_route_filtering => false
route_distinguisher => '2:3'
vni => 4096,
vpn_id => '1:1',
}
~~~