forked from ipspace/netlab-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SR Linux LocPref template to the BGP routing leaks lab (ipspace#20)
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
updates: | ||
|
||
{% for af in ['ipv4','ipv6'] %} | ||
{% for n in bgp.neighbors if n[af] is defined %} | ||
|
||
- path: network-instance[name=default]/protocols/bgp/group[group-name={{n.role|default('')}}] | ||
val: | ||
local-preference: {{ 200 if n.role=='customer' else 150 if n.role=='peer' else 100 }} | ||
_annotate_local-preference: "due to neighbor role '{{ n.role }}'" | ||
|
||
- path: network-instance[name=default]/protocols/bgp/neighbor[peer-address={{n[af]}}] | ||
val: | ||
peer-group: {{ n.role }} | ||
|
||
{% endfor %} | ||
{% endfor %} |