Class RoutingInterfaceIpv6
ipv6 Settings
[DataContract]
public class RoutingInterfaceIpv6
- Inheritance
-
RoutingInterfaceIpv6
- Inherited Members
Constructors
RoutingInterfaceIpv6()
public RoutingInterfaceIpv6()
Properties
Address
The IPv6 address of the interface. Required if assignmentMode is included and set as 'static'. Must not be included if assignmentMode is 'eui-64'.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "address")]
public string? Address { get; set; }
Property Value
AssignmentMode
The IPv6 assignment mode for the interface. Can be either 'eui-64' or 'static'.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "assignmentMode")]
public AssignmentMode? AssignmentMode { get; set; }
Property Value
Gateway
The IPv6 default gateway of the interface. Required if prefix is defined and this is the first interface with IPv6 configured for the switch.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "gateway")]
public string? Gateway { get; set; }
Property Value
Prefix
The IPv6 default gateway of the interface. Required if prefix is defined and this is the first interface with IPv6 configured for the switch.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "prefix")]
public string? Prefix { get; set; }