I'm having trouble getting postgres to allow remote access over the LAN. The 2 conf files are as follows...
#postrges.conf # - Connection Settings - .200 is where the server's IP listen_addresses = '192.168.0.200,localhost' port = 5432 ... #pg_hba.conf # IPv4 local connections: host all all 127.0.0.1/32 md5 # allow LAN connections only... host all all 192.168.0.0/255 md5 Whats wrong here? The postgres server won't even restart...