このページで解説している内容は、以下の YouTube 動画の解説で見ることができます。

【L3SW】OSPFv3の設定②

ここでは、下図のネットワークを OSPFv3 で構築していきます。


各L3スイッチの設定

まずは、基本設定を行います。

各ルータのIPv6アドレスなどの基本設定は、以下のとおりです。

「ipv6 unicast-routing」コマンドを適用して、IPv6によるルーティングを有効にしておきます。

L3SW1の設定

Switch>enable
Switch#conf t
Switch(config)#hostname L3SW1
L3SW1(config)#ipv6 unicast-routing
L3SW1(config)#int g1/0/1
L3SW1(config-if)#no switchport
L3SW1(config-if)#ipv6 address 2001:db8:cafe:1::1/64
L3SW1(config-if)#ipv6 address fe80::1 link-local
L3SW1(config-if)#no shutdown
L3SW1(config-if)#int g1/0/2
L3SW1(config-if)#no switchport
L3SW1(config-if)#ipv6 address 2001:db8:cafe:2::1/64
L3SW1(config-if)#ipv6 address fe80::1 link-local
L3SW1(config-if)#no shutdown
L3SW1(config-if)#end
L3SW1#copy run start

L3SW2の設定

Switch>enable
Switch#conf t
Switch(config)#hostname L3SW2
L3SW2(config)#ipv6 unicast-routing
L3SW2(config)#int g1/0/1
L3SW2(config-if)#no switchport
L3SW2(config-if)#ipv6 address 2001:db8:cafe:2::2/64
L3SW2(config-if)#ipv6 address fe80::2 link-local
L3SW2(config-if)#no shutdown
L3SW2(config-if)#int g1/0/2
L3SW2(config-if)#no switchport
L3SW2(config-if)#ipv6 address 2001:db8:cafe:3::1/64
L3SW2(config-if)#ipv6 address fe80::1 link-local
L3SW2(config-if)#no shutdown
L3SW2(config-if)#end
L3SW2#copy run start

OSPFv3 の設定

R1の OSPFv3 設定

L3SW1>enable
L3SW1#conf t
L3SW1(config)#ipv6 router ospf 1
L3SW1(config-rtr)#router-id 1.1.1.1
L3SW1(config-rtr)#passive-interface g1/0/1
L3SW1(config-rtr)#int g1/0/1
L3SW1(config-if)#ipv6 ospf 1 area 0
L3SW1(config-if)#int g1/0/2
L3SW1(config-if)#ipv6 ospf 1 area 0
L3SW1(config-if)#end
L3SW1#copy run start

R2の OSPFv3 設定

L3SW2>enable
L3SW2#conf t
L3SW2(config)#ipv6 router ospf 1
L3SW2(config-rtr)#router-id 2.2.2.2
L3SW2(config-rtr)#passive-interface g1/0/2
L3SW2(config-rtr)#int g1/0/1
L3SW2(config-if)#ipv6 ospf 1 area 0
L3SW2(config-if)#int g1/0/2
L3SW2(config-if)#ipv6 ospf 1 area 0
L3SW2(config-if)#end
L3SW2#copy run start

これで、OSPFv3 の設定は、完了です。

続きは、次の「【L3SW】OSPFv3の設定③」で、設定した OSPFv3 の動作検証を行います。

関連コンテンツ