Re: How to configure two netcard for PostgreSQL?

From: "dailiming" <ldai(at)accunettech(dot)com>
To: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: "Peter Eisentraut" <peter_e(at)gmx(dot)net>, "Bruno Wolff III" <bruno(at)wolff(dot)to>, "Rudi Starcevic" <rudi(at)oasis(dot)net(dot)au>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: How to configure two netcard for PostgreSQL?
Date: 2003-03-31 05:28:02
Message-ID: 00c901c2f746$52ef6fb0$1f00a8c0@accunettech.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Thank you very much.
I successed.
But I have a question. Why do I set the single Ip address in pg_hba.conf that is failed?
Could you explain for me?
Thank your help.

----- Original Message -----
From: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "dailiming" <ldai(at)accunettech(dot)com>
Cc: "Peter Eisentraut" <peter_e(at)gmx(dot)net>; "Bruno Wolff III" <bruno(at)wolff(dot)to>; "Rudi Starcevic" <rudi(at)oasis(dot)net(dot)au>; <pgsql-sql(at)postgresql(dot)org>
Sent: Monday, March 31, 2003 12:41 PM
Subject: Re: [SQL] How to configure two netcard for PostgreSQL?

> "dailiming" <ldai(at)accunettech(dot)com> writes:
> > host all 192.168.0.10 255.255.255.0 trust
> > host all 192.168.1.10 255.255.255.0 trust
>
> Nonzeroes in the address where there are zeroes in the mask is a loser.
> Try
>
> host all 192.168.0.0 255.255.255.0 trust
> host all 192.168.1.0 255.255.255.0 trust
>
> Of course, you could replace both of these lines with
>
> host all 192.168.0.0 255.255.254.0 trust
>
> regards, tom lane
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Rajesh Kumar Mallah 2003-03-31 05:38:48 Re: Off topic : world database
Previous Message Tom Lane 2003-03-31 04:41:47 Re: How to configure two netcard for PostgreSQL?