class PaloAlto::XML::Config::Devices::Entry::Template::Entry::Config::Devices::Entry::Network::VirtualRouter::Entry::Protocol::Ospf

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 196481
def _section
        :'ospf'
end
allow_redist_default_route() click to toggle source

allow redistribute default route to OSPF

# File lib/palo_alto/config.rb, line 197921
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 197925
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 197678
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 196726
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
enable() click to toggle source
# File lib/palo_alto/config.rb, line 197906
def enable
        prop_get('enable')
end
enable=(val) click to toggle source
# File lib/palo_alto/config.rb, line 197909
def enable=(val)
        prop_set('enable', val)
end
export_rules() click to toggle source
# File lib/palo_alto/config.rb, line 197774
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
flood_prevention() click to toggle source
# File lib/palo_alto/config.rb, line 196563
def flood_prevention
        @subclasses['flood-prevention'] ||= FloodPrevention.new(parent_instance: self, create_children: @create_children)
end
global_bfd() click to toggle source
# File lib/palo_alto/config.rb, line 196761
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 197862
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 196478
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 197913
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 197917
def reject_default_route=(val)
        prop_set('reject-default-route', val)
end
rfc1583() click to toggle source

rfc-1583 compatibility

# File lib/palo_alto/config.rb, line 197929
def rfc1583
        prop_get('rfc1583')
end
rfc1583=(val) click to toggle source

rfc-1583 compatibility

# File lib/palo_alto/config.rb, line 197933
def rfc1583=(val)
        prop_set('rfc1583', val)
end
router_id() click to toggle source

router id of this OSPF instance

# File lib/palo_alto/config.rb, line 197899
def router_id
        prop_get('router-id')
end
router_id=(val) click to toggle source

router id of this OSPF instance

# File lib/palo_alto/config.rb, line 197903
def router_id=(val)
        prop_set('router-id', val)
end
timers() click to toggle source
# File lib/palo_alto/config.rb, line 196607
def timers
        @subclasses['timers'] ||= Timers.new(parent_instance: self, create_children: @create_children)
end