# # 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 %}