◆ タグ付きのスタティックルートの再配布制御
最初に、OSPFネットワークに対して「スタティックルート」を再配布する設定例を見てみましょう。
この設定の場合、OSPFネットワークへ「172.16.1.0/24」「172.16.2.0/24」「172.16.3.0/24」の
全てのスタティックルートがルート再配布されます。
R2(config)# ip route 172.16.1.0 255.255.255.0 172.16.0.254
R2(config)# ip route 172.16.2.0 255.255.255.0 172.16.0.254
R2(config)# ip route 172.16.3.0 255.255.255.0 172.16.0.254
R2(config)# router ospf 1 R2(config-router)# redistribute static subnets
|
次に、OSPFネットワークに対して「タグ付きスタティックルート」を再配布する設定例を見てみます。
この設定では「172.16.1.0/24」と「172.16.2.0/24」のスタティックルートにルートタグ(tag 3)を
付けています。そして、このタグ(tag 3)が付いているスタティックルートのみ再配布し通知します。
R2(config)# ip route 172.16.1.0 255.255.255.0 172.16.0.254 tag 3
R2(config)# ip route 172.16.2.0 255.255.255.0 172.16.0.254 tag 3
R2(config)# ip route 172.16.3.0 255.255.255.0 172.16.0.254
R2(config)# route-map R-TAG01 permit 10
R2(config-route-map)# match tag 3
R2(config)# router ospf 1 R2(config-router)# redistribute static subnets route-map R-TAG01
|
|