Class TwoPointFourGhzSettings
Settings related to 2.4Ghz band
[DataContract]
public class TwoPointFourGhzSettings
- Inheritance
-
TwoPointFourGhzSettings
- Inherited Members
Properties
AxEnabled
Determines whether ax radio on 2.4Ghz band is on or off. Can be either true or false. If false, we highly recommend disabling band steering. Defaults to true.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "axEnabled")]
public bool? AxEnabled { get; set; }
Property Value
- bool?
MaxPower
Sets max power (dBm) of 2.4Ghz band. Can be integer between 5 and 30. Defaults to 30.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "maxPower")]
public int? MaxPower { get; set; }
Property Value
- int?
MinBitrate
Sets min bitrate (Mbps) of 2.4Ghz band. Can be one of '1', '2', '5.5', '6', '9', '11', '12', '18', '24', '36', '48' or '54'. Defaults to 11.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "minBitrate")]
public double? MinBitrate { get; set; }
Property Value
MinPower
Sets min power (dBm) of 2.4Ghz band. Can be integer between 5 and 30. Defaults to 5.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "minPower")]
public int? MinPower { get; set; }
Property Value
- int?
Rxsop
The RX-SOP level controls the sensitivity of the radio. It is strongly recommended to use RX-SOP only after consulting a wireless expert. RX-SOP can be configured in the range of -65 to -95 (dBm). A value of null will reset this to the default.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "rxsop")]
public int? Rxsop { get; set; }
Property Value
- int?
ValidAutoChannels
Sets valid auto channels for 2.4Ghz band. Can be one of '1', '6' or '11'. Defaults to [1, 6, 11].
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "validAutoChannels")]
public List<int?> ValidAutoChannels { get; set; }