- #
- # This file is managed by ansible. Do not edit by hand!
- #
- {% for host in hostvars %}
- {% if hostvars[host]['ansible_fqdn'] != ansible_fqdn %}
- protocol bgp {{hostvars[host]['ansible_hostname']}} from ibgp {
- source address {{mesh_ipv4|ipaddr('address')}};
- neighbor {{hostvars[host]['mesh_ipv4']}} as {{supernode_as}};
- default bgp_med 4;
- };
- {% endif %}
- {% endfor %}
|