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

【L3SW】RIPngの設定②

【L3SW】RIPngの設定①」の続きです。下図のネットワークを RIPng で設定していきます。


各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

RIPng の設定

L3SW1のRIPngの設定

L3SW1>enable
L3SW1#conf t
L3SW1(config)#ipv6 router rip ripng
L3SW1(config-rtr)#int g1/0/1
L3SW1(config-if)#ipv6 rip ripng enable
L3SW1(config-if)#int g1/0/2
L3SW1(config-if)#ipv6 rip ripng enable
L3SW1(config-if)#end
L3SW1#copy run start

L3SW2のRIPngの設定

L3SW2>enable
L3SW2#conf t
L3SW2(config)#ipv6 router rip ripng
L3SW2(config-rtr)#int g1/0/1
L3SW2(config-if)#ipv6 rip ripng enable
L3SW2(config-if)#int g1/0/2
L3SW2(config-if)#ipv6 rip ripng enable
L3SW2(config-if)#end
L3SW2#copy run start

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

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

関連コンテンツ