Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
7bcc2da0
Commit
7bcc2da0
authored
May 24, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up pg_hba.conf
parent
b2d7c58c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
src/backend/libpq/pg_hba.conf.sample
src/backend/libpq/pg_hba.conf.sample
+12
-12
No files found.
src/backend/libpq/pg_hba.conf.sample
View file @
7bcc2da0
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
#
#
# host DBNAME IP_ADDRESS ADDRESS_MASK USERAUTH [AUTH_ARGUMENT]
# host DBNAME IP_ADDRESS ADDRESS_MASK USERAUTH [AUTH_ARGUMENT]
#
#
# DBNAME is the name of a Postgre
s
database, or "all" to indicate all
# DBNAME is the name of a Postgre
SQL
database, or "all" to indicate all
# databases.
# databases.
#
#
# IP_ADDRESS and ADDRESS_MASK are a standard dotted decimal IP address and
# IP_ADDRESS and ADDRESS_MASK are a standard dotted decimal IP address and
...
@@ -48,25 +48,25 @@
...
@@ -48,25 +48,25 @@
#
#
# USERAUTH is a keyword indicating the method used to authenticate the
# USERAUTH is a keyword indicating the method used to authenticate the
# user, i.e. to determine that the principal is authorized to connect
# user, i.e. to determine that the principal is authorized to connect
# under the Postgre
s
username he supplies in his connection parameters.
# under the Postgre
SQL
username he supplies in his connection parameters.
#
#
# ident: Authentication is done by the ident server on the remote
# ident: Authentication is done by the ident server on the remote
# host, via the ident (RFC 1413) protocol. AUTH_ARGUMENT, if
# host, via the ident (RFC 1413) protocol. AUTH_ARGUMENT, if
# specified, is a map name to be found in the pg_ident.conf file.
# specified, is a map name to be found in the pg_ident.conf file.
# That table maps from ident usernames to Postgre
s
usernames. The
# That table maps from ident usernames to Postgre
SQL
usernames. The
# special map name "sameuser" indicates an implied map (not found
# special map name "sameuser" indicates an implied map (not found
# in pg_ident.conf) that maps every ident username to the identical
# in pg_ident.conf) that maps every ident username to the identical
# Postgre
s
username.
# Postgre
SQL
username.
#
#
# trust: No authentication is done. Trust that the user has the
# trust: No authentication is done. Trust that the user has the
# authority to use
r whatever username he says he does.
# authority to use
whatever username he specifies. Before
#
Before Postgres Version 6, all authentication was
this way.
#
PostgreSQL version 6, all authentication was done
this way.
#
#
# reject: Reject the connection.
# reject: Reject the connection.
#
#
# password: Authentication is done by matching a password supplied in clear
# password: Authentication is done by matching a password supplied in clear
# by the host. If AUTH_ARGUMENT is specified then the password
is
# by the host. If AUTH_ARGUMENT is specified then the password
#
compared with the user's entry in that file (in the $PGDATA
#
is
compared with the user's entry in that file (in the $PGDATA
# directory). See pg_passwd(1). If it is omitted then the
# directory). See pg_passwd(1). If it is omitted then the
# password is compared with the user's entry in the pg_shadow
# password is compared with the user's entry in the pg_shadow
# table.
# table.
...
@@ -90,9 +90,9 @@
...
@@ -90,9 +90,9 @@
#
#
# The format is the same as that of the "host" record type except that the
# The format is the same as that of the "host" record type except that the
# IP_ADDRESS and ADDRESS_MASK are omitted and the "ident", "krb4" and "krb5"
# IP_ADDRESS and ADDRESS_MASK are omitted and the "ident", "krb4" and "krb5"
# values of USERAUTH are no allowed.
# values of USERAUTH are no
t
allowed.
# For backwards compatibility, PostgreSQL also accepts pre-
V
ersion 6 records,
# For backwards compatibility, PostgreSQL also accepts pre-
v
ersion 6 records,
# which look like:
# which look like:
#
#
# all 127.0.0.1 0.0.0.0
# all 127.0.0.1 0.0.0.0
...
@@ -119,8 +119,8 @@
...
@@ -119,8 +119,8 @@
#host all 192.168.0.0 255.255.255.0 ident omicron
#host all 192.168.0.0 255.255.255.0 ident omicron
#
#
# The above would allow users from 192.168.0.x hosts to connect to any
# The above would allow users from 192.168.0.x hosts to connect to any
# database, but if
e.g.
Ident says the user is "bryanh" and he requests to
# database, but if Ident says the user is "bryanh" and he requests to
# connect as Postgre
s
user "guest1", the connection is only allowed if
# connect as Postgre
SQL
user "guest1", the connection is only allowed if
# there is an entry for map "omicron" in pg_ident.conf that says "bryanh" is
# there is an entry for map "omicron" in pg_ident.conf that says "bryanh" is
# allowed to connect as "guest1".
# allowed to connect as "guest1".
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment