class PaloAlto::XML::Config::Devices::Entry::TemplateStack::Entry::Config::Devices::Entry::Network::VirtualRouter::Entry::Ecmp

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 311586
def _section
        :'ecmp'
end
algorithm() click to toggle source
# File lib/palo_alto/config.rb, line 311746
def algorithm
        @subclasses['algorithm'] ||= Algorithm.new(parent_instance: self, create_children: @create_children)
end
enable() click to toggle source

enable Equal Cost Multipath routing, change this configuration will result in a virtual router restart

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

enable Equal Cost Multipath routing, change this configuration will result in a virtual router restart

# File lib/palo_alto/config.rb, line 311784
def enable=(val)
        prop_set('enable', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 311583
def has_multiple_values?
        false
end
max_path() click to toggle source

Maxmum number of ECMP paths supported, change this configuration will result in a virtual router restart

# File lib/palo_alto/config.rb, line 311788
def max_path
        prop_get('max-path')
end
max_path=(val) click to toggle source

Maxmum number of ECMP paths supported, change this configuration will result in a virtual router restart

# File lib/palo_alto/config.rb, line 311792
def max_path=(val)
        prop_set('max-path', val)
end
strict_source_path() click to toggle source

force VPN traffic to exit interface that the source-ip belongs to

# File lib/palo_alto/config.rb, line 311804
def strict_source_path
        prop_get('strict-source-path')
end
strict_source_path=(val) click to toggle source

force VPN traffic to exit interface that the source-ip belongs to

# File lib/palo_alto/config.rb, line 311808
def strict_source_path=(val)
        prop_set('strict-source-path', val)
end
symmetric_return() click to toggle source

allows return packets to egress out of the ingress interface of the flow

# File lib/palo_alto/config.rb, line 311796
def symmetric_return
        prop_get('symmetric-return')
end
symmetric_return=(val) click to toggle source

allows return packets to egress out of the ingress interface of the flow

# File lib/palo_alto/config.rb, line 311800
def symmetric_return=(val)
        prop_set('symmetric-return', val)
end