すべての物理的なケーブル配線が適切に配置されています。ある企業は、32 の新しいサイトを展開する予定です。
これらのサイトは、IPv4 ネットワークと IPv6 ネットワークの両方を利用します。
1. サブネット要件を満たし、最大化するためのサブネット 172.25.0.0/16
ホストの数
2 番目のサブネットの使用
* 最初の使用可能な IP アドレスを Sw1O1 の e0/0 に割り当てます。
* 最後に使用可能な IP アドレスを Sw102 の e0/0 に割り当てます。
2. サブネット要件を満たし、最大化するためのサブネット
ホストの数
c 2 番目のサブネットの使用
* 一意の 64 ビット インターフェイス識別子を使用して IPv6 GUA を割り当てます
e0/0はSw101です
* 一意の 64 ビット インターフェイス識別子を使用して IPv6 GUA を割り当てます
eO/O 上 swi02
ガイドライン
これは、仮想デバイス上でタスクが実行されるラボ項目です。
* このラボ項目のタスクを表示するには、「タスク」タブを参照してください。
* デバイス コンソールにアクセスしてタスクを実行するには、[トポロジ] タブを参照してください。
* デバイス アイコンをクリックするか、次のコマンドを使用すると、必要なすべてのデバイスでコンソール アクセスが可能になります。
コンソール ウィンドウの上にあるタブ。
* 必要な事前構成はすべて適用されています。
* デバイスのイネーブル パスワードまたはホスト名は変更しないでください。
* 次の項目に進む前に、設定を NVRAM に保存してください。
* 画面の下部にある [次へ] をクリックしてこのラボを送信し、次の質問に進みます。
※「次へ」をクリックするとラボが閉じられ、再度開くことはできません。

正解:
解決策については説明を参照してください。
Explanation:
To subnet 172.25.0.0/16 to meet the subnet requirements and maximize the number of hosts, you need to determine how many bits you need to borrow from the host portion of the address to create enough subnets for 32 sites. Since 32 is 2^5, you need to borrow 5 bits, which means your new subnet mask will be /21 or 255.255.248.0. To find the second subnet, you need to add the value of the fifth bit (32) to the third octet of the network address (0), which gives you 172.25.32.0/21 as the second subnet. The first usable IP address in this subnet is 172.25.32.1, and the last usable IP address is 172.25.39.254.
To assign the first usable IP address to e0/0 on Sw101, you need to enter the following commands on the device console:
Sw101#configure terminal Sw101(config)#interface e0/0 Sw101(config-if)#ip address 172.25.32.1 255.255.248.0 Sw101(config-if)#no shutdown Sw101(config-if)#end
To assign the last usable IP address to e0/0 on Sw102, you need to enter the following commands on the device console:
Sw102#configure terminal Sw102(config)#interface e0/0 Sw102(config-if)#ip address 172.25.39.254 255.255.248.0 Sw102(config-if)#no shutdown Sw102(config-if)#end
To subnet an IPv6 GUA to meet the subnet requirements and maximize the number of hosts, you need to determine how many bits you need to borrow from the interface identifier portion of the address to create enough subnets for 32 sites. Since 32 is 2^5, you need to borrow 5 bits, which means your new prefix length will be /69 or ffff:ffff:ffff:fff8::/69 (assuming that your IPv6 GUA has a /64 prefix by default). To find the second subnet, you need to add the value of the fifth bit (32) to the fourth hextet of the network address (0000), which gives you xxxx:xxxx:xxxx:0020::/69 as the second subnet (where xxxx:xxxx:xxxx is your IPv6 GUA prefix). The first and last IPv6 addresses in this subnet are xxxx:xxxx:xxxx:0020::1 and xxxx:xxxx:xxxx:0027:ffff:ffff:ffff:fffe respectively.
To assign an IPv6 GUA using a unique 64-bit interface identifier on e0/0 on Sw101, you need to enter the following commands on the device console (assuming that your IPv6 GUA prefix is 2001:db8::/64):
Sw101#configure terminal Sw101(config)#interface e0/0 Sw101(config-if)#ipv6 address 2001:db8::20::1/69 Sw101(config-if)#no shutdown Sw101(config-if)#end
To assign an IPv6 GUA using a unique 64-bit interface identifier on e0/0 on Sw102, you need to enter the following commands on the device console (assuming that your IPv6 GUA prefix is 2001:db8::/64):
Sw102#configure terminal Sw102(config)#interface e0/0 Sw102(config-if)#ipv6 address 2001:db8::27::fffe/69 Sw102(config-if)#no shutdown Sw102(config-if)#end