Re: Postgres client Configuration - Mailing list pgsql-admin

From Kevin Grittner
Subject Re: Postgres client Configuration
Date
Msg-id 48DA40BB.EE98.0025.0@wicourts.gov
Whole thread Raw
In response to Postgres client Configuration  (Napolean Periathambi <Napolean.Periathambi@VSOFTCORP.COM>)
List pgsql-admin
>>> Napolean Periathambi <Napolean.Periathambi@VSOFTCORP.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

pgsql-admin by date:

Previous
From: Carol Walter
Date:
Subject: Re: Missing pg_clog files
Next
From: "BJ Taylor"
Date:
Subject: missing chunk number 0 for toast value