summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-01-27 20:38:25 +0100
committerChristian Poessinger <christian@poessinger.com>2021-01-29 10:36:21 +0100
commitca75e23fee7e4c9f809e5cabf158e9aa749c997d (patch)
tree2ab43e75c00e40e0da08166d438df16443498af3 /data/templates
parent8979c546bd343c9d68f42bf1215cb1721a7c3206 (diff)
downloadvyos-1x-ca75e23fee7e4c9f809e5cabf158e9aa749c997d.tar.gz
vyos-1x-ca75e23fee7e4c9f809e5cabf158e9aa749c997d.zip
rpki: T3255: provide full protocol support in XML and Python
This commit provides the implementation of the OSPF CLI with a Jinja2 template that is loaded by FRR reload.
Diffstat (limited to 'data/templates')
-rw-r--r--data/templates/frr/rpki.frr.tmpl16
1 files changed, 16 insertions, 0 deletions
diff --git a/data/templates/frr/rpki.frr.tmpl b/data/templates/frr/rpki.frr.tmpl
new file mode 100644
index 000000000..bf72c7a9e
--- /dev/null
+++ b/data/templates/frr/rpki.frr.tmpl
@@ -0,0 +1,16 @@
+!
+rpki
+{% if cache is defined and cache is not none %}
+{% for peer, peer_config in cache.items() %}
+{# port is mandatory and preference uses a default value #}
+{% if peer_config.ssh is defined and peer_config.ssh.username is defined and peer_config.ssh.username is not none %}
+ rpki cache {{ peer }} {{ peer_config.port }} {{ peer_config.ssh.username }} {{ peer_config.ssh.private_key_file }} {{ peer_config.ssh.public_key_file }} {{ peer_config.ssh.known_hosts_file }} preference {{ peer_config.preference }}
+{% else %}
+ rpki cache {{ peer }} {{ peer_config.port }} preference {{ peer_config.preference }}
+{% endif %}
+{% endfor %}
+{% endif %}
+{% if polling_period is defined and polling_period is not none %}
+ rpki polling_period {{ polling_period }}
+{% endif %}
+!