假设我有以下网络拓扑:
isp_router[t1-0/0/0.0] <-> [t1-0/0/0.0]ospf_asbr
我想在ospf_asbr
路由器中为 IGP 生成默认路由。一种选择是静态路由:
root@Dubbel> show configuration routing-options
rib inet.0 {
static {
/* 84.10.113.1 is configured on isp_router interface t1-0/0/0.0 */
route 0.0.0.0/0 next-hop 84.10.113.1;
}
}
root@Dubbel>
另一个选项应该是带有策略过滤器的生成路由,它只允许 84.10.113.0/31 作为贡献路由。例如,像这样:
[edit]
root@Dubbel# show routing-options generate
route 0.0.0.0/0 policy gen_default;
[edit]
root@Dubbel# show policy-options policy-statement gen_default
term 1 {
from {
protocol direct;
route-filter 84.10.113.0/31 exact;
}
then accept;
}
term 2 {
then reject;
}
[edit]
root@Dubbel#
一种方法比另一种更好吗?isp_router
如果和之间的链路ospf_asbr
发生故障,两者都应该从 IGP 撤回默认路由。或者一般来说,使用静态路由或使用生成的路由向 IGP 注入默认路由有什么区别?