SIMULATION -
Configure your system so that it is an NTP client of server.domain11.example.com
SIMULATION -
Configure your system so that it is an NTP client of server.domain11.example.com
To configure your system to be an NTP client of server.domain11.example.com, follow these steps: 1. Install the NTP client software (chrony) using your package manager with the command: `yum install chrony`. 2. Edit the configuration file for chrony located at `/etc/chrony.conf` and add the line: `server server.domain11.example.com`. 3. Save the file and exit the editor using the commands `:wq`. 4. Enable and start the chrony service with the command: `systemctl enable --now chronyd`. 5. Verify the NTP sources with the command: `chronyc sources`. This will ensure your system synchronizes its time with server.domain11.example.com properly.
yum install chrony* vim /etc/chrony.conf server server.domain11.example.com :wq systemctl enable --now chronyd chronyc sources