Allow own routes learned from BGP to propagate over OSPF
This commit is contained in:
parent
7417122883
commit
d98f416233
|
@ -99,7 +99,7 @@ filter kernel_export {
|
||||||
}
|
}
|
||||||
|
|
||||||
filter ospf_export {
|
filter ospf_export {
|
||||||
if source !~ [ RTS_DEVICE ] then reject;
|
if source !~ [ RTS_DEVICE, RTS_BGP ] then reject;
|
||||||
if is_own_route() then accept;
|
if is_own_route() then accept;
|
||||||
reject;
|
reject;
|
||||||
}
|
}
|
||||||
|
@ -232,6 +232,7 @@ template bgp peer_vultr_v4 {
|
||||||
|
|
||||||
template bgp peer_hessnet {
|
template bgp peer_hessnet {
|
||||||
local as my_asn;
|
local as my_asn;
|
||||||
|
multihop 2;
|
||||||
ipv6 {
|
ipv6 {
|
||||||
#next hop self;
|
#next hop self;
|
||||||
import none;
|
import none;
|
||||||
|
|
Loading…
Reference in a new issue