bird6.conf.j2 343 B

123456789101112
  1. #
  2. # This file is managed by ansible. Do not edit by hand!
  3. #
  4. {% for host in groups['all'] %}
  5. {% if hostvars[host]['inventory_hostname'] != inventory_hostname %}
  6. protocol bgp {{hostvars[host]['inventory_hostname_short']}} from ibgp {
  7. neighbor {{hostvars[host].mesh_ipv6}} as {{as}};
  8. default bgp_med 4;
  9. }
  10. {% endif %}
  11. {% endfor %}