200-301 CCNA · Cisco · IP Services · Bank updated 2026-09-20
200-301 CCNA practice questions: IP Services
5 free questions from 7 on this area · answer and explanation for each · no sign-up
These 5 questions come from the IP Services section of our 200-301 CCNA bank (7 questions on this area, which carries 10% of the real exam). Every question is original, with the correct answer explained and linked to the source it is drawn from.
1/5 · IP Services · easy
An operations team is choosing between TFTP and FTP for copying configuration files and IOS images to and from network devices. Which statement correctly compares the two protocols?
ATFTP encrypts the transfer while FTP sends both the file and its credentials in the clear.
BFTP runs over UDP port 69 and TFTP over TCP port 21, making FTP faster but less reliable.
CTFTP authenticates the device with the enable secret, while FTP accepts anonymous connections as well.
DTFTP uses UDP port 69 without authentication; FTP uses TCP and requires a username and password.
Show answer & explanation
D is correct. Topic 4.9. RFC 1350 defines TFTP over UDP with the server listening on the well-known port 69, and the protocol carries no user authentication at all, which is why TFTP servers are usually opened only for the duration of a transfer. Cisco's file transfer guide describes FTP as a standard network protocol used to transfer files over a TCP-based network, requires a valid username and password for the remote server, and warns that FTP transfers data and credentials in plaintext and should not be used for sensitive information over untrusted networks; the client side needs TCP port 21 for control plus data ports. Devices store the credentials with ip ftp username and ip ftp password.
↗ Cisco 200-301 CCNA v1.1 Exam Topics — Section 4: IP Services
2/5 · IP Services
A branch router is configured as follows:
ip nat pool BRANCH 203.0.113.10 203.0.113.10 netmask 255.255.255.0
ip nat inside source list 7 pool BRANCH overload
access-list 7 permit 10.1.1.0 0.0.0.255
!
interface GigabitEthernet0/0
ip address 10.1.1.1 255.255.255.0
ip nat inside
interface GigabitEthernet0/1
ip address 203.0.113.2 255.255.255.0
ip nat outside
What does this configuration do for the 240 hosts in 10.1.1.0/24?
AEach inside host takes its own address from the pool for the length of a session and waits when it is empty.
BAll 240 of them are translated to the single address 203.0.113.10, with port numbers keeping the sessions apart.
CEach host receives a permanent one-to-one mapping that outside servers can open sessions toward.
DOnly traffic entering GigabitEthernet0/0 from the Internet is translated by this configuration.
Show answer & explanation
B is correct. Topic 4.1. Cisco documents the three pieces that have to line up: ip nat pool names the usable global addresses, ip nat inside source list ... pool ... overload translates the addresses matched by the access list, and the interfaces are marked with ip nat inside and ip nat outside. The guide explains the overload keyword as the one that allows multiple inside devices to be translated to the same valid IP address, which is port address translation: the inside local addresses are replaced by one inside global address and the translation table keeps the sessions apart by port. A pool whose first and last address are identical is the standard way of writing that in a pool-based configuration.
↗ Cisco 200-301 CCNA v1.1 Exam Topics — Section 4: IP Services
3/5 · IP Services
A remote site has no reachable external time source. The site router's software clock has already been set by hand, and the router now has to become the reference for the site's switches, which have to report themselves at stratum 4 once they are synchronized to it. Which command on the router produces that result?
Antp master 4
Bntp master 1
Cntp master 8
Dntp master 3
Show answer & explanation
D is correct. Topic 4.2. Cisco describes the stratum as how many NTP hops away a machine is from an authoritative time source: a stratum 1 time server has a radio or atomic clock directly attached to it, it then sends its time to a stratum 2 time server through NTP, and so on, so each device that takes its time from a server sits one stratum below that server. The ntp master [stratum] command configures the Cisco IOS software as an NTP master clock to which peers synchronize themselves when an external NTP source is not available; the stratum argument runs from 1 to 15 and defaults to 8, and the software clock must have been set from some source, including manual setting, before the command has any effect. Cisco also cautions that valid time sources can be easily overridden with this command, especially if a low stratum number is configured. A client association toward a remote source is configured with ntp server instead, and NTP runs over UDP port 123.
↗ Cisco 200-301 CCNA v1.1 Exam Topics — Section 4: IP Services
4/5 · IP Services
Clients in VLAN 30 never receive an address, while clients in VLAN 10 do. The DHCP server sits in VLAN 10 at 10.1.10.50. The Layer 3 switch has an SVI in each VLAN, routing between the VLANs works, and the SVI for VLAN 30 carries only an IP address. Which change makes DHCP work for VLAN 30?
AAdd ip helper-address 10.1.30.1 to the VLAN 10 SVI on the Layer 3 switch.
BAdd ip helper-address 10.1.10.50 to the VLAN 30 SVI on the Layer 3 switch.
CConfigure a default gateway on 10.1.10.50 pointing at the VLAN 30 SVI of the switch.
DEnable ip forward-protocol udp 67 globally on the Layer 3 switch.
Show answer & explanation
B is correct. Topic 4.6. Cisco defines a DHCP relay agent as a Layer 3 device that forwards DHCP packets between clients and servers, and explains that relay agents forward requests and replies when the client and server are not on the same physical subnet. The relay function is enabled with the ip helper-address command on the interface where the client broadcasts arrive. The documentation adds the detail that makes address selection work: the relay agent inserts the IP address of the interface containing the ip helper-address command into the gateway IP address (giaddr) field of the DHCP packet, which enables the DHCP server to determine which subnet should receive the offer and identify the appropriate address range.
↗ Cisco 200-301 CCNA v1.1 Exam Topics — Section 4: IP Services
5/5 · IP Services
A carrier sells a 200 Mbps service delivered on a 1 Gigabit Ethernet handoff, and anything the customer offers above the contracted figure is lost at the carrier edge. The customer would rather its own router held a short burst back for a few milliseconds and delivered it late than see it disappear. Which pair of per-hop behaviors names the customer's fix and the carrier's behavior?
AShaping on the customer router and policing at the carrier edge
BPolicing on the customer router and shaping at the carrier edge
CCongestion avoidance on the customer router and policing at the carrier edge
DRe-marking on the customer router and shaping at the carrier edge
Show answer & explanation
A is correct. Topic 4.7. Cisco's comparison of the two rate-limiting tools states that policing drops or re-marks excess packets over the committed rate and does not buffer, while shaping buffers and queues excess packets over the committed rate, so the result of traffic shaping is a smoothed packet output rate whereas policing propagates bursts. The guide lists the typical direction as outbound for shaping and inbound or outbound for policing, and names the tradeoff: shaping can introduce delay because of queuing, policing drops packets and throttles TCP windows. A shaper is described as a policer with a queue, which is the one-sentence version of the difference.
↗ Cisco 200-301 CCNA v1.1 Exam Topics — Section 4: IP Services
Other 200-301 CCNA areas
The same kind of free sample for every other section of the 200-301 CCNA bank:
Study IP Services with instant feedback
6 free questions · filter study mode by area and difficulty · error log with spaced repetition · no card, no dumps, no ads.
Create your free account →
ExamDeck is an independent study tool, not affiliated with, endorsed by, or sponsored by Cisco. 200-301 CCNA and related marks are trademarks of their respective owners, used for identification only. Exam facts checked against official Cisco materials (as of September 2026); always confirm current details with the vendor before booking.