Skip to content

Commit 72aed3c

Browse files
Fix(eos_cli_config_gen): Fix typo in router multicast template (#6631)
1 parent 642cb3c commit 72aed3c

4 files changed

Lines changed: 30 additions & 1 deletion

File tree

ansible_collections/arista/avd/extensions/molecule/eos_cli_config_gen/documentation/devices/host5.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
- [Management Interfaces](#management-interfaces)
77
- [Monitoring](#monitoring)
88
- [TerminAttr Daemon](#terminattr-daemon)
9+
- [Multicast](#multicast)
10+
- [Router Multicast](#router-multicast)
911

1012
## Management
1113

@@ -53,3 +55,21 @@ daemon TerminAttr
5355
exec /usr/bin/TerminAttr -cvaddr=192.0.2.1:9910,192.0.2.2:9910,192.0.2.3:9910 -cvauth=token,/tmp/token -cvvrf=mgt -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs
5456
no shutdown
5557
```
58+
59+
## Multicast
60+
61+
### Router Multicast
62+
63+
#### IP Router Multicast Summary
64+
65+
- IPv6 software forwarding is handled by the Linux kernel.
66+
67+
#### Router Multicast Device Configuration
68+
69+
```eos
70+
!
71+
router multicast
72+
!
73+
ipv6
74+
software-forwarding kernel
75+
```

ansible_collections/arista/avd/extensions/molecule/eos_cli_config_gen/intended/configs/host5.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@ interface Management1
77
description OOB_MANAGEMENT
88
vrf MGMT
99
ip address 10.73.255.122/24
10+
!
11+
router multicast
12+
!
13+
ipv6
14+
software-forwarding kernel
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
router_multicast:
3+
ipv6:
4+
software_forwarding: kernel

python-avd/pyavd/_eos_cli_config_gen/j2templates/eos/router-multicast.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ router multicast
4545
routing
4646
{% endif %}
4747
{% if router_multicast.ipv6.software_forwarding is arista.avd.defined %}
48-
software-forwarding {{ router_multicast.ipv4.software_forwarding }}
48+
software-forwarding {{ router_multicast.ipv6.software_forwarding }}
4949
{% endif %}
5050
{% endif %}
5151
{% for vrf in router_multicast.vrfs | arista.avd.natural_sort('name', ignore_case=false) %}

0 commit comments

Comments
 (0)