Kossyの生活・仕事・ゲームのブログです^p^ 音ゲーは楽しい
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
「OSPFネットワーク構築その2 スタブエリア」のエリア1をトータリースタブエリアにする。
・使用機器
Cisco1812×4台
トータリースタブエリアにすると、OSPF内部ルート(エリア0と1)もブロックされ、
外部ルートと同じようにデフォルトルート(0.0.0.0/0)としてLSAタイプ3でアドバタイズされるようになる。
よって、スタブエリアよりも更にOSPF LSDB、ルーティングテーブルのサイズが小さくなり、ルータの負荷が軽減される。
・使用機器
Cisco1812×4台
トータリースタブエリアにすると、OSPF内部ルート(エリア0と1)もブロックされ、
外部ルートと同じようにデフォルトルート(0.0.0.0/0)としてLSAタイプ3でアドバタイズされるようになる。
よって、スタブエリアよりも更にOSPF LSDB、ルーティングテーブルのサイズが小さくなり、ルータの負荷が軽減される。
ルータR1に以下のコマンドを実行し、エリア1をトータリースタブエリアにする。
R1(config)# router ospf 100
R1(config-router)# area 1 stub no-summary
設定後はスタブエリアと同様に一旦ネイバー関係が無くなり、再度確立し直す。
◇トータリースタブエリアの確認
R1#sh ip ospf
Routing Process "ospf 100" with ID 200.1.1.250
Supports only single TOS(TOS0) routes
Supports opaque LSA
Supports Link-local Signaling (LLS)
Supports area transit capability
It is an area border router
Initial SPF schedule delay 5000 msecs
Minimum hold time between two consecutive SPFs 10000 msecs
Maximum wait time between two consecutive SPFs 10000 msecs
Incremental-SPF disabled
Minimum LSA interval 5 secs
Minimum LSA arrival 1000 msecs
LSA group pacing timer 240 secs
Interface flood pacing timer 33 msecs
Retransmission pacing timer 66 msecs
Number of external LSA 2. Checksum Sum 0x01ED2C
Number of opaque AS LSA 0. Checksum Sum 0x000000
Number of DCbitless external and opaque AS LSA 0
Number of DoNotAge external and opaque AS LSA 0
Number of areas in this router is 2. 1 normal 1 stub 0 nssa
Number of areas transit capable is 0
External flood list length 0
IETF NSF helper support enabled
Cisco NSF helper support enabled
Area BACKBONE(0)
Number of interfaces in this area is 1
Area has no authentication
SPF algorithm last executed 00:00:21.060 ago
SPF algorithm executed 5 times
Area ranges are
Number of LSA 6. Checksum Sum 0x04320B
Number of opaque link LSA 0. Checksum Sum 0x000000
Number of DCbitless LSA 0
Number of indication LSA 0
Number of DoNotAge LSA 0
Flood list length 0
Area 1
Number of interfaces in this area is 1
It is a stub area, no summary LSA in this area
generates stub default route with cost 1
Area has no authentication
SPF algorithm last executed 00:00:21.060 ago
SPF algorithm executed 6 times
Area ranges are
Number of LSA 4. Checksum Sum 0x0328AC
Number of opaque link LSA 0. Checksum Sum 0x000000
Number of DCbitless LSA 0
Number of indication LSA 0
Number of DoNotAge LSA 0
Flood list length 0
「no summary LSA in this area」とあるので、トータリースタブエリアになっていることが確認できる。
次にルータR2でLSDBとルーティングテーブルを確認する。
◇ルータR2のLSDBの確認
R2#sh ip ospf database
OSPF Router with ID (200.1.1.20) (Process ID 100)
Router Link States (Area 1)
Link ID ADV Router Age Seq# Checksum Link count
200.1.1.20 200.1.1.20 141 0x80000003 0x00C756 2
200.1.1.250 200.1.1.250 141 0x80000003 0x00F0DC 1
Net Link States (Area 1)
Link ID ADV Router Age Seq# Checksum
192.168.2.1 200.1.1.250 142 0x80000001 0x00C0B3
Summary Net Link States (Area 1)
Link ID ADV Router Age Seq# Checksum
0.0.0.0 200.1.1.250 108 0x80000002 0x00AFC7
LSAタイプ3で他エリアのルートが無くなり、デフォルトルートのみになったことが分かる。
そしてルーティングテーブルを見てみる。
◇ルータR2のルーティングテーブルの確認
R2#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is 192.168.2.1 to network 0.0.0.0
192.168.2.0/28 is subnetted, 1 subnets
C 192.168.2.0 is directly connected, FastEthernet0
C 192.168.3.0/24 is directly connected, Loopback0
O*IA 0.0.0.0/0 [110/2] via 192.168.2.1, 00:01:57, FastEthernet0
LSDBの通り、自エリア内のルート以外は、全てデフォルトルート(0.0.0.0/0)でアドバタイズされていることが分かる。
→「OSPFネットワーク構築その4 NSSA」へ
R1(config)# router ospf 100
R1(config-router)# area 1 stub no-summary
設定後はスタブエリアと同様に一旦ネイバー関係が無くなり、再度確立し直す。
◇トータリースタブエリアの確認
R1#sh ip ospf
Routing Process "ospf 100" with ID 200.1.1.250
Supports only single TOS(TOS0) routes
Supports opaque LSA
Supports Link-local Signaling (LLS)
Supports area transit capability
It is an area border router
Initial SPF schedule delay 5000 msecs
Minimum hold time between two consecutive SPFs 10000 msecs
Maximum wait time between two consecutive SPFs 10000 msecs
Incremental-SPF disabled
Minimum LSA interval 5 secs
Minimum LSA arrival 1000 msecs
LSA group pacing timer 240 secs
Interface flood pacing timer 33 msecs
Retransmission pacing timer 66 msecs
Number of external LSA 2. Checksum Sum 0x01ED2C
Number of opaque AS LSA 0. Checksum Sum 0x000000
Number of DCbitless external and opaque AS LSA 0
Number of DoNotAge external and opaque AS LSA 0
Number of areas in this router is 2. 1 normal 1 stub 0 nssa
Number of areas transit capable is 0
External flood list length 0
IETF NSF helper support enabled
Cisco NSF helper support enabled
Area BACKBONE(0)
Number of interfaces in this area is 1
Area has no authentication
SPF algorithm last executed 00:00:21.060 ago
SPF algorithm executed 5 times
Area ranges are
Number of LSA 6. Checksum Sum 0x04320B
Number of opaque link LSA 0. Checksum Sum 0x000000
Number of DCbitless LSA 0
Number of indication LSA 0
Number of DoNotAge LSA 0
Flood list length 0
Area 1
Number of interfaces in this area is 1
It is a stub area, no summary LSA in this area
generates stub default route with cost 1
Area has no authentication
SPF algorithm last executed 00:00:21.060 ago
SPF algorithm executed 6 times
Area ranges are
Number of LSA 4. Checksum Sum 0x0328AC
Number of opaque link LSA 0. Checksum Sum 0x000000
Number of DCbitless LSA 0
Number of indication LSA 0
Number of DoNotAge LSA 0
Flood list length 0
「no summary LSA in this area」とあるので、トータリースタブエリアになっていることが確認できる。
次にルータR2でLSDBとルーティングテーブルを確認する。
◇ルータR2のLSDBの確認
R2#sh ip ospf database
OSPF Router with ID (200.1.1.20) (Process ID 100)
Router Link States (Area 1)
Link ID ADV Router Age Seq# Checksum Link count
200.1.1.20 200.1.1.20 141 0x80000003 0x00C756 2
200.1.1.250 200.1.1.250 141 0x80000003 0x00F0DC 1
Net Link States (Area 1)
Link ID ADV Router Age Seq# Checksum
192.168.2.1 200.1.1.250 142 0x80000001 0x00C0B3
Summary Net Link States (Area 1)
Link ID ADV Router Age Seq# Checksum
0.0.0.0 200.1.1.250 108 0x80000002 0x00AFC7
LSAタイプ3で他エリアのルートが無くなり、デフォルトルートのみになったことが分かる。
そしてルーティングテーブルを見てみる。
◇ルータR2のルーティングテーブルの確認
R2#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is 192.168.2.1 to network 0.0.0.0
192.168.2.0/28 is subnetted, 1 subnets
C 192.168.2.0 is directly connected, FastEthernet0
C 192.168.3.0/24 is directly connected, Loopback0
O*IA 0.0.0.0/0 [110/2] via 192.168.2.1, 00:01:57, FastEthernet0
LSDBの通り、自エリア内のルート以外は、全てデフォルトルート(0.0.0.0/0)でアドバタイズされていることが分かる。
→「OSPFネットワーク構築その4 NSSA」へ
PR
Comment
カウンター
カレンダー
10 | 2024/11 | 12 |
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
最新コメント
[07/17 Kossy]
[07/17 カサハンラ]
[09/04 Kossy]
[09/03 おちんちん]
[08/04 testes]
[08/03 Kossy]
[08/02 testes]
マシンスペック
【メインPC】
[OS] Windows11 Pro
[CPU] Core i5-10400 @2.9GHz
[MEM] 32GB
[VGA] NVIDIA GTX1660 SUPER
[マウス] Logicool M550L
[PAD] SteelSeries QcK 63004
[キーボード] Logicool K295
【Webサーバー機】
[Model] MINISFORUM N40
[OS] Rocky Linux
[CPU] Celeron N4020 @2.8GHz
[MEM] 4GB
[SSD] 64GB
カテゴリー
ブログ内検索
アーカイブ
最新トラックバック