ix-bird-config/ospf6.conf

29 lines
416 B
Plaintext
Raw Normal View History

2018-09-15 18:52:01 +00:00
protocol ospf {
table T_OSPF6;
import all;
export all;
area 0 {
interface "wg-ospf-*" {
};
interface "lo" {
stub;
};
};
}
filter filter_OSPF6 {
ospf_metric1 = 1000;
2018-09-17 18:02:46 +00:00
if is_self_net() then accept;
2018-09-15 18:52:01 +00:00
else reject;
};
protocol pipe {
2018-09-17 18:02:46 +00:00
table T_OSPF6;
peer table master;
import none;
2018-09-15 18:52:01 +00:00
export filter filter_OSPF6;
}