想定するネットワーク構成図
ラボ・シナリオで使用するネットワーク構成図
・物理 PC の VirtualBox 上に、PC-C と PC-D の2つの仮想 PC を構成する。
・物理 PC に USB-LAN 変換ケーブルを2つ接続し、PC-C と PC-D でそれぞれを使用するように VirtualBox を設定する。
・PC-C と PC-D が使用している物理 PC の LAN ポートのプロパティで、
[VirtualBox Bridged Networking Driver] 以外の全てのチェックを外す。
- RT-B をネットワーク構成図に示す通り設定し、以下の情報を基に DHCP サーバーを構成しなさい。
< RT-B >
Router# conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)# host RT-B
RT-B(config)# int f0/0
RT-B(config-if)# ip add 172.16.3.1 255.255.255.0
RT-B(config-if)# no shut
RT-B(config-if)# int f0/1
RT-B(config-if)# ip add 172.16.4.1 255.255.255.0
RT-B(config-if)# no shut
RT-B(config-if)# exit
RT-B(config)# ip dhcp pool RT-B-F0/0 ← 1つ目の DHCP アドレスプールの設定
RT-B(dhcp-config)# network 172.16.3.0 255.255.255.0
RT-B(dhcp-config)# default-router 172.16.3.1
RT-B(dhcp-config)# domain-name jukenki.local
RT-B(dhcp-config)# dns-server 8.8.8.8
RT-B(dhcp-config)# lease 0 12
RT-B(dhcp-config)# exit
RT-B(config)# ip dhcp pool RT-B-F0/1 ← 2つ目の DHCP アドレスプールの設定
RT-B(dhcp-config)# network 172.16.4.0 255.255.255.0
RT-B(dhcp-config)# default-router 172.16.4.1
RT-B(dhcp-config)# domain-name jukenki.local
RT-B(dhcp-config)# dns-server 8.8.8.8
RT-B(dhcp-config)# lease 0 0 30
RT-B(dhcp-config)# ^Z
RT-B#
1台の DHCP サーバーで複数のセグメント (ネットワーク) にIPアドレスの配布を行う場合は、セグメントの数だけアドレスプールを作成します。
- 設定した内容を show run で確認しなさい。
< RT-B >
RT-B# sh run | section ip dhcp pool
ip dhcp pool RT-B-F0/0
network 172.16.3.0 255.255.255.0
default-router 172.16.3.1
domain-name jukenki.local
dns-server 8.8.8.8
lease 0 12
ip dhcp pool RT-B-F0/1
network 172.16.4.0 255.255.255.0
default-router 172.16.4.1
domain-name jukenki.local
dns-server 8.8.8.8
lease 0 0 30
RT-B#
- RT-C を DHCP クライアントに設定し、取得したIPアドレス情報を確認しなさい。
< RT-C >
C:\> netsh interface ipv4 set address "イーサネット" dhcp
C:\> ipconfig
Windows IP 構成
イーサネット アダプター イーサネット:
接続固有の DNS サフィックス . . . . .: jukenki.local
IPv4 アドレス . . . . . . . . . . . .: 172.16.3.2
サブネット マスク . . . . . . . . . .: 255.255.255.0
デフォルト ゲートウェイ . . . . . . .: 172.16.3.1
C:\>
PC-C にはIPアドレス 172.16.3.2 が割り当てられています。
- RT-D を DHCP クライアントに設定し、取得したIPアドレス情報を確認しなさい。
< RT-D >
C:\> netsh interface ipv4 set address "イーサネット" dhcp
C:\> ipconfig
Windows IP 構成
イーサネット アダプター イーサネット:
接続固有の DNS サフィックス . . . . .: jukenki.local
IPv4 アドレス . . . . . . . . . . . .: 172.16.4.2
サブネット マスク . . . . . . . . . .: 255.255.255.0
デフォルト ゲートウェイ . . . . . . .: 172.16.4.1
C:\>
RT-D にはIPアドレス 172.16.4.2 が割り当てられました。
- RT-B で、show ip dhcp binding コマンドを実行しなさい。
< RT-B >
RT-B# sh ip dhcp binding
Bindings from all pools not associated with VRF:
IP address Client-ID/ Lease expiration Type
Hardware address/
User name
172.16.3.2 0100.9f31.0c00.00 Jan 16 2014 04:58 AM Automatic
172.16.4.2 0100.9f31.0d00.00 Jan 15 2014 05:29 PM Automatic
RT-B#
このようにサブネットごとに異なる DHCP アドレスプールからIPアドレスを割り当てることができます。