NTP Configuration

NTP Configuration

NTP is crucial for synchronizing the time across all devices within a network. NTP plays a pivotal role in ensuring that all network components maintain accurate time settings which is essential for activities like logging, security protocols and various network services.

Adding an NTP Server:
Use the following command to add a new NTP server:
config ntp add <server_ip>
Example: config ntp add 192.168.1.100

Removing an NTP Server:
To remove a configured NTP server:
config ntp del <server_ip>
Example: config ntp del 192.168.1.100

Viewing NTP Status:
Use this command to view the current NTP peers and their status:
show ntp

    • Related Articles

    • Where can I get the Configuration guide for SONiC

      Attached document provides the details about the Configuration of SONiC
    • Management Interface Configuration (SONiC)

      Configure the management interface (eth0) for network administration in SONiC. Default Configuration: By default, eth0 uses DHCP to dynamically obtain an IP address from a DHCP server. Static IP Configuration: Command Line: sudo config interface ip ...
    • BGP Basic Configuration Commands

      1. Enable BGP Activates BGP on the device with a specified Autonomous System number. Command: router bgp <AS-number> 2. Configure BGP Router ID Sets a unique identifier for the BGP router, usually an IP address to ensure consistent identification. ...
    • IP Helper Configuration on Broadcom SoNiC

      1. To Display IP helper global information Command: show ip forward-protocol 2. To Displays IP helper server addresses configured on interface Command: show ip helper-address [ <iface> ] 3.To Display IP helper packet counters and statistics on ...
    • How to do Management interface Configuration?

      At root mode Enabling DHCP dhclient eth0 Manual ip configuration config interface ip add eth0 ipaddress/subnetmask gateway Example:-config interface ip add eth0 192.168.1.1/24 192.168.1.100