How can I actually open port 123 on my CentOS server, so I can synchronise my server with another server's time?
I couldn't be able to open 123 port using google guides.
How can I actually open port 123 on my CentOS server, so I can synchronise my server with another server's time?
I couldn't be able to open 123 port using google guides.
In iptables
To open OUTBOUND
iptables -A OUTPUT -p udp --dport 123 -j ACCEPT
To open INBOUND
iptables -A INPUT -p udp --dport 123 -j ACCEPT