class PaloAlto::XML::Config::Devices::Entry::LogCollector::Entry::Deviceconfig::System::Eth2

Public Instance Methods

_section() click to toggle source
# File lib/palo_alto/config.rb, line 345855
def _section
        :'eth2'
end
default_gateway() click to toggle source

Default gateway

# File lib/palo_alto/config.rb, line 346081
def default_gateway
        prop_get('default-gateway')
end
default_gateway=(val) click to toggle source

Default gateway

# File lib/palo_alto/config.rb, line 346085
def default_gateway=(val)
        prop_set('default-gateway', val)
end
has_multiple_values?() click to toggle source
# File lib/palo_alto/config.rb, line 345852
def has_multiple_values?
        false
end
ip_address() click to toggle source

IP address for the interface

# File lib/palo_alto/config.rb, line 346065
def ip_address
        prop_get('ip-address')
end
ip_address=(val) click to toggle source

IP address for the interface

# File lib/palo_alto/config.rb, line 346069
def ip_address=(val)
        prop_set('ip-address', val)
end
ipv6_address() click to toggle source

IPv6 address for the interface

# File lib/palo_alto/config.rb, line 346097
def ipv6_address
        prop_get('ipv6-address')
end
ipv6_address=(val) click to toggle source

IPv6 address for the interface

# File lib/palo_alto/config.rb, line 346101
def ipv6_address=(val)
        prop_set('ipv6-address', val)
end
ipv6_default_gateway() click to toggle source

IPv6 Default gateway

# File lib/palo_alto/config.rb, line 346105
def ipv6_default_gateway
        prop_get('ipv6-default-gateway')
end
ipv6_default_gateway=(val) click to toggle source

IPv6 Default gateway

# File lib/palo_alto/config.rb, line 346109
def ipv6_default_gateway=(val)
        prop_set('ipv6-default-gateway', val)
end
mtu() click to toggle source

Maximum Transmission Unit for the interface

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

Maximum Transmission Unit for the interface

# File lib/palo_alto/config.rb, line 346117
def mtu=(val)
        prop_set('mtu', val)
end
netmask() click to toggle source

IP netmask for the interface

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

IP netmask for the interface

# File lib/palo_alto/config.rb, line 346077
def netmask=(val)
        prop_set('netmask', val)
end
permitted_ip() click to toggle source
# File lib/palo_alto/config.rb, line 345986
def permitted_ip
        if @create_children
                @subclasses['permitted-ip'] ||= PermittedIp.new(parent_instance: self, create_children: @create_children)
        else
                PermittedIp.new(parent_instance: self)
        end
end
public_ip_address() click to toggle source

Public IP address for the interface

# File lib/palo_alto/config.rb, line 346089
def public_ip_address
        prop_get('public-ip-address')
end
public_ip_address=(val) click to toggle source

Public IP address for the interface

# File lib/palo_alto/config.rb, line 346093
def public_ip_address=(val)
        prop_set('public-ip-address', val)
end
service() click to toggle source
# File lib/palo_alto/config.rb, line 345951
def service
        @subclasses['service'] ||= Service.new(parent_instance: self, create_children: @create_children)
end
speed_duplex() click to toggle source

Speed and duplex for the interface

# File lib/palo_alto/config.rb, line 346057
def speed_duplex
        prop_get('speed-duplex')
end
speed_duplex=(val) click to toggle source

Speed and duplex for the interface

# File lib/palo_alto/config.rb, line 346061
def speed_duplex=(val)
        prop_set('speed-duplex', val)
end
type() click to toggle source
# File lib/palo_alto/config.rb, line 345891
def type
        @subclasses['type'] ||= Type.new(parent_instance: self, create_children: @create_children)
end