EthernetConfig

data class EthernetConfig(val usingDhcp: Boolean, val ipAddress: String? = null, val subnetMask: String? = null, val defaultGateway: String? = null, var dns1: String? = null, var dns2: String? = null, val proxy: ThetaRepository.Proxy? = null)

IP address allocation to be used when wired LAN is enabled.

For

  • RICOH THETA X firmware v2.40.0 or later

Constructors

Link copied to clipboard
constructor(usingDhcp: Boolean, ipAddress: String? = null, subnetMask: String? = null, defaultGateway: String? = null, dns1: String? = null, dns2: String? = null, proxy: ThetaRepository.Proxy? = null)

Properties

Link copied to clipboard
val defaultGateway: String? = null

(optional) IPv4 for default gateway Do not specify this property when usingDhcp is true.

Link copied to clipboard
var dns1: String?

(optional) IPv4 for Primary DNS server Do not specify this property when usingDhcp is true.

Link copied to clipboard
var dns2: String?

(optional) IPv4 for Secondary DNS server Do not specify this property when usingDhcp is true.

Link copied to clipboard
val ipAddress: String? = null

(optional) IPv4 for IP address Do not specify this property when usingDhcp is true.

Link copied to clipboard

(optional) refer to _proxy for detail

Link copied to clipboard
val subnetMask: String? = null

(optional) IPv4 for subnet mask Do not specify this property when usingDhcp is true.

Link copied to clipboard

Using DHCP or not