QuestionQ303

Infrastructure and Automation

Drag the code snippets onto the blanks to manage an OSPF router area range by using the Puppet module. Not every option is used.

Drag & Drop
route_list
cisco_ospf_area
not_advertise
cisco_nexus_ospf
cost
range
 { 'devnet_ospf_instance default 10':
  ensure => 'present',
   => [
    ['10.3.0.0/16', '', '30'],
    ['10.3.3.0/24', '450']
  ],
}
Explanation

cisco_ospf_area is the Puppet resource used to manage OSPF areas. Its range property defines OSPF area ranges; not_advertise prevents the specified range from being advertised, while 30 specifies its cost.

Community Discussion

No comments yet. Be the first to start the discussion!