Question

Difficulty: MediumNTP Client and Server Operations and Configuration

A network administrator at an enterprise branch office is troubleshooting an unsynchronized NTP client on a Cisco router named Branch-R1. The router has IP reachability to an authoritative internal time server at IP address 10.50.1.1010.50.1.10, but security firewalls along the transit path strictly enforce access rules that permit management services only if they originate from Branch-R1's dedicated Loopback0 interface (10.255.1.110.255.1.1). Currently, NTP packets generated by the router are dropped by the firewall because they use the egress physical interface IP address as their source. Which global configuration command must be configured on Branch-R1 to force all outgoing NTP traffic to originate from the specified loopback interface?

  1. ntp source Loopback0Answer
  2. B
    ip helper-address 10.50.1.10
  3. C
    ntp peer 10.50.1.10
  4. D
    ntp master 16

Answer

The command 'ntp source Loopback0' forces the router to use the IP address of interface Loopback0 as the source IP address in all outgoing NTP packets.
The correct option specifies 'ntp source Loopback0'. In Cisco IOS, outgoing NTP packets by default derive their source IP address from the outbound interface used to reach the destination. When security appliances require management traffic to originate from a consistent logical interface (such as a loopback interface), the global configuration command 'ntp source <interface>' forces the router to place that interface's IP address into the source field of all generated NTP packets.

Step-by-Step Solution

1
Identify the operational requirement for NTP traffic
NTP packets must be sourced from Loopback0 (10.255.1.110.255.1.1) so they match firewall security rules.
By default, Cisco IOS uses the IP address of the egress interface facing the destination server as the packet source address.
2
Select the correct Cisco IOS CLI command to specify the NTP source interface
The global configuration command 'ntp source Loopback0' instructs the NTP process to always use Loopback0's IP address.
Configuring 'ntp source <interface>' guarantees consistent sourcing regardless of which physical interface forwards the traffic.

Key Concept

NTP Source Interface Configuration
Rate this question