Class FiveGhzSettings
Settings related to 5Ghz band
[DataContract]
public class FiveGhzSettings
- Inheritance
-
FiveGhzSettings
- Inherited Members
Properties
ChannelWidth
Sets channel width (MHz) for 5Ghz band. Can be one of 'auto', '20', '40' or '80'. Defaults to auto.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "channelWidth")]
public string ChannelWidth { get; set; }
Property Value
MaxPower
Sets max power (dBm) of 5Ghz band. Can be integer between 8 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 5Ghz band. Can be one of '6', '9', '12', '18', '24', '36', '48' or '54'. Defaults to 12.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "minBitrate")]
public int? MinBitrate { get; set; }
Property Value
- int?
MinPower
Sets min power (dBm) of 5Ghz band. Can be integer between 8 and 30. Defaults to 8.
[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 5Ghz band. Can be one of '36', '40', '44', '48', '52', '56', '60', '64', '100', '104', '108', '112', '116', '120', '124', '128', '132', '136', '140', '144', '149', '153', '157', '161' or '165'.Defaults to [36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, 149, 153, 157, 161, 165].
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "validAutoChannels")]
public List<int?> ValidAutoChannels { get; set; }