I'm having a problem with configuring my postgresql server. I've installed PostgreSQL 9.0.2 on slackware 13.1x64 and it runs fine but I can't add a IP that could connect to PostgreSQL remotely.
The logs show me this:
LOG: invalid IP mask "trust": Name or service not known
CONTEXT: line 83 of configuration file "/usr/local/pgsql-9.0.2/data/pg_hba.conf"
FATAL: could not load pg_hba.conf
And on that line I have:
host all all **.**.***.* trust
The ** is my real IP address. But PostgreSQL tells me I need to set ip mask ? What's that I'm doing wrong ?
Thanks in advance,
Me