Uma explicação mais detalhada que pode ser útil a quem use como fonte de dados o postgresql/postgis:
The IPv6 addresses starting with fe80: are link-local addresses. They cannot be routed across different subnets or the internet. They are for communication between machines connected to the same LAN only. The link-local range is defined as fe80::/10. If you trust everybody on your local LAN then you could do host all all fe80::/10 trust If you don't trust everybody on your local LAN then you probably want to use username+password protection (utilizer esta): host all all fe80::/10 md5 When specifying md5 you are still using username+password protection, but the password is not transmitted in a readable format anymore. Since you're not trusting people on your local LAN you probably shouldn't send a snoopable password over the wire either. http://dba.stackexchange.com/questions/43608/postgres-connection-access-denied-on-ipv6-address -- View this message in context: http://osgeo-org.1560.x6.nabble.com/QGIS-PostGIS-abrir-o-mesmo-projecto-em-diferentes-maquinas-tp5130398p5131025.html Sent from the OSGeo Portuguese Local Chapter mailing list archive at Nabble.com. _______________________________________________ Portugal mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/portugal
