Class DhcpServerPolicy
UpdateNetworkSwitchSettingsDhcpServerPolicy
[DataContract]
public class DhcpServerPolicy
- Inheritance
-
DhcpServerPolicy
- Inherited Members
Properties
Alerts
Alerts - no documentation
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "alerts")]
public DhcpServerPolicyAlerts Alerts { get; set; }
Property Value
AllowedServers
List the MAC addresses of DHCP servers to permit on the network. Applicable only if defaultPolicy is set to block. An empty array will clear the entries.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "allowedServers")]
public List<string> AllowedServers { get; set; }
Property Value
ArpInspection
ARP Inspection - no documentation
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "arpInspection")]
public DhcpServerPolicyArpInspection ArpInspection { get; set; }
Property Value
BlockedServers
List the MAC addresses of DHCP servers to block on the network. Applicable only if defaultPolicy is set to allow. An empty array will clear the entries.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "blockedServers")]
public List<string> BlockedServers { get; set; }
Property Value
DefaultPolicy
'allow' or 'block' new DHCP servers. Default value is 'allow'.
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "defaultPolicy")]
public DefaultPolicy DefaultPolicy { get; set; }