◆ JUNOS - OSPFの設定 - 完全スタブエリア
完全スタブエリアのABRでは、LSA Type5だけでなくLSA Type1〜3の経路についても、LSA Type3 の
デフォルトルートに集約されてスタブエリア内のOSPFルータに通知します。文字通り完全なスタブです。
スタブエリアの設定と異なる点は no-summaries キーワードを設定する点だけです。なお、ABRでない
完全スタブエリアのコンフィグは、スタブエリアの設定同様にstubキーワードを指定するだけとなります。
◆ SRX1 - ABRにおける完全スタブエリアの設定
root@SRX1# set protocols ospf area 0.0.0.0 interface ge-0/0/1
root@SRX1# set protocols ospf area 0.0.0.5 interface ge-0/0/0
root@SRX1# set protocols ospf area 0.0.0.5 stub default-metric 6 root@SRX1# set protocols ospf area 0.0.0.5 stub no-summaries
|
◆ SRX2 - スタブエリアの設定
root@SRX2# set protocols ospf area 0.0.0.5 interface ge-0/0/0
root@SRX2# set protocols ospf area 0.0.0.5 stub
|
◆ show route
LSA Type5の外部ルートだけでなく、LSA Type3のOSPFルート(192.168.1.0/24)のデフォルトルートに集約してSRX1が通知。
JUNOSでもCisco IOSと同様に以下の
6つのエリアを定義することができます。
・ バックボーンエリア
・ 標準エリア
・ スタブエリア
・ 完全スタブエリア
・ NSSA
・ 完全NSSA
NSSAの設定は以下の通り。完全NSSA
の設定は no-summaries を追加するだけ。 |
|
◆ SRX1 - ABRにおけるNSSAの設定例
root@SRX1# set protocols ospf area 0.0.0.5 nssa default-lsa default-metric 6
root@SRX1# set protocols ospf area 0.0.0.5 nssa default-lsa metric-type 1
root@SRX1# set protocols ospf area 0.0.0.5 nssa default-lsa type-7
|
※ 完全NSSAの場合は set protocols ospf area 0.0.0.5 nssa no-summaries を追加するだけです。
◆ SRX2 - NSSAの設定例
root@SRX1# set protocols ospf area 0.0.0.5 nssa |
Keyword |
説明 |
default-lsa |
Configures the ABR to generate a default route into the NSSA.
In this example, you configure the following:
|
default-metric |
Specifies that the ABR generate a default route with a specified metric
into the NSSA.
This default route enables packet forwarding from the NSSA to external destinations.
You configure this option only on the ABR. The ABR does not automatically
generate
a default route when attached to an NSSA. You must explicitly configure this option for
the ABR to generate a default route.
|
metric-type |
(Optional) Specifies the external metric type for the default LSA, which
can be either Type 1 or
Type 2. When OSPF exports route information from external ASs, it includes
a cost, or external
metric, in the route. The difference between the two metrics is how OSPF
calculates the cost of
the route. Type 1 external metrics are equivalent to the link-state
metric, where the cost is equal
to the sum of the internal costs plus the external cost. Type 2 external
metrics use only the
external cost assigned by the AS boundary router. By default, OSPF uses
the Type 2 external metric.
|
type-7 |
(Optional) Floods Type 7 default LSAs into the NSSA if the no-summaries statement is configured.
By default, when the no-summaries statement is configured, a Type 3 LSA is injected into NSSAs
for Junos OS release 5.0 and later. To support backward compatibility
with earlier JUNOS releases,
include the type-7 statement.
|
|