add bfd
parent
04edb208ee
commit
1009d5a943
|
@ -14,10 +14,12 @@ trigger:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: test
|
- name: test
|
||||||
|
privileged: true
|
||||||
image: alpine:latest
|
image: alpine:latest
|
||||||
commands:
|
commands:
|
||||||
- sed -i '1i\include "./config-example.conf";' bird.conf
|
- sed -i '1i\include "./config-example.conf";' bird.conf
|
||||||
- apk add bird
|
- apk add bird iproute2
|
||||||
|
- ip link add tunnel-dum0 type dummy
|
||||||
- bird -p -c ./bird.conf
|
- bird -p -c ./bird.conf
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
# Yes, It's just a blank file.
|
# Yes, It's just a blank file.
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
protocol bfd net186_bfd {
|
||||||
|
interface "tunnel-*" {
|
||||||
|
interval 200 ms;
|
||||||
|
};
|
||||||
|
}
|
|
@ -3,6 +3,8 @@ template bgp net186 {
|
||||||
|
|
||||||
interpret communities off;
|
interpret communities off;
|
||||||
|
|
||||||
|
bfd on;
|
||||||
|
|
||||||
ipv6 {
|
ipv6 {
|
||||||
next hop self;
|
next hop self;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue