ix-bird-config/ospf4.conf

28 lines
415 B
Plaintext
Raw Normal View History

2018-09-08 11:16:50 +00:00
protocol ospf {
2018-09-15 19:09:28 +00:00
table T_OSPF4;
2018-09-08 11:16:50 +00:00
import all;
export all;
2018-09-08 11:16:50 +00:00
area 0 {
interface "wg-ospf-*" {
};
2018-09-14 20:32:25 +00:00
2018-09-08 11:16:50 +00:00
interface "lo" {
stub;
};
};
}
filter filter_OSPF {
ospf_metric1 = 1000;
2018-09-17 18:02:46 +00:00
if is_self_net() then accept;
else reject;
};
protocol pipe {
2018-09-17 18:02:46 +00:00
table T_OSPF4;
peer table master;
import none;
export filter filter_OSPF;
}