1. 程式人生 > >postgresql配置連線引數,使得ipv4、ipv6網段通用

postgresql配置連線引數,使得ipv4、ipv6網段通用

以前為pgsql配置連線引數的時候:如果想設定所有網段所有使用者md5連線如下:

IPv4網段:

host  all  all   0.0.0.0/0  md5

ipv6網段:

host  all  all   ::/0  md5

自postgresql9.1釋出之後,在9.1release說明文件裡有這樣一段話:

Support the key word all in the host column of pg_hba.conf (Peter Eisentraut)

Previously people used 0.0.0.0/0 or ::/0 for this

這說明:

以上設定可合併為:host  all  all  all  md5 形式,這使得單一配置可支援不同網段,對我所在專案的一個應用幫助很大。