Date: Mon, 27 Feb 2006 02:33:32 -0600 From: Scott Sipe <cscotts@mindspring.com> To: Frank Staals <frankstaals@gmx.net> Cc: questions@FreeBSD.org Subject: Re: Redirecting Traffic with PF Message-ID: <45F3558C-0EC8-4F4C-8162-FF7E3AB2948A@mindspring.com> In-Reply-To: <43FF68DF.4050709@gmx.net> References: <43FF68DF.4050709@gmx.net>
next in thread | previous in thread | raw e-mail | index | archive | help
Well, I don't use PF on FreeBSD (only on OpenBSD--and am no expert by any means) but I would write that rule as rdr pass on $extif inet proto udp from any to any port 27902 -> 192.168.2.11 port 27902 the difference being the addition of the "pass" keyword. IF you have a block, then allow ruleset in PF (allowing in only known good traffic) then you need to allow traffic on port 27902. alternatively you could add another line pass on any proto udp port 27902 keep state you do NOT need to specify $intif on the rdr line. you can also use the utility pftop (which is in the ports) tree to monitor livetime what's going on. Similiar to doing "pfctl -ss" Scott On Feb 24, 2006, at 2:13 PM, Frank Staals wrote: > Hey, > > I have an FreeBSD server/firewall running 5-Stable with PF. I want > to redirect all udp traffic on port 27902 from the internet to a > computer in my network. I used this rule but I have some problem > with it: sometimes connections on that port are refused and I can't > connect with other players ( it's for a online game ) : > > rdr on $extif inet proto udp from any port 27902 -> 192.168.2.11 > port 27902 > > I think the problem might have something to do with the different > network interfaces since the traffic is comming in on $extif and > has to go to an computer connected to $intif ? And how can I do > that ? Can I change it to: > > rdr on $extif inet proto udp from any port 27902 -> $intif > 192.168.2.11 port 27902 > > ? Or what do I have to do to fix it. > > Thanks in advance, > > -- > -Frank Staals > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions- > unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?45F3558C-0EC8-4F4C-8162-FF7E3AB2948A>