Skip to content

Commit

Permalink
adjust based on comments from gmuloc
Browse files Browse the repository at this point in the history
  • Loading branch information
bjmeuer authored and ClausHolbechArista committed Aug 6, 2024
1 parent b6f486a commit 74299ea
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ vlan 300
vlan 400
name VARPv6_not_configured_2
!
vlan 500
name VARPv6_not_configured_3
!
vrf instance MGMT
!
vrf instance VRF1
Expand All @@ -41,7 +44,7 @@ interface Vlan100
description VARPv6_configured_1
no shutdown
vrf VRF1
ipv6 address 2000:1000::2/64
ipv6 address 2001:db8::2/64
ipv6 virtual-router address fe80::1
!
interface Vlan200
Expand All @@ -61,6 +64,12 @@ interface Vlan400
no shutdown
vrf VRF1
!
interface Vlan500
description VARPv6_not_configured_3
no shutdown
vrf VRF1
ipv6 address virtual 2001:db8::1/64
!
interface Vxlan1
description varpv6_VTEP
vxlan source-interface Loopback1
Expand All @@ -69,6 +78,7 @@ interface Vxlan1
vxlan vlan 200 vni 10200
vxlan vlan 300 vni 10300
vxlan vlan 400 vni 10400
vxlan vlan 500 vni 10500
vxlan vrf VRF1 vni 1
!
ip virtual-router mac-address 00:dc:00:00:00:0a
Expand Down Expand Up @@ -124,6 +134,11 @@ router bgp 101
route-target both 10400:10400
redistribute learned
!
vlan 500
rd 192.168.255.101:10500
route-target both 10500:10500
redistribute learned
!
address-family evpn
neighbor EVPN-OVERLAY-PEERS activate
!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,14 @@ router_bgp:
- 10400:10400
redistribute_routes:
- learned
- id: 500
tenant: TENANT1
rd: 192.168.255.101:10500
route_targets:
both:
- 10500:10500
redistribute_routes:
- learned
service_routing_protocols_model: multi-agent
ip_routing: true
vlan_internal_order:
Expand Down Expand Up @@ -143,6 +151,9 @@ vlans:
- id: 400
name: VARPv6_not_configured_2
tenant: TENANT1
- id: 500
name: VARPv6_not_configured_3
tenant: TENANT1
ip_igmp_snooping:
globally_enabled: true
ip_virtual_router_mac_address: 00:dc:00:00:00:0a
Expand All @@ -151,7 +162,7 @@ vlan_interfaces:
tenant: TENANT1
description: VARPv6_configured_1
shutdown: false
ipv6_address: 2000:1000::2/64
ipv6_address: 2001:db8::2/64
ipv6_virtual_router_addresses:
- fe80::1
vrf: VRF1
Expand All @@ -174,6 +185,14 @@ vlan_interfaces:
shutdown: false
ipv6_enable: false
vrf: VRF1
- name: Vlan500
tenant: TENANT1
description: VARPv6_not_configured_3
shutdown: false
ipv6_enable: false
ipv6_address_virtuals:
- 2001:db8::1/64
vrf: VRF1
vxlan_interface:
Vxlan1:
description: varpv6_VTEP
Expand All @@ -189,6 +208,8 @@ vxlan_interface:
vni: 10300
- id: 400
vni: 10400
- id: 500
vni: 10500
vrfs:
- name: VRF1
vni: 1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ tenants:
- fe80::1
nodes:
- node: varpv6
ipv6_address: 2000:1000::2/64
ipv6_address: 2001:db8::2/64
# VARPv6 is not configured if ipv6_address and ipv6_enable missing
- id: 200
enabled: true
Expand All @@ -48,3 +48,12 @@ tenants:
ipv6_enable: false
ipv6_virtual_router_addresses:
- fe80::1
# VARPv6 is not configured if ipv6_enable is set to false, but ipv6 address virtual is configured in this case
- id: 500
enabled: true
name: VARPv6_not_configured_3
ipv6_enable: false
ipv6_virtual_router_addresses:
- fe80::1
ipv6_address_virtuals:
- 2001:db8::1/64

0 comments on commit 74299ea

Please sign in to comment.