Class RoutingInterface
Routing interface
[DataContract]
public class RoutingInterface : NamedItem
- Inheritance
-
RoutingInterface
- Inherited Members
Properties
DefaultGateway
The next hop for any traffic that isn't going to a directly connected subnet or over a static route. This IP address must exist in a subnet with a routed interface.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "defaultGateway")]
public string? DefaultGateway { get; set; }
Property Value
InterfaceId
Interface Id
[DataMember(Name = "interfaceId")]
public string InterfaceId { get; set; }
Property Value
InterfaceIp
The IP address this switch will use for layer 3 routing on this VLAN or subnet. This cannot be the same as the switch's management IP.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "interfaceIp")]
public string? InterfaceIp { get; set; }
Property Value
Ipv6
The IPv6 settings of the interface
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "ipv6")]
public RoutingInterfaceIpv6? Ipv6 { get; set; }
Property Value
MulticastRouting
Enable multicast support if, multicast routing between VLANs is required. Options are, 'disabled', 'enabled' or 'IGMP snooping querier'.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "multicastRouting")]
public MulticastRouting? MulticastRouting { get; set; }
Property Value
OspfSettings
The OSPF routing settings of the interface.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "ospfSettings")]
public OspfSettings? OspfSettings { get; set; }
Property Value
OspfV3
The OSPFv3 routing settings of the interface.
[Obsolete("Removed in API v1.46")]
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "ospfV3")]
public OspfSettings? OspfV3 { get; set; }
Property Value
Subnet
The network that this routed interface is on, in CIDR notation (ex. 10.1.1.0/24).
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "subnet")]
public string? Subnet { get; set; }
Property Value
UplinkV4
Whether this is the switch's IPv4 uplink
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "uplinkV4")]
public bool UplinkV4 { get; set; }
Property Value
UplinkV6
Whether this is the switch's IPv6 uplink
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "uplinkV6")]
public bool UplinkV6 { get; set; }
Property Value
VlanId
The VLAN this routed interface is on. VLAN must be between 1 and 4094.
[ApiAccess(ApiAccess.ReadWrite)]
[DataMember(Name = "vlanId")]
public int VlanId { get; set; }