29 lines
416 B
Plaintext
29 lines
416 B
Plaintext
protocol ospf {
|
|
table T_OSPF6;
|
|
import all;
|
|
export all;
|
|
|
|
area 0 {
|
|
interface "wg-ospf-*" {
|
|
};
|
|
|
|
interface "lo" {
|
|
stub;
|
|
};
|
|
};
|
|
}
|
|
|
|
|
|
filter filter_OSPF6 {
|
|
ospf_metric1 = 1000;
|
|
if is_self_net() then accept;
|
|
else reject;
|
|
};
|
|
|
|
protocol pipe {
|
|
table T_OSPF6;
|
|
peer table master;
|
|
import none;
|
|
export filter filter_OSPF6;
|
|
}
|