Files
ansible/proxmox/templates/frr.conf.j2
2025-07-31 00:12:27 +03:00

31 lines
611 B
Django/Jinja

# {{ ansible_managed }}
frr version 10.2.2
frr defaults traditional
hostname {{ inventory_hostname }}
log syslog informational
no ip forwarding
service integrated-vtysh-config
!
{% for iface in ceph_mesh.interfaces %}
interface {{ iface }}
ipv6 router openfabric 1
openfabric csnp-interval 5
openfabric hello-interval 1
openfabric hello-multiplier 3
exit
!
{% endfor %}
interface lo
ipv6 router openfabric 1
openfabric csnp-interval 5
openfabric hello-interval 1
openfabric hello-multiplier 3
openfabric passive
exit
!
router openfabric 1
net {{ ceph_mesh.openfabric_net }}
lsp-gen-interval 5
exit
!