助け合いフォーラム
この問題はプレミアムコンテンツです。
再配送時のsubnetsオプションについて
この問題ではsubnetsオプションが付いていないですが、OSPFへの再配送時はクラスレスネットワークの場合はつけるべきと思いますがどうなのでしょうか。
廃止予定との記事もありましたが。。。
https://community.cisco.com/t5/tkb-%E3%83%8D%E3%83%83%E3%83%88%E3%83%AF%E3%83%BC%E3%82%AF%E3%82%A4%E3%83%B3%E3%83%95%E3%83%A9-sr-%E3%82%B3%E3%83%AC%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3/ios-xe-redistribute-%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89%E3%81%AE-subnets-%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6/ta-p/4170963
機種やIOSのバージョンによって「subnets」オプションを指定せずに設定しても、自動的に「subnets」が有効になることがあります。
なので、この問題では「subnets」オプションを指定してなくても再配送ができているのだと思います。
自動的に「subnets」が有効になる場合についても、「show run」の出力には異なるパターンが存在するみたいです。
このバージョンはこのパターンというようなことが記載されているCiscoのドキュメントは見つけられなかったのですが、私が試せる環境で検証してみたところ以下のようなパターンを発見出来ました。
【「subnets」が自動的に有効になって「show run」にも表示されるパターン】
Router(config)#router ospf 1
Router(config-router)#network 172.16.1.0 0.0.0.255 area 0
Router(config-router)#redistribute eigrp 1 metric-type 2 ←「subnets」を付けないで設定
Router(config-router)#do sh run | s ospf
router ospf 1
redistribute eigrp 1 subnets ←「subnets」が自動的に付いている
network 172.16.1.0 0.0.0.255 area 0
Router(config-router)#do sh ip protocols
*** IP Routing is NSF aware ***
~ 省略 ~
Routing Protocol is "ospf 1"
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Router ID 172.16.1.2
It is an autonomous system boundary router
Redistributing External Routes from,
eigrp 1, includes subnets in redistribution ←「subnets」が有効になっている
Number of areas in this router is 1. 1 normal 0 stub 0 nssa
Maximum path: 4
Routing for Networks:
172.16.1.0 0.0.0.255 area 0
Routing Information Sources:
Gateway Distance Last Update
172.16.2.2 110 00:21:37
Distance: (default is 110)
【「subnets」が「show run」に表示されないけど自動的に有効になるパターン】
Cat8000V(config)#router ospf 1
Cat8000V(config-router)#network 172.16.1.0 0.0.0.255 area 0
Cat8000V(config-router)#redistribute eigrp 1 metric-type 2 ←「subnets」を付けないで設定
Cat8000V(config-router)#do sh run | s ospf
router ospf 1
redistribute eigrp 1 ←「show run」には「subnets」オプションが表示されない
network 172.16.1.0 0.0.0.255 area 0
Cat8000V(config-router)#do sh ip protocols
*** IP Routing is NSF aware ***
~ 省略 ~
Routing Protocol is "ospf 1"
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Router ID 192.168.45.11
It is an autonomous system boundary router
Redistributing External Routes from,
eigrp 1, includes subnets in redistribution ←「show run」には「subnets」オプションが表示されないが、実際には「subnets」が有効になっている
Number of areas in this router is 1. 1 normal 0 stub 0 nssa
Maximum path: 4
Routing for Networks:
172.16.1.0 0.0.0.255 area 0
Routing Information Sources:
Gateway Distance Last Update
Distance: (default is 110)
参考になりましたら幸いです。
コメント
この投稿に対して返信しませんか?
P Pnt704_010
2023/09/14 15:20
ご丁寧にありがとうございます!! 自動的に有効になっている場合があるのですね。試験対策としてはsubnetsオプションは一般的にはつける物と覚えたほうが良さそうですね。