Skip to main content

NEC IXシリーズの設定

サンプルトポロジーに基づいた、NEC IXシリーズの設定例を示します。
なお、以下の例ではGigaEthernet0.0にOCX光 プライベートのONUを接続し、GigaEthernet1.0に宅内ネットワークを接続していることを前提としています。

対応機種

OCX光 プライベートに対応するCPE
本稿では、IX2106及びそのファームウェアVersion 10.8.21を用いて動作確認をしています。

RA方式とPD方式

Router Advertisement(RA)方式と Prefix Delegation(PD)方式で設定方法が異なります。
詳しくは「RA方式とPD方式について」をご確認ください。

例 - RA方式

ip route 192.168.10.0/24 Tunnel0.0
!
device GigaEthernet0
!
device GigaEthernet1
!
interface GigaEthernet0.0
no ip address
ipv6 enable
ipv6 autoselect enable
ipv6 autoselect ra-delay 0
ipv6 nd proxy GigaEthernet1.0
no shutdown
!
interface GigaEthernet1.0
ip address 192.168.50.1/24
ipv6 enable
ipv6 interface-identifier 00:00:00:00:03:04:05:06
ipv6 nd ra enable
no shutdown
!
interface Loopback0.0
no ip address
!
interface Null0.0
no ip address
!
interface Tunnel0.0
tunnel mode 4-over-6
tunnel destination 2400:c320:101:a:b:c:d:e
tunnel source GigaEthernet1.0
ip unnumbered
no shutdown

例 - PD方式

後日掲載いたします

テンプレート - RA方式

ip route {{OCX側ネットワーク}}/{{OCX側ネットワークのIPv4プレフィックス長}} Tunnel0.0
!
device GigaEthernet0
!
device GigaEthernet1
!
interface GigaEthernet0.0
no ip address
ipv6 enable
ipv6 autoselect enable
ipv6 autoselect ra-delay 0
ipv6 nd proxy GigaEthernet1.0
no shutdown
!
interface GigaEthernet1.0
ip address {{宅内ネットワーク側IFのIPv4アドレス}}/{{宅内ネットワーク側IFのIPv4プレフィックス長}}
ipv6 enable
ipv6 interface-identifier {{CPEエンドポイントアドレスで指定された下64bitアドレス(IFID)}}
ipv6 nd ra enable
no shutdown
!
interface Loopback0.0
no ip address
!
interface Null0.0
no ip address
!
interface Tunnel0.0
tunnel mode 4-over-6
tunnel destination {{ゲートウェイエンドポイントアドレス}}
tunnel source GigaEthernet1.0
ip unnumbered
no shutdown

テンプレート - PD方式

後日掲載いたします