-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat(eos_designs): Added support for multicast ipv4 static on p2p uplinks ethernet #4909
base: devel
Are you sure you want to change the base?
Conversation
Review docs on Read the Docs To test this pull request: # Create virtual environment for this testing below the current directory
python -m venv test-avd-pr-4909
# Activate the virtual environment
source test-avd-pr-4909/bin/activate
# Install all requirements including PyAVD
pip install "pyavd[ansible] @ git+https://github.com/MaheshGSLAB/ansible-avd.git@issue-4228#subdirectory=python-avd" --force
# Point Ansible collections path to the Python virtual environment
export ANSIBLE_COLLECTIONS_PATH=$VIRTUAL_ENV/ansible_collections
# Install Ansible collection
ansible-galaxy collection install git+https://github.com/MaheshGSLAB/ansible-avd.git#/ansible_collections/arista/avd/,issue-4228 --force
# Optional: Install AVD examples
cd test-avd-pr-4909
ansible-playbook arista.avd.install_examples |
@@ -156,6 +156,10 @@ $defs: | |||
type: bool | |||
description: Enable PIM sparse mode. Requires `include_in_underlay_protocol` and the global `underlay_multicast` to be `true`. | |||
default: false | |||
underlay_multicast_ipv4_static: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should let this be a global knob, and then pick it up on all interfaces we classify as "underlay", so uplinks, mlag peer links and l3_edge/core_interfaces where include_in_underlay_protocol
has been set.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sarunac @carlbuchmann please comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ClausHolbechArista Maybe fine. It does simplify applying multicast static config on systems dedicated for static multicast.
But in systems that uses both static multicast and pim sparse mode, there should be a way to not apply the multicast static on links dedicated to pim sparse mode as well.
Change Summary
Added support for multicast ipv4 static on p2p uplinks ethernet
Related Issue(s)
Fixes #4228
Component(s) name
arista.avd.eos_designs
Proposed changes
Added support for multicast ipv4 static on p2p uplinks ethernet interfaces.
How to test
Run Molecule
Checklist
User Checklist
Repository Checklist