Proper study guides for Avant-garde Cisco CCNA Cisco Certified Network Associate CCNA (v3.0) certified begins with Cisco 200-125 preparation products which designed to deliver the Precise 200-125 questions by making you pass the 200-125 test at your first time. Try the free 200-125 demo right now.

2021 Sep 200-125 vce

Q81. - (Topic 3) 

Refer to the exhibit. 


A network administrator is adding two new hosts to SwitchA. Which three values could be used for the configuration of these hosts? (Choose three.) 

A. host A IP address: 192.168.1.79 

B. host A IP address: 192.168.1.64 

C. host A default gateway: 192.168.1.78 

D. host B IP address: 192.168.1.128 

E. host B default gateway: 192.168.1.129 

F. host B IP address: 192.168.1.190 

Answer: A,C,F 


Q82. - (Topic 1) 

Refer to exhibit: 


Which destination addresses will be used by Host A to send data to Host C? (Choose two.) 

A. the IP address of Switch 1 

B. the MAC address of Switch 1 

C. the IP address of Host C D. the MAC address of Host C 

E. the IP address of the router's E0 interface 

F. the MAC address of the router's E0 interface 

Answer: C,F 


Q83. - (Topic 2) 

Why will a switch never learn a broadcast address? 

A. Broadcasts only use network layer addressing. 

B. A broadcast frame is never forwarded by a switch. 

C. A broadcast address will never be the source address of a frame. 

D. Broadcast addresses use an incorrect format for the switching table. 

E. Broadcast frames are never sent to switches. 

Answer: C 


Q84. - (Topic 2) 

Which command can be used from a PC to verify the connectivity between hosts that connect through a switch in the same LAN? 

A. ping address 

B. tracert address 

C. traceroute address 

D. arp address 

Answer: A 


Q85. CORRECT TEXT - (Topic 7) 

A network associate is configuring a router for the weaver company to provide internet access. The ISP has provided the company six public IP addresses of 198.18.184.105 

198.18.184.110. The company has 14 hosts that need to access the internet simultaneously. The hosts in the company LAN have been assigned private space addresses in the range of 192.168.100.17 – 192.168.100.30. 


Answer: The company has 14 hosts that need to access the internet simultaneously but we just have 6 public IP addresses from 198.18.184.105 to 198.18.184.110/29. 

Therefore we have to use NAT overload (or PAT) 

Double click on the Weaver router to open it 

Router>enable Router#configure terminal 

First you should change the router's name to Weaver 

Router(config)#hostname Weaver 

Create a NAT pool of global addresses to be allocated with their netmask. 

Weaver(config)#ip nat pool mypool 198.18.184.105 198.18.184.110 netmask 255.255.255.248 

Create a standard access control list that permits the addresses that are to be translated 

Weaver(config)#access-list 1 permit 192.168.100.16 0.0.0.15 

Establish dynamic source translation, specifying the access list that was defined in the prior step 

Weaver(config)#ip nat inside source list 1 pool mypool overload 

This command translates all source addresses that pass access list 1, which means a source address from 192.168.100.17 to 192.168.100.30, into an address from the pool named mypool (the pool contains addresses from 198.18.184.105 to 198.18.184.110) 

Overload keyword allows to map multiple IP addresses to a single registered IP address (many-to-one) by using different ports 

The question said that appropriate interfaces have been configured for NAT inside and NAT outside statements. 

This is how to configure the NAT inside and NAT outside, just for your understanding: 

Weaver(config)#interface fa0/0 

Weaver(config-if)#ip nat inside 

Weaver(config-if)#exit 

Weaver(config)#interface s0/0 

Weaver(config-if)#ip nat outside 

Weaver(config-if)#end 

Finally, we should save all your work with the following command: 

Weaver#copy running-config startup-config 

Check your configuration by going to "Host for testing" and type: 

C :\>ping 192.0.2.114 

The ping should work well and you will be replied from 192.0.2.114 


200-125 answers

Most recent 200-125 download:

Q86. - (Topic 7) 

A network administrator is troubleshooting the OSPF configuration of routers R1 and R2. The routers cannot establish an adjacency relationship on their common Ethernet link. 


The graphic shows the output of the show ip ospf interface e0 command for routers R1 and R2. Based on the information in the graphic, what is the cause of this problem? 

A. The OSPF area is not configured properly. 

B. The priority on R1 should be set higher. 

C. The cost on R1 should be set higher. 

D. The hello and dead timers are not configured properly. 

E. A backup designated router needs to be added to the network. 

F. The OSPF process ID numbers must match. 

Answer: D 


Q87. - (Topic 4) 

Refer to the exhibit. 


A network associate has configured OSPF with the command: 

City(config-router)# network 192.168.12.64 0.0.0.63 area 0 

After completing the configuration, the associate discovers that not all the interfaces are participating in OSPF. Which three of the interfaces shown in the exhibit will participate in OSPF according to this configuration statement? (Choose three.) 

A. FastEthernet0 /0 

B. FastEthernet0 /1 

C. Serial0/0 

D. Serial0/1.102 

E. Serial0/1.103 

F. Serial0/1.104 

Answer: B,C,D 


Q88. - (Topic 8) 

Which Layer 2 protocol encapsulation type supports synchronous and asynchronous circuits and has built-in security mechanisms? 

A. HDLC 

B. PPP 

C. X.25 

D. Frame Relay 

Answer: B 


Q89. - (Topic 8) 

What occurs on a Frame Relay network when the CIR is exceeded? 

A. All TCP traffic is marked discard eligible. 

B. All UDP traffic is marked discard eligible and a BECN is sent. 

C. All TCP traffic is marked discard eligible and a BECN is sent. 

D. All traffic exceeding the CIR is marked discard eligible. 

Answer: D 


Q90. CORRECT TEXT - (Topic 7) 




Answer: Corp1#conf t 

Corp1(config)# access-list 128 permit tcp host 192.168.240.1 host 172.22.141.26 eq www 

Corp1(config)# access-list 128 deny tcp any host 172.22.141.26 eq www 

Corp1(config)# access-list 128 permit ip any any 

Corp1(config)#int fa0/1 

Corp1(config-if)#ip access-group 128 out 

Corp1(config-if)#end 

Corp1#copy run startup-config