playbooks/compute/templates/sysctl.conf.j2

11 lines
284 B
Plaintext
Raw Permalink Normal View History

2025-01-02 11:58:23 -06:00
#
# This file is managed by Ansible, do not edit manually.
#
# disable IPv6 Router Advertisement for all VLANs except 206 (the mgmt vlan)
{% for vlan_id, vlan_name in vlans.items() %}
{% if not vlan_id == 206 %}
net.ipv6.conf.vmbr{{ vlan_id }}.accept_ra = 0
{% endif %}
{% endfor %}