exam questions

Exam 200-301 All Questions

View all questions & answers for the 200-301 exam

Exam 200-301 topic 1 question 1182 discussion

Actual exam question from Cisco's 200-301
Question #: 1182
Topic #: 1
[All 200-301 Questions]

SIMULATION
-


Guidelines
-

This is a lab item in which tasks will be performed on virtual devices

• Refer to the Tasks tab to view the tasks for this lab item.
• Refer to the Topology tab to access the device console(s) and perform the tasks
• Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window
• All necessary preconfigurations have been applied
• Do not change the enable password or hostname for any device
• Save your configurations to NVRAM before moving to the next item
• Click Next at the bottom of the screen to submit this lab and move to the next question
• When Next is clicked the lab closes and cannot be reopened


Topology
-




Tasks
-

All physical cabling is in place. A company plans to deploy 16 new sites. The sites will utilize both IPv4 and IPv6 networks.

1. Subnet 172.16.0.0/16 to meet the subnet requirements and maximize the number of hosts
• Using the second subnet
- Assign the first usable IP address to e0/0 on Sw101
- Assign the last usable IP address to e0/0 on Sw102

2. Subnet 2001:DB8::/50 to meet the subnet requirements and maximize the number of hosts
• Using the second subnet
- Assign an IPv6 GUA using a unique 64-Bit interface identifier on e0/0 on Sw101
- Assign an IPv6 GUA using a unique 64-Bit interface identifier on e0/0 on Sw102

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
matteodd90
Highly Voted 1 year, 6 months ago
trying to give an aswer, correct me if I am wrong 16 sites=2^4 /16 --> n°16 /20 172.16.0.0 - 172.16.15.255 172.16.16.0 - 172.16.31.255 and so on /50 --> n°16 /54 2001:0db8:0000:0000:0000:0000:0000:0000 - 2001:0db8:0000:03ff:ffff:ffff:ffff:ffff 2001:0db8:0000:0400:0000:0000:0000:0000 - 2001:0db8:0000:03ff:ffff:ffff:ffff:ffff and so on (every field separated by colons represent 16 bit, (every hexadecimal digits is 4 bit) IPv6 Global unicast address subnet minimum prefix lenght is 64 thus the two address are 2001:db8:0:400::1/64 2001:db8:0:400::2/64 sw101 int e0/0 ip address 172.16.16.1 255.255.240.0 ipv6 address 2001:db80:400::1/64 sw102 int e0/0 ip address 172.16.31.254 255.255.240.0 ipv6 address 2011:db8:0:400::2/64
upvoted 11 times
5eba813
1 year, 5 months ago
Shouldt be last useable 30 ? Iam confused tbh
upvoted 6 times
...
PyoJH
1 year, 5 months ago
Using the second subnet, .17 , .30
upvoted 1 times
...
...
[Removed]
Highly Voted 1 year, 4 months ago
The given answer is wrong. I'll break it down: We need to subnet 172.16.0.0/16. We need 16 subnets (16 sites). 2^n = 16 -> log2(16) -> 4 bits. So our subnets are the highest 4 bytes of the third octet. The second subnet would therefore start at. 172.16.[00010000].[00000000] -> 172.16.16.0 The last usable address would be 172.16.[00011111].[11111110] -> 172.16.31.254 The prefix length is calulated as network_bits + subnet_bits -> 16 + 4 -> 20. As a netmask -> 255.255.240.0 Before we apply any configurations, lets calculate the subnet for the IPv6 part: We're still deploying subnets for 16 sites, so again we need 4 host bits. Our network is 2001:DB8::/50. Remember that each hex character is 4 bytes, meaning each portion is 16 bits. The first 48 bits are therefore 2001:0DB8:0000. We then need to break down the individual bits, because a /50 prefix length crosses byte boundaries: 2001:0DB8:0000:[00xxxx00]::/54 where x -> subnet bits The second subnet means the lower-most bit is set to 1, giving us the address 2001:0DB8:0000:[00000100]::/54
upvoted 6 times
[Removed]
1 year, 4 months ago
Converting back to hexadecimal, and shortening as appropriate, we get the address of the second subnet: 2001:DB8:0:4::/54 Configuration First note that we're dealing with an L3 switch. The question says that all necessary configuratins are applied, but you'll want to check the running config to see if this is indeed the case. Particularly: 1. Ensure that ip routing is enabled 2. Ensure that ipv6 is enabled 3. Ensure that the switchports are disabled 4. Ensure that the routing interfaces are not shut down For the sake of my example, I'll assume these configurations are *not* applied. First, configure Sw101: SW101(config)#ip routing SW101(config)#ipv6 unicast-routing SW101(config)#interface e0/0 SW101(config-if)#no switchport SW101(config-if)#ip address 172.16.16.1 255.255.240.0 SW101(config-if)#ipv6 address 2001:DB8:0:4::/54 eui-64 SW101(config-if)#no shutdown SW101(config-if)#do write memory
upvoted 7 times
[Removed]
1 year, 4 months ago
Then, configure SW102: SW102(config)#ip routing SW102(config)#ipv6 unicast-routing SW102(config)#interface e0/0 SW102(config-if)#no switchport SW102(config-if)#ip address 172.16.31.254 255.255.240.0 SW102(config-if)#ipv6 address 2001:DB8:0:4::/54 eui-64 SW102(config-if)#no shutdown SW102(config-if)#do write memory Note: 1. I used eui-64 for the IPv6 addresses; the question asks for a "unique 64-Bit interface identifier", so this is appropriate. 2. I wrote the running config to startup config, as is instructed.
upvoted 10 times
baanyan
1 year, 3 months ago
SW102(config-if)#ipv6 address 2001:DB8:0:400::/54 eui-64 we cannot omit the trailing 0s, please be aware.
upvoted 10 times
...
...
Jessi2302
1 year, 2 months ago
When convert back to Hex, the second subnet is 2001:db8:0:400::/54
upvoted 2 times
...
...
bymrdas
9 months, 3 weeks ago
Sw101 interface ethernet 0/0 ip address 172.16.16.1 255.255.240.0 ipv6 address 2001:db8:0:400::/54 eui-64 no shutdown wr Sw102 interface ethernet 0/0 ip address 172.16.31.254 255.255.240.0 ipv6 address 2001:db8:0:400::/54 eui-64 no shutdown wr
upvoted 1 times
...
...
wox7707
Most Recent 3 months, 1 week ago
SW101 conf t ip routing ipv6 unicast-routing int e0/0 ip add 172.16.16.1 255.255.240.0 ipv6 add 2001:db8:0:400::/54 eui-64 no shut end wr mem SW102 conf t ip routing ipv6 unicast-routing int e0/0 ip add 172.16.31.254 255.255.240.0 ipv6 add 2001:db8:0:400::/54 eui-64 no shut end wr mem
upvoted 1 times
...
Essohjay
9 months ago
SW101# conf t SW101(config)# ipv6 unicast-routing SW101(config) #int e0/0 SW101(config-if)# no switchport  SW101(config-if)# ip add 172.16.16.1 255.255.240.0 SW101(config-if)# ipv6 add 2001:db8:0:400::/54 eui-64 SW101(config-if)# no shut SW101(config-if)#end  SW101# write memory  SW102# conf t SW102(config)# ipv6 unicast-routing SW102(config) #int e0/0 SW102(config-if)# no switchport SW102(config-if)# ip add 172.16.31.254 255.255.240.0 SW102(config-if)# ipv6 add 2001:db8:0:400::/54 eui-64 SW102(config-if)# no shut SW102(config-if)#end  SW102# write memory
upvoted 1 times
...
bymrdas
9 months, 3 weeks ago
Sw101 interface ethernet 0/0 ip address 172.16.16.1 255.255.240.0 ipv6 address 2001:db8:0:400::/54 eui-64 no shutdown wr Sw102 interface ethernet 0/0 ip address 172.16.31.254 255.255.240.0 ipv6 address 2001:db8:0:400::/54 eui-64 no shutdown wr
upvoted 1 times
bymrdas
9 months, 3 weeks ago
We need to subnet 172.16.0.0/16. We need 16 subnets (16 sites). 2^n = 16 -> log2(16) -> 4 bits. So our subnets are the highest 4 bytes of the third octet. The second subnet would therefore start at. 172.16.[00010000].[00000000] -> 172.16.16.0 The last usable address would be 172.16.[00011111].[11111110] -> 172.16.31.254 The prefix length is calulated as network_bits + subnet_bits -> 16 + 4 -> 20. As a netmask -> 255.255.240.0 Before we apply any configurations, lets calculate the subnet for the IPv6 part: We're still deploying subnets for 16 sites, so again we need 4 host bits. Our network is 2001:DB8::/50. Remember that each hex character is 4 bytes, meaning each portion is 16 bits. The first 48 bits are therefore 2001:0DB8:0000. We then need to break down the individual bits, because a /50 prefix length crosses byte boundaries: 2001:0DB8:0000:[00xxxx00]::/54 where x -> subnet bits The second subnet means the lower-most bit is set to 1, giving us the address 2001:0DB8:0000:[00000100]::/54
upvoted 1 times
...
...
Rolfer
1 year ago
Is ipv6 subneting CCNA scope?
upvoted 1 times
...
d5c03de
1 year, 1 month ago
From my understanding with IPV6, bits 49 - 64 represent the subnet. @CertBuster 2001:0DB8:0000:[00xxxx00]::/54 where x -> subnet bit Why go past the giving /50? I can understand /52 as it represents the first hexadecimal, but I'm struggling wrapping my head around /54. Why include the second hexadecimal? 1. 2001:DB8:0:0::/50 2. 2001:DB8:0:4::/50 3. 2001:DB8:0:8::/50 4. 2001:DB8:0:12::/50 Makes sense to me. Please correct me if I'm wrong.
upvoted 1 times
d5c03de
1 year, 1 month ago
Disregard my question. It's because of the "16" new sites needed thus borrow 4 host bits from 2001:DB8::/50 -> 2001:DB8::/54 -> 2001:DB8:0:400::/54 = the second subnet.
upvoted 2 times
d5c03de
1 year, 1 month ago
Shout out to CerBuster, here's another way to look at the Ipv6 subnetting, [ ] = Bianary representation 2001:0DB8:0000:[00xx xx00 0000 0000]::/54 where x -> subnet bits 2001:0DB8:0000:[0000 0000 0000 0000]::/54 second subnet = 2001:0DB8:0000:[0000 0100 0000 0000]::/54 Back to hex = 2001:0DB8:0000:0400::/54 = 2001:DB8:0:400::/54
upvoted 1 times
...
...
...
picho707
1 year, 4 months ago
16 sites = 2^4 11110000 = /20 = 240 SW101(config)#ipv6 unicast-routing SW101(config)#interface gigabitEthernet 0/0 SW101(config-if)#no switchport SW101(config-if)#ip address 172.16.16.1 255.255.240.0 SW101(config-if)#no shutdown SW102(config)#ipv6 unicast-routing SW102(config)#interface gigabitEthernet 0/0 SW102(config-if)#no switchport SW102(config-if)#ip address 172.16.31.254 255.255.240.0 SW102(config-if)#no shutdown The IPV6 subnet will be: 2001:DB8:0:4::/54 SW101(config)#interface gigabitEthernet 0/0 SW101(config-if)#ipv6 address 2001:DB8:0:4::1/64 SW102(config-if)#interface gigabitEthernet 0/0 SW102(config-if)#ipv6 address 2001:DB8:0:4::2/64
upvoted 3 times
...
thinqtanklearningDOTcom
1 year, 4 months ago
Why wouldnt you just put ipv6 address 2001:db8::/64 eui-64 on the interface?
upvoted 1 times
...
picho707
1 year, 5 months ago
To subnet the IPv6 address 2001:DB8::/50 into 16 subnets, you need to add 4 bits to the prefix length. This is because 2^4 equals 16, which gives us the number of subnets we need. So, the new prefix length will be 50 + 4 = 54. Therefore, the subnets will have a prefix of /54. The subnets will be: 1. 2001:DB8:0:0::/54 2. 2001:DB8:0:4::/54 3. 2001:DB8:0:8::/54 and so on. IPv6 Global unicast address subnet minimum prefix length is 64 thus the two addresses are 2001:db8:0:400::1/64 2001:db8:0:400::2/64
upvoted 3 times
5eba813
1 year, 5 months ago
Can u kindly explain what happend after step 3 2001:db8:0:8::/54 cause iam lost after
upvoted 1 times
picho707
1 year, 4 months ago
1. 2001:DB8:0:0::/54 2. 2001:DB8:0:4::/54 3. 2001:DB8:0:8::/54 4. 2001:DB8:0:12::/54 5. 2001:DB8:0:16::/54 6. 2001:DB8:0:20::/54 7. 2001:DB8:0:24::/54 8. 2001:DB8:0:28::/54 9. 2001:DB8:0:32::/54 10. 2001:DB8:0:36::/54 11. 2001:DB8:0:40::/54 12. 2001:DB8:0:44::/54 13. 2001:DB8:0:48::/54 14. 2001:DB8:0:52::/54 15. 2001:DB8:0:60::/54 16. 2001:DB8:0:64::/54
upvoted 1 times
...
...
picho707
1 year, 5 months ago
Correction the 1sta dn 2nd IP address of the second subnet are: 2001:DB8:0:4::1/64 and 2001:DB8:0:4::2/64
upvoted 1 times
...
...
na4o
1 year, 6 months ago
Address: 172.16.8.0 10101100.00010000.00001 000.00000000 Netmask: 255.255.248.0 = 21 11111111.11111111.11111 000.00000000 Wildcard: 0.0.7.255 00000000.00000000.00000 111.11111111 => Network: 172.16.8.0/21 10101100.00010000.00001 000.00000000 (Class B) Broadcast: 172.16.15.255 10101100.00010000.00001 111.11111111 HostMin: 172.16.8.1 10101100.00010000.00001 000.00000001 HostMax: 172.16.15.254 10101100.00010000.00001 111.11111110 Hosts/Net: 2046 (Private Internet)
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago