Routed Sub-interface
The Routed Sub-interface configuration allows to define the multiple attributes that a routed sub-interface can have.
Diagram
Section titled “Diagram”Classes
Section titled “Classes”topology_switch_routed_sub_interface (vxlan.topology.switches.interfaces)
Section titled “topology_switch_routed_sub_interface (vxlan.topology.switches.interfaces)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Regex: (?i)^(?:e|eth(?:ernet)?)\d(?:\/\d{1,3})\.\d{1,4}$|^(?:po|port-channel:?)((?:[1-9]|[1-9]\d{1,2}|[1-3]\d{3}|40[0-8]\d|409[0-6]:?)\.(?:[1-9]|[1-9]\d{1,2}|[1-3]\d{3}|40[0-8]\d|409[0-3]:?))$ | Yes | |
| mode | Choice | routed_sub | Yes | |
| description | String | max: 256 | No | NetAsCode Routed Sub Interface |
| dot1q_id | Integer | min: 1, max: 4096 | Yes | |
| vrf | String | No | ||
| mtu | Integer | min: 1500, max: 9216 | No | 9216 |
| speed | String | Regex: (?i)^(auto|100mb|1gb|10gb|25gb|40gb|100gb|200gb|400gb|800gb)$ | No | auto |
| enabled | Boolean | true, false | No | true |
| ipv4_address | IP | Yes | ||
| ipv4_route_tag | Integer | min: 0, max: 4294967295 | No | |
| secondary_ipv4_addresses | List | [secondary_ipv4_addresses] | No | |
| ipv6_address | IP | No | ||
| ipv6_route_tag | Integer | min: 0, max: 4294967295 | No | |
| secondary_ipv6_addresses | List | [secondary_ipv6_addresses] | No | |
| freeform_config | String | No |
secondary_ipv4_addresses (vxlan.topology.switches.interfaces.topology_switch_routed_sub_interface)
Section titled “secondary_ipv4_addresses (vxlan.topology.switches.interfaces.topology_switch_routed_sub_interface)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| ip_address | IP | Yes | ||
| route_tag | Integer | min: 0, max: 4294967295 | No |
secondary_ipv6_addresses (vxlan.topology.switches.interfaces.topology_switch_routed_sub_interface)
Section titled “secondary_ipv6_addresses (vxlan.topology.switches.interfaces.topology_switch_routed_sub_interface)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| ip_address | IP | Yes | ||
| route_tag | Integer | min: 0, max: 4294967295 | No |
Example
Section titled “Example”This configuration creates Ethernet 1/47.2 on dc1-leaf1. This interface is member of the VRF red, with the IPv4 address 10.1.1.1/30 and the IPV6 address 2021:10:1:1::1/64, MTU set as 1500 and a Dot1q VLAN encapsulation 2.
vxlan: topology: switches: - name: dc1-leaf1 interfaces: - name: e1/47.2 mode: routed_sub description: 'Routed Sub-Interface 1' enabled: true dot1q_id: 2 vrf: red mtu: 1500 ipv4_address: 10.1.1.1/30 ipv6_address: 2021:10:1:1::1/64