打开端口 123 以更改服务器时间

打开端口 123 以更改服务器时间

我怎样才能在我的 CentOS 服务器上实际打开端口 123,以便我可以将我的服务器与另一台服务器的时间同步?

我无法使用 Google 指南打开 123 端口。

答案1

iptables

开通出站

iptables -A OUTPUT -p udp --dport 123 -j ACCEPT

打开 INBOUND

iptables -A INPUT -p udp --dport 123 -j ACCEPT

相关内容