Fix OSPF config
This commit is contained in:
parent
b90636898e
commit
bb9e070b7c
17
ospf4.conf
17
ospf4.conf
|
@ -13,22 +13,15 @@ protocol ospf {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
protocol direct {
|
|
||||||
table T_OSPF4;
|
|
||||||
import where is_self_net();
|
|
||||||
export none;
|
|
||||||
|
|
||||||
interface "lo";
|
|
||||||
}
|
|
||||||
|
|
||||||
filter filter_OSPF {
|
filter filter_OSPF {
|
||||||
ospf_metric1 = 1000;
|
ospf_metric1 = 1000;
|
||||||
if source = RTS_STATIC then accept;
|
if is_self_net() then accept;
|
||||||
else reject;
|
else reject;
|
||||||
};
|
};
|
||||||
|
|
||||||
protocol pipe {
|
protocol pipe {
|
||||||
peer table T_OSPF4;
|
table T_OSPF4;
|
||||||
import filter filter_OSPF;
|
peer table master;
|
||||||
export none;
|
import none;
|
||||||
|
export filter filter_OSPF;
|
||||||
}
|
}
|
||||||
|
|
14
ospf6.conf
14
ospf6.conf
|
@ -13,22 +13,16 @@ protocol ospf {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
protocol direct {
|
|
||||||
table T_OSPF6;
|
|
||||||
import where is_self_net();
|
|
||||||
export none;
|
|
||||||
|
|
||||||
interface "lo";
|
|
||||||
}
|
|
||||||
|
|
||||||
filter filter_OSPF6 {
|
filter filter_OSPF6 {
|
||||||
ospf_metric1 = 1000;
|
ospf_metric1 = 1000;
|
||||||
if source = RTS_STATIC then accept;
|
if is_self_net() then accept;
|
||||||
else reject;
|
else reject;
|
||||||
};
|
};
|
||||||
|
|
||||||
protocol pipe {
|
protocol pipe {
|
||||||
peer table T_OSPF6;
|
table T_OSPF6;
|
||||||
import all;
|
peer table master;
|
||||||
|
import none;
|
||||||
export filter filter_OSPF6;
|
export filter filter_OSPF6;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue