12345678910111213141516171819202122 |
- #
- # This file is managed by ansible. Do not edit by hand!
- #
- template bgp uplink {
- local as {{as}};
- import all;
- export all;
- next hop self;
- multihop 64;
- };
- {% if peers is defined %}
- {% for peer in peers %}
- protocol bgp {{peer.name}} from uplink {
- source address {{peer.source_ip4}};
- neighbor {{peer.peer_ip4}} as {{peer.as}};
- default bgp_med 2;
- };
- {% endfor %}
- {% endif %}
|