breakout tmpl from configgen; stage variations/platform feat

This commit is contained in:
2026-02-17 03:00:17 -07:00
parent bd91fe5b15
commit a813c4cb53
13 changed files with 102 additions and 30 deletions

View File

@@ -0,0 +1,29 @@
policy-options {
policy-statement EXPORT-POLICY {
term ADVERTISE {
from protocol bgp;
then {
community add LOCAL-REGION;
accept;
}
}
}
policy-statement IMPORT-POLICY {
term ACCEPT-ALL {
then accept;
}
}
policy-statement SHIFTED {
term DEPRIORITIZE {
from {
protocol bgp;
}
then {
community add SHIFTED-OUT;
next policy;
}
}
}
community LOCAL-REGION members 64500:200;
community SHIFTED-OUT members [ 64500:200 64500:200 64500:200 ];
}