Skip to content
Snippets Groups Projects
Commit b5b61c91 authored by shirenn's avatar shirenn 🌊
Browse files

[bird] dont persist routes

parent 24243c9a
No related branches found
No related tags found
1 merge request!276Better keepalived
...@@ -20,7 +20,7 @@ listen bgp address {{ bind }} port 179; ...@@ -20,7 +20,7 @@ listen bgp address {{ bind }} port 179;
# with other routers in the network, it performs synchronization of BIRD's # with other routers in the network, it performs synchronization of BIRD's
# routing tables with the OS kernel. # routing tables with the OS kernel.
protocol kernel { protocol kernel {
persist; # persist;
scan time 60; scan time 60;
import none; import none;
export all; export all;
......
...@@ -19,7 +19,7 @@ listen bgp address {{ bind }} port 179; ...@@ -19,7 +19,7 @@ listen bgp address {{ bind }} port 179;
# with other routers in the network, it performs synchronization of BIRD's # with other routers in the network, it performs synchronization of BIRD's
# routing tables with the OS kernel. # routing tables with the OS kernel.
protocol kernel { protocol kernel {
persist; # persist;
scan time 60; scan time 60;
import none; import none;
export all; export all;
...@@ -39,7 +39,7 @@ protocol static { ...@@ -39,7 +39,7 @@ protocol static {
} }
{%for bgp in bird.ipv6.bgps %} {%for bgp in bird.ipv6.bgps %}
protocol bgp zayo { protocol bgp {{ bgp.name }} {
local as {{ bgp.local_as }}; local as {{ bgp.local_as }};
{% if bgp.allow_local_as is defined %} {% if bgp.allow_local_as is defined %}
allow local as {{ bgp.allow_local_as }}; allow local as {{ bgp.allow_local_as }};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment