Cisco Certified Network Associate Version: Demo [ Total Questions: 10] Web: www.dumpscafe.com Email: support@dumpscafe.com Cisco 200-301 IMPORTANT NOTICE Feedback We have developed quality product and state-of-art service to ensure our customers interest. If you have any suggestions, please feel free to contact us at feedback@dumpscafe.com Support If you have any questions about our product, please provide the following items: exam code screenshot of the question login id/email please contact us at and our technical experts will provide support within 24 hours. support@dumpscafe.com Copyright The product of each order has its own encryption code, so you should use it independently. Any unauthorized changes will inflict legal punishment. We reserve the right of final explanation for this statement. Cisco - 200-301 Pass Exam 1 of 12 Verified Solution - 100% Result Exam Topic Breakdown Exam Topic Number of Questions Topic 5 : Simulations / Lab 2 Topic 1 : Exam Pool A 2 Topic 3 : Exam Pool C 2 Topic 2 : Exam Pool B 2 Topic 4 : Exam Pool D (NEW) 2 TOTAL 10 Cisco - 200-301 Pass Exam 2 of 12 Verified Solution - 100% Result Topic 5, Simulations / Lab Question #:1 - (Exam Topic 5) All physical cabling is in place. A company plans to deploy 32 new sites. The sites will utilize both IPv4 and IPv6 networks. 1 . Subnet 172.25.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 Sw1O1 • Assign the last usable IP address to e0/0 on Sw102 2. Subnet to meet the subnet requirements and maximize the number of hosts c 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 eO/O on swi02 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. Cisco - 200-301 Pass Exam 3 of 12 Verified Solution - 100% Result • 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. See the Explanation for the solution. 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 Cisco - 200-301 Pass Exam 4 of 12 Verified Solution - 100% Result 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 Question #:2 - (Exam Topic 5) Configure IPv4 and IPv6 connectivity between two routers. For IPv4, use a /28 network from the 192.168.1.0/24 private range. For IPv6, use the first /64 subnet from the 2001:0db8:aaaa::/48 subnet. 1. Using Ethernet0/1 on routers R1 and R2, configure the next usable/28 from the 192.168.1.0/24 range. The network 192.168.1.0/28 is unavailable. 2. For the IPv4 /28 subnet, router R1 must be configured with the first usable host address. 3. For the IPv4 /28 subnet, router R2 must be configured with the last usable host address. 4. For the IPv6 /64 subnet, configure the routers with the IP addressing provided from the topology. 5. A ping must work between the routers on the IPv4 and IPv6 address ranges. Cisco - 200-301 Pass Exam 5 of 12 Verified Solution - 100% Result See the Explanation below. Explanation Answer as below configuration: on R1 config terminal ipv6 unicast-routing inter eth0/1 ip addre 192.168.1.1 255.255.255.240 ipv6 addre 2001:db8:aaaa::1/64 not shut end copy running start on R2 Cisco - 200-301 Pass Exam 6 of 12 Verified Solution - 100% Result config terminal ipv6 unicast-routing inter eth0/1 ip address 192.168.1.14 255.255.255.240 ipv6 address 2001:db8:aaaa::2/64 not shut end copy running start --------------------- for test from R1 ping ipv6 2001:db8:aaaa::1 for test from R2 ping ipv6 2001:db8:aaaa::2 Cisco - 200-301 Pass Exam 7 of 12 Verified Solution - 100% Result A. B. C. D. E. A. Topic 1, Exam Pool A Question #:3 - (Exam Topic 1) Refer to the exhibit. Which two commands, when configured on router R1, fulfill these requirements? (Choose two.) Packets towards the entire network 2001:db8:2::/64 must be forwarded through router R2. Packets toward host 2001:db8:23::14 preferably must be forwarded through R3. Ipv6 route 2001:db8:23::/128 fd00:12::2 Ipv6 route 2001:db8:23::14/128 fd00:13::3 Ipv6 route 2001:db8:23::14/64 fd00:12::2 Ipv6 route 2001:db8:23::/64 fd00:12::2 Ipv6 route 2001:db8:23::14/64 fd00:12::2 200 Answer: D E Question #:4 - (Exam Topic 1) Which spanning-tree enhancement avoids the learning and listening states and immediately places ports in the forwarding state? Cisco - 200-301 Pass Exam 8 of 12 Verified Solution - 100% Result A. B. C. D. BPDUfilter PortFast Backbonefast BPDUguard Answer: B Explanation PortFast Spanning Tree Portfast causes layer 2 switch interfaces to enter forwarding state immediately, bypassing the listening and learning states. It should be used on ports connected directly to end hosts like servers or workstations. Note: If portfast isn’t enabled, DHCP timeouts can occur while STP converges, causing more problems. https://skminhaj.wordpress.com/2015/03/04/spanning-tree-stp-rstp-mst-enhancements/ Cisco - 200-301 Pass Exam 9 of 12 Verified Solution - 100% Result A. B. C. D. E. Topic 3, Exam Pool C Question #:5 - (Exam Topic 3) Drag and drop the REST API call methods for HTTP from the left onto the actions they perform on the right Not all methods are used. see the answer below Explanation Chart, bar chart Description automatically generated Question #:6 - (Exam Topic 3) Which two network actions occur within the data plane? (Choose two.) Add or remove an 802.1Q trunking header. Make a configuration change from an incoming NETCONF RPC. Run routing protocols. Match the destination MAC address to the MAC address table. Reply to an incoming ICMP echo request. Cisco - 200-301 Pass Exam 10 of 12 Verified Solution - 100% Result Answer: B D Cisco - 200-301 Pass Exam 11 of 12 Verified Solution - 100% Result A. B. C. D. E. A. B. C. D. Topic 2, Exam Pool B Question #:7 - (Exam Topic 2) Refer to the exhibit. Which two prefixes are included in this routing table entry? (Choose two.) 192.168.1.17 192.168.1.61 192.168.1.64 192.168.1.127 192.168.1.254 Answer: B C Question #:8 - (Exam Topic 2) Using direct sequence spread spectrum, which three 2.4-GHz channels are used to limit collisions? 1,6,11 1,5,10 1,2,3 5,6,7 Answer: A Cisco - 200-301 Pass Exam 12 of 12 Verified Solution - 100% Result A. B. C. D. E. A. B. C. D. Topic 4, Exam Pool D (NEW) Question #:9 - (Exam Topic 4) What are two disadvantages of a full-mesh topology? (Choose two.) It needs a high MTU between sites. It has a high implementation cost. It must have point-to-point communication. It requires complex configuration. It works only with BGP between sites. Answer: B D Question #:10 - (Exam Topic 4) When the LAG configuration is updated on a Cisco WLC which additional task must be performed when changes are complete? Flush all MAC addresses from the WLC Re-associate the WLC with the access point. Re-enable the WLC interfaces Reboot the WLC Answer: C About dumpscafe.com dumpscafe.com was founded in 2007. We provide latest & high quality IT / Business Certification Training Exam Questions, Study Guides, Practice Tests. We help you pass any IT / Business Certification Exams with 100% Pass Guaranteed or Full Refund. Especially Cisco, CompTIA, Citrix, EMC, HP, Oracle, VMware, Juniper, Check Point, LPI, Nortel, EXIN and so on. View list of all certification exams: All vendors We prepare state-of-the art practice tests for certification exams. You can reach us at any of the email addresses listed below. Sales: sales@dumpscafe.com Feedback: feedback@dumpscafe.com Support: support@dumpscafe.com Any problems about IT certification or our products, You can write us back and we will get back to you within 24 hours.