From: | "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov> |
---|---|
To: | "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org>, "Napolean Periathambi" <Napolean(dot)Periathambi(at)VSOFTCORP(dot)COM> |
Subject: | Re: Postgres client Configuration |
Date: | 2008-09-24 18:29:32 |
Message-ID: | 48DA40BB.EE98.0025.0@wicourts.gov |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
>>> Napolean Periathambi <Napolean(dot)Periathambi(at)VSOFTCORP(dot)COM> wrote:
> Is there any ways to include wildcard in pg_hba.conf file to accept
all
> postgres clients on the network rather than specifying specific IP
addresses
> on this file?
# CIDR-ADDRESS specifies the set of hosts the record matches.
# It is made up of an IP address and a CIDR mask that is an integer
# (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that specifies
# the number of significant bits in the mask. Alternatively, you can
write
# an IP address and netmask in separate columns to specify the set of
hosts.
In other words, it says how many bits of the IP address need to match.
For example:
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all postgres ident sameuser
local cir all md5
# IPv4 local connections:
host cir all 127.0.0.1/32 md5
# IPv6 local connections:
host cir all ::1/128 md5
# Programmer/analyst network segment
host cir all 165.219.88.0/22 md5
# STEP network segment
host cir all 165.219.80.0/24 md5
# TECH network segment
host cir all 165.219.95.0/24 md5
-Kevin
From | Date | Subject | |
---|---|---|---|
Next Message | BJ Taylor | 2008-09-24 18:32:12 | missing chunk number 0 for toast value |
Previous Message | Carol Walter | 2008-09-24 18:09:42 | Re: Missing pg_clog files |