Is it possible to run multiple NTP server instances on the same system? We're using CentOS for our NTP system and want to synchronize specific time depending on what interface the client comes in on. Thanks.
Asked
Active
Viewed 1,325 times
-1
-
5Even if you could, which I'm pretty sure the answer is "no", both would be referencing the same clock, so they *should* have the same time. All NTP communication is in UTC, so if you think they'll be in different timezones, that's not the case. – Chris S Apr 04 '12 at 13:08
1 Answers
1
You can not bind two processes (daemons) to the same socket (same IP/port). If you want to run two NTP instances, you can do this by binding each one to specific interface IP address.
As @Chris said, it is also useless to run two NTP daemons on the same host. The time is sent in UTC (GMT time).

Khaled
- 36,533
- 8
- 72
- 99