Question

How to allow access to POA database from additional location by IP?

Answer

Manually edit /etc/sysconfig/iptables.

Append the new IP before the line

-A INPUT -p tcp --dport 5432 -j DROP

the following way:

-A INPUT -s <IP>/32 -p tcp --dport 5432 -j ACCEPT

Internal content