class PaloAlto::XML::Config::Devices::Entry::Template::Entry::Config::Devices::Entry::Network::VirtualRouter::Entry::Protocol::Ospfv3
Public Instance Methods
_section()
click to toggle source
# File lib/palo_alto/config.rb, line 197944 def _section :'ospfv3' end
allow_redist_default_route()
click to toggle source
allow redistribute default route to OSPF
# File lib/palo_alto/config.rb, line 199674 def allow_redist_default_route prop_get('allow-redist-default-route') end
allow_redist_default_route=(val)
click to toggle source
allow redistribute default route to OSPF
# File lib/palo_alto/config.rb, line 199678 def allow_redist_default_route=(val) prop_set('allow-redist-default-route', val) end
area()
click to toggle source
# File lib/palo_alto/config.rb, line 199431 def area if @create_children @subclasses['area'] ||= Area.new(parent_instance: self, create_children: @create_children) else Area.new(parent_instance: self) end end
auth_profile()
click to toggle source
# File lib/palo_alto/config.rb, line 198399 def auth_profile if @create_children @subclasses['auth-profile'] ||= AuthProfile.new(parent_instance: self, create_children: @create_children) else AuthProfile.new(parent_instance: self) end end
disable_transit_traffic()
click to toggle source
whether OSPFv3 should set the R- and V6-bits in its Router-LSAs
# File lib/palo_alto/config.rb, line 199682 def disable_transit_traffic prop_get('disable-transit-traffic') end
disable_transit_traffic=(val)
click to toggle source
whether OSPFv3 should set the R- and V6-bits in its Router-LSAs
# File lib/palo_alto/config.rb, line 199686 def disable_transit_traffic=(val) prop_set('disable-transit-traffic', val) end
enable()
click to toggle source
# File lib/palo_alto/config.rb, line 199659 def enable prop_get('enable') end
enable=(val)
click to toggle source
# File lib/palo_alto/config.rb, line 199662 def enable=(val) prop_set('enable', val) end
export_rules()
click to toggle source
# File lib/palo_alto/config.rb, line 199527 def export_rules if @create_children @subclasses['export-rules'] ||= ExportRules.new(parent_instance: self, create_children: @create_children) else ExportRules.new(parent_instance: self) end end
global_bfd()
click to toggle source
# File lib/palo_alto/config.rb, line 198434 def global_bfd @subclasses['global-bfd'] ||= GlobalBfd.new(parent_instance: self, create_children: @create_children) end
graceful_restart()
click to toggle source
# File lib/palo_alto/config.rb, line 199615 def graceful_restart @subclasses['graceful-restart'] ||= GracefulRestart.new(parent_instance: self, create_children: @create_children) end
has_multiple_values?()
click to toggle source
# File lib/palo_alto/config.rb, line 197941 def has_multiple_values? false end
reject_default_route()
click to toggle source
do not learn default route from OSPF
# File lib/palo_alto/config.rb, line 199666 def reject_default_route prop_get('reject-default-route') end
reject_default_route=(val)
click to toggle source
do not learn default route from OSPF
# File lib/palo_alto/config.rb, line 199670 def reject_default_route=(val) prop_set('reject-default-route', val) end
router_id()
click to toggle source
router id of this OSPFv3 instance
# File lib/palo_alto/config.rb, line 199652 def router_id prop_get('router-id') end
router_id=(val)
click to toggle source
router id of this OSPFv3 instance
# File lib/palo_alto/config.rb, line 199656 def router_id=(val) prop_set('router-id', val) end
timers()
click to toggle source
# File lib/palo_alto/config.rb, line 197988 def timers @subclasses['timers'] ||= Timers.new(parent_instance: self, create_children: @create_children) end