38 lines
538 B
Plaintext
38 lines
538 B
Plaintext
|
protocol ospf {
|
||
|
table T_OSPF6;
|
||
|
import all;
|
||
|
export all;
|
||
|
|
||
|
area 0 {
|
||
|
interface "wg-ospf-*" {
|
||
|
};
|
||
|
|
||
|
interface "wg-uk-lon1" {
|
||
|
};
|
||
|
|
||
|
interface "lo" {
|
||
|
stub;
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|
||
|
protocol direct {
|
||
|
table T_OSPF6;
|
||
|
import where is_self_net();
|
||
|
export none;
|
||
|
|
||
|
interface "lo";
|
||
|
}
|
||
|
|
||
|
filter filter_OSPF6 {
|
||
|
ospf_metric1 = 1000;
|
||
|
if source = RTS_STATIC then accept;
|
||
|
else reject;
|
||
|
};
|
||
|
|
||
|
protocol pipe {
|
||
|
peer table T_OSPF6;
|
||
|
import all;
|
||
|
export filter filter_OSPF6;
|
||
|
}
|