Sha256: 3916b06bcf6ee788145826978c37ebd5c342e31a9e20b86af254089b840b9f12
Contents?: true
Size: 786 Bytes
Versions: 3
Compression:
Stored size: 786 Bytes
Contents
module F5 module Icontrol module LocalLB module VirtualServer # https://devcentral.f5.com/wiki/iControl.LocalLB__VirtualServer__SourceAddressTranslationType.ashx # A list of source address translation types. module SourceAddressTranslationType # Translation type unknown (or unsupported by iControl). SRC_TRANS_UNKNOWN = 0 # No translation is being used. SRC_TRANS_NONE = 1 # The translation uses self IP addresses. SRC_TRANS_AUTOMAP = 2 # The translation uses a SNAT pool of translation addresses. SRC_TRANS_SNATPOOL = 3 # The translation uses an LSN pool of translation addresses. SRC_TRANS_LSNPOOL = 4 end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems