Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Jul 2005 09:49:38 +0200
From:      "Norbert Koch" <NKoch@demig.de>
To:        "Emil Khatib" <fenomenoxp2@gmail.com>, <freebsd-questions@freebsd.org>
Subject:   RE: Can't access to gmail (maybe a port problem with ipfw)
Message-ID:  <006501c58b6d$3ff14600$4801a8c0@ws-ew-3.W2KDEMIG>
In-Reply-To: <dd9992320507170347391ed46d@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
> Hi everybody. I'm trying to access gmail from my FreeBSD box (5.4).
> I'm usinf IPFW. The question is I can acces if I set ipfw to accept
> all from any to any, so I know there's a port that should be opened to
> access the main page of gmail. When the firewall is up (allowing only
> traffic through ports 21, 80 and above 1024) I can't even acces gmail
> main page (mozilla simply ignores the address I give it)

Post your firewall configuration. You should at least have a rule
to allow any tcp from your box to the world.
Here is an fragment from my home computer's firewall rules:

  ...
  pass tcp from any to any established	# allow established tcp connections
  pass ip from any to any frag		# allow fragmented segments
  pass tcp from me to any setup		# allow me to setup tcp connections
  pass udp from me to any keep-state	# allow me to setup udp-connections
  ...

This alone won't work, if you want your box to forward traffic
from other hosts in your local net.

Norbert



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?006501c58b6d$3ff14600$4801a8c0>