How Can I Configure the NTP and DNS Servers for an ECS?

For Linux OSs

Take the NTP and DNS servers running SUSE as an example.

  1. Configure the NTP server for the ECS.

    1. Log in to the Linux ECS.

    2. Run the following command to switch to user root:

      sudo su -

    3. Run the following command to edit the ntp.conf configuration file:

      vim /etc/ntp.conf

    4. Add the following statement to configure the NTP server:

      server Domain name or IP address of the NTP server

      Example:

      If the IP address of the NTP server is 192.168.56.1, add the following statement:

      server 192.168.56.1

    5. Run the following command to start the NTP service upon system restart:

      service ntp restart

    6. Run the following command to check the status of the NTP server:

      service ntp status

      Note

      If you want to disable NTP, perform the following steps:

      1. Run the service ntp stop command to stop NTP.

      2. Run the systemctl disable ntp command to disable the function of automatically starting NTP upon ECS startup.

  2. Configure the DNS server for the ECS.

    1. Log in to the Linux ECS.

    2. Run the following command to switch to user root:

      sudo su -

    3. Run the following command to edit the resolv.conf configuration file:

      vi /etc/resolv.conf

    4. Add the following statement to configure the DNS server:

      nameserver = IP addresses of the DNS servers

      Example:

      If the IP addresses of the DNS servers are 8.8.8.8 and 4.4.4.4, add the following statements:

      nameserver = 8.8.8.8

      nameserver = 4.4.4.4

      Note

      The IP addresses of the DNS servers must be the same as those in the VPC subnet. Otherwise, the DNS modification cannot persistently take effect.

    5. Run the following command to restart the network:

      rcnetwork restart

      service network restart

      /etc/init.d/network restart

Windows

Take an ECS running Windows Server 2012 as an example.

  1. Log in to the Windows ECS as user Administrator.

  2. Enable the local area connection.

    1. In the lower right corner of the taskbar, right-click the network connection icon.

    2. Click Open Network and Sharing Center.

      **Figure 1** Open Network and Sharing Center

      Figure 1 Open Network and Sharing Center

    3. In the navigation pane on the left, click Change adapter settings.

  3. Configure the DNS server for the ECS.

    1. Double-click network connections.

    2. Click Properties in the lower left corner.

      **Figure 2** Local area connection

      Figure 2 Local area connection

    3. Select Internet Protocol Version 4 (TCP/IPv4) and click Properties.

      **Figure 3** Selecting a protocol type

      Figure 3 Selecting a protocol type

    4. Select Use the following DNS server addresses and set the IP addresses of the DNS servers.

      **Figure 4** Setting the IP addresses of the DNS servers

      Figure 4 Setting the IP addresses of the DNS servers

  4. Configure the NTP server for the ECS.

    1. Start the Run dialog box. Enter regedit and click OK.

    2. Modify the registry entries.

      • In HKEY_LOCAL_MACHINE > SYSTEM > CurrentControlSet > Services > W32Time > TimeProviders > NtpClient, set the value of Enabled to 1, indicating that the NTP client is used.

      • In HKEY_LOCAL_MACHINE > SYSTEM > CurrentControlSet > Services > W32Time > TimeProviders > NtpServer, set the value of Enabled to 0, indicating that the NTP server is stopped.

      • Choose HKEY_LOCAL_MACHINE > SYSTEM > CurrentControlSet > Services > W32Time > Parameters file and set the NtpServer data. Set the data of TYPE to NTP.

      • In HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services \ W32Time \ TimeProviders \ NtpClient, set the value of SpecialPollInterval to 60 and that of Base to Decimal, indicating the clock synchronization cycle is 60s.

      • In HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services \ W32Time \ config, set the values of MaxPosPhaseCorrection and MaxNegPhaseCorrection to ffffffff and that of Base to Hexadecimal.

    3. Open the Run dialog box, enter services.msc, and click OK. The Services window is displayed.

    4. View the service named Windows Time and set the Start Type to Automatic to synchronize time from the NTP server.

    5. Open the Run dialog box and run the following commands in sequence to restart the Windows Time service:

      net stop w32time

      net start w32time

    6. Manually change the time on the client to make it different from that on the NTP server. One minute later, check whether the time on the client is the same as that on the NTP server. If yes, the time is synchronized.