Definitions | |
---|---|
Type | object |
Description: IP address allocation to be used when wired LAN is enabled. Theta X only.
Examples:
{
"ipAddressAllocation": "dynamic"
}
{
"ipAddressAllocation": "static",
"ipAddress": "192.168.100.64",
"subnetMask": "255.255.255.0",
"defaultGateway": "192.168.100.1"
}
Property | Type | Required | Description |
---|---|---|---|
ipAddressAllocation | enum (of string) | yes | IP address allocation type |
ipAddress | string | no | IP v4 address |
subnetMask | string | no | IP v4 subnet mask |
defaultGateway | string | no | IP v4 address of the default gateway |
_proxy | object | no | Option _proxy |
Definitions | |
---|---|
Type | enum (of string) |
Default | "dynamic" |
Description: IP address allocation type
Must be one of:
Definitions | |
---|---|
Type | string |
Description: IP v4 address
Definitions | |
---|---|
Type | string |
Description: IP v4 subnet mask
Definitions | |
---|---|
Type | string |
Description: IP v4 address of the default gateway
Definitions | |
---|---|
Type | object |
Description: Proxy information to be used when wired LAN is enabled. In the case of wireless LAN, use camera._setAccessPoint command.
Examples:
{
"use": false
}
{
"use": true,
"url": "192.168.68.59",
"port": 8080,
"userid": "user-id",
"password": "user-password"
}
{
"use": true,
"url": "192.168.68.59",
"port": 8080
}
Property | Type | Required | Description |
---|---|---|---|
use | boolean | yes | Use proxy or not. If true, use proxy. |
url | string | no | Proxy server IP address or domain |
port | number | no | Proxy server port number |
userid | string | no | User ID used for proxy authentication |
password | string | no | Password used for proxy authentication. This value cannot be read. |
Definitions | |
---|---|
Type | boolean |
Description: Use proxy or not. If true, use proxy.
Definitions | |
---|---|
Type | string |
Description: Proxy server IP address or domain
Definitions | |
---|---|
Type | number |
Description: Proxy server port number
Restrictions | |
---|---|
Minimum | ≥ 1 |
Maximum | ≤ 65535 |
Definitions | |
---|---|
Type | string |
Description: User ID used for proxy authentication
Definitions | |
---|---|
Type | string |
Description: Password used for proxy authentication. This value cannot be read.