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

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 205002
def _section
        :'ecmp'
end
algorithm() click to toggle source
# File lib/palo_alto/config.rb, line 205162
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 205196
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 205200
def enable=(val)
        prop_set('enable', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 204999
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 205204
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 205208
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 205220
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 205224
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 205212
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 205216
def symmetric_return=(val)
        prop_set('symmetric-return', val)
end