Skip to content

Commit

Permalink
Fixing inputs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laxmikant Chintakindi authored and Laxmikant Chintakindi committed Sep 18, 2024
1 parent 45fd83b commit c44bf4b
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management1 | oob_management | oob | MGMT | 10.73.255.122/24 | 10.73.255.2 |
| Management1 | OOB_MANAGEMENT | oob | MGMT | 10.73.255.122/24 | 10.73.255.2 |

##### IPv6

| Management Interface | Description | Type | VRF | IPv6 Address | IPv6 Gateway |
| -------------------- | ----------- | ---- | --- | ------------ | ------------ |
| Management1 | oob_management | oob | MGMT | - | - |
| Management1 | OOB_MANAGEMENT | oob | MGMT | - | - |

#### Management Interfaces Device Configuration

```eos
!
interface Management1
description oob_management
description OOB_MANAGEMENT
vrf MGMT
ip address 10.73.255.122/24
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
!
interface Management1
description oob_management
description OOB_MANAGEMENT
vrf MGMT
ip address 10.73.255.122/24
!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ router_bgp:
include_community_list: true
next_hop_unchanged: true
next_hop_resolution_ribs:
- rib_type: "tunnel-rib colored"
- rib_type: "tunnel-rib-colored"
- rib_type: "tunnel-rib"
rib_name: "test-rib"
- rib_type: "system-connected"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ router bgp {{ router_bgp.as }}
{% if router_bgp.address_family_ipv4_labeled_unicast.next_hop_resolution_ribs is arista.avd.defined %}
{% set v4_bgp_lu_resolution_ribs = [] %}
{% for rib in router_bgp.address_family_ipv4_labeled_unicast.next_hop_resolution_ribs %}
{% if rib.rib_type is arista.avd.defined("tunnel-rib colored") %}
{% if rib.rib_type is arista.avd.defined("tunnel-rib-colored") %}
{% do v4_bgp_lu_resolution_ribs.append("tunnel-rib colored system-colored-tunnel-rib") %}
{% elif rib.rib_type is arista.avd.defined("tunnel-rib") and rib.rib_name is arista.avd.defined() %}
{% do v4_bgp_lu_resolution_ribs.append("tunnel-rib " ~ rib.rib_name) %}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1788,7 +1788,7 @@ keys:
required: true
valid_values:
- "system-connected"
- "tunnel-rib colored"
- "tunnel-rib-colored"
- "tunnel-rib"
description: "Type of RIB. For 'tunnel-rib', use 'rib_name' to specify the name of the Tunnel-RIB to use."
rib_name:
Expand Down

0 comments on commit c44bf4b

Please sign in to comment.