blob: 8f2ae646692f0156744b6de767d7cbd623a4268c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
!
{% for name, router_config in domain.items() %}
{% if router_config.interface is vyos_defined %}
{% for iface, iface_config in router_config.interface.items() %}
interface {{ iface }}
{% if iface_config.address_family.ipv4 is vyos_defined %}
ip router openfabric {{ name }}
{% endif %}
{% if iface_config.address_family.ipv6 is vyos_defined %}
ipv6 router openfabric {{ name }}
{% endif %}
{% if iface_config.csnp_interval is vyos_defined %}
openfabric csnp-interval {{ iface_config.csnp_interval }}
{% endif %}
{% if iface_config.hello_interval is vyos_defined %}
openfabric hello-interval {{ iface_config.hello_interval }}
{% endif %}
{% if iface_config.hello_multiplier is vyos_defined %}
openfabric hello-multiplier {{ iface_config.hello_multiplier }}
{% endif %}
{% if iface_config.metric is vyos_defined %}
openfabric metric {{ iface_config.metric }}
{% endif %}
{% if iface_config.passive is vyos_defined or iface == 'lo' %}
openfabric passive
{% endif %}
{% if iface_config.password.md5 is vyos_defined %}
openfabric password md5 {{ iface_config.password.md5 }}
{% elif iface_config.password.plaintext_password is vyos_defined %}
openfabric password clear {{ iface_config.password.plaintext_password }}
{% endif %}
{% if iface_config.psnp_interval is vyos_defined %}
openfabric psnp-interval {{ iface_config.psnp_interval }}
{% endif %}
exit
!
{% endfor %}
{% endif %}
router openfabric {{ name }}
net {{ net }}
{% if router_config.domain_password.md5 is vyos_defined %}
domain-password md5 {{ router_config.domain_password.plaintext_password }}
{% elif router_config.domain_password.plaintext_password is vyos_defined %}
domain-password clear {{ router_config.domain_password.plaintext_password }}
{% endif %}
{% if router_config.log_adjacency_changes is vyos_defined %}
log-adjacency-changes
{% endif %}
{% if router_config.set_overload_bit is vyos_defined %}
set-overload-bit
{% endif %}
{% if router_config.purge_originator is vyos_defined %}
purge-originator
{% endif %}
{% if router_config.fabric_tier is vyos_defined %}
fabric-tier {{ router_config.fabric_tier }}
{% endif %}
{% if router_config.lsp_gen_interval is vyos_defined %}
lsp-gen-interval {{ router_config.lsp_gen_interval }}
{% endif %}
{% if router_config.lsp_refresh_interval is vyos_defined %}
lsp-refresh-interval {{ router_config.lsp_refresh_interval }}
{% endif %}
{% if router_config.max_lsp_lifetime is vyos_defined %}
max-lsp-lifetime {{ router_config.max_lsp_lifetime }}
{% endif %}
{% if router_config.spf_interval is vyos_defined %}
spf-interval {{ router_config.spf_interval }}
{% endif %}
exit
!
{% endfor %}
|