class PaloAlto::XML::Config::Devices::Entry::TemplateStack::Entry::Config::Devices::Entry::Network::VirtualRouter::Entry::Protocol::Ospfv3

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 304505
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 306237
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 306241
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 305993
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 304960
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 306245
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 306249
def disable_transit_traffic=(val)
        prop_set('disable-transit-traffic', val)
end
enable() click to toggle source
# File lib/palo_alto/config.rb, line 306222
def enable
        prop_get('enable')
end
enable=(val) click to toggle source
# File lib/palo_alto/config.rb, line 306225
def enable=(val)
        prop_set('enable', val)
end
export_rules() click to toggle source
# File lib/palo_alto/config.rb, line 306089
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 304995
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 306177
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 304502
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 306229
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 306233
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 306215
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 306219
def router_id=(val)
        prop_set('router-id', val)
end
timers() click to toggle source
# File lib/palo_alto/config.rb, line 304549
def timers
        @subclasses['timers'] ||= Timers.new(parent_instance: self, create_children: @create_children)
end