FutureNet

NXR,VXRシリーズ

LANインタフェース編

2. DHCP設定

2-2. DHCPリレー設定

DHCPクライアントとは異なるネットワークにあるDHCPサーバでIPアドレスを一括管理している環境において、ルータ経由でDHCPクライアントにIPアドレスを払い出すDHCPリレーの設定例です。

 

 

コンテンツ
構成図 設定フロー 設定例 設定例解説 端末の設定例 付録

 

【 構成図 】

 

【 設定フロー 】

 

【 設定例 】

nxrg100#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
nxrg100(config)#interface ethernet 0
nxrg100(config-if)#ip address 192.168.10.1/24
nxrg100(config-if)#exit
nxrg100(config)#interface ethernet 1
nxrg100(config-if)#ip address 192.168.20.1/24
nxrg100(config-if)#exit
nxrg100(config)#dhcp-relay
nxrg100(config-dhcpr)#address 192.168.20.10
nxrg100(config-dhcpr)#exit
nxrg100(config)#exit
nxrg100#save config

 

【 設定例解説 】

1. <ethernet0インタフェース設定>
nxrg100(config)#interface ethernet 0
nxrg100(config-if)#ip address 192.168.10.1/24

ethernet0インタフェースのIPアドレスを設定します。

 

2. <ethernet1インタフェース設定>
nxrg100(config)#interface ethernet 1
nxrg100(config-if)#ip address 192.168.20.1/24

ethernet1インタフェースのIPアドレスを設定します。

 

3. <DHCPリレー設定>
nxrg100(config)#dhcp-relay
nxrg100(config-dhcpr)#address 192.168.20.10

中継するDHCPサーバのIPアドレスを設定します。

 

【 端末の設定例 】

192.168.10.0/24 192.168.20.0/24
IPアドレス DHCPサーバから自動取得 192.168.20.10
サブネットマスク 255.255.255.0
デフォルトゲートウェイ 192.168.20.1
DNSサーバ

 

【 付録 】