Re: PF rdr question

2009-09-23 Thread Ari Constancio
On Wed, Sep 23, 2009 at 5:59 PM, Matthew Young myoung24...@gmail.com wrote: Hello, Ive been trying to do redirection , this time with a very minimal procedure as follows. # cat /etc/pf.conf t_externa = re0 server = 208.99.249.95 rdr on $t_externa proto tcp from any to any port 80 -

Re: RDR question

2008-04-14 Thread Dorian Büttner
Monah Baki schrieb: rdr on $ext_if proto tcp from 192.168.2.0/24 to any port 80 - \ 127.0.0.1 port 5000 You changed the 'to'-part from 'to $ext_if' to 'to any', yes, but you also modified the 'rdr on' device to $ext_if. Why not leave it $int_if as before? Should work here?

RDR question

2008-04-13 Thread Monah Baki
Hi all, I'm running OpenBSD on a soekris box 4.3 current. sis0=192.168.3.32 sis1=192.168.2.1 I have a proxy server IP address 192.168.3.106 I want a rule to have all users on the .2 network to go thru the proxy. Tried the following in /etc/inetd.conf 127.0.0.1:5000 stream tcp nowait

Re: RDR question

2008-04-13 Thread Dorian Büttner
Monah Baki schrieb: rdr on $int_if proto tcp from $int_net to $ext_if port 80 - \ 127.0.0.1 port 5000 unless you host the unwanted sites on $ext_if, you may try to any instead and let us know?

Re: RDR question

2008-04-13 Thread Monah Baki
Hi, It did not work, I get a blank page on all URL's. Here's my pf.conf real basic. ext_if=sis0 int_if=sis1 #table spamd-white persist set skip on lo #scrub in nat-anchor ftp-proxy/* rdr-anchor ftp-proxy/* #rdr-anchor relayd/* nat on $ext_if from $int_if:network to any - $ext_if # rdr pass

Re: rdr question

2008-02-14 Thread Michael
Hi, Monah Baki schrieb: rdr pass on $ext_if proto tcp to port 8080 - 192.168.3.105 port 8080 rdr pass on x.x.x.x proto tcp to port 8080 - 192.168.3.106 port 8080 From outside my network if I enter in my browser proxy setting x.x.x.x 8080 which is the alias, I get redirected to the proxy

Re: rdr question

2005-07-27 Thread Mark Prins
Stuart Henderson scribbled on : --On 27 July 2005 00:27 +0200, GV wrote: In general I would like to have one static IP where more than one domains are registered and for each domain a different internal web server should serve the incoming requests! No, you need some kind of

rdr question

2005-07-26 Thread GV
Hi list, is it possible to have the following: rdr on $ext_if proto tcp from any to any port 80 - $server re-written as: rdr on $ext_if proto tcp from any to domain.com port 80 - $server where $server an internal web server and domain.com a specific domain name? In general I would like to

Re: rdr question

2005-07-26 Thread Stuart Henderson
--On 27 July 2005 00:27 +0200, GV wrote: is it possible to have the following: rdr on $ext_if proto tcp from any to any port 80 - $server re-written as: rdr on $ext_if proto tcp from any to domain.com port 80 - $server where $server an internal web server and domain.com a specific domain