Re: routing problem

2008-10-20 Thread Daniel Anderson
Instead of giving you the obligatory "man pf.conf" reply, I will do one better and reference an old reply I posed to the list with a sample pf.conf where someone asked basically the same thing. I omitted the part that matters in this example conf, but explain what you need to insert to get it to

Re: 4.4 arriving in the U.S.

2008-10-14 Thread Daniel Anderson
Arrived northwest of Seattle, WA. Thanks! -- On Tuesday 14 October 2008 10:19:46 am Dave Anderson wrote: > Today's mail delivered the 4.4 CDs near Boston, Mass. > > Many thanks to the developers, > > Dave

Re: PF + nat + 2 C classes

2008-06-29 Thread Daniel Anderson
Example pf.conf here: http://marc.info/?l=openbsd-misc&m=120665186412690&w=2 The key is "route-to" and "reply-to" On Saturday 28 June 2008 07:29:35 pm Jose H. wrote: > Hi all, a little help needed with some networking and pf: > I have one public IP with forwards traffic to my LAN

Re: Routing on source

2008-06-24 Thread Daniel Anderson
The mechanism you seek is the route-to and reply-to. Kindly see this message for an example: http://marc.info/?l=openbsd-misc&m=120665186412690&w=2 As to the concern on redundancy, perhaps someone else will address it for you. --- On Tuesday 24 June 2008 08:29:08 pm Duncan Patton a

Re: Problems with 4.1 PHP5 modules

2008-04-25 Thread Daniel Anderson
issue. --- On Friday 25 April 2008 11:39:33 am you wrote: > At 11:28 AM 4/25/2008 -0700, Daniel Anderson wrote: > >Stupid question here, did you uncomment them in php.ini? > > Not really a stupid question, but I did - both manually & with phpxs. > Actually had an error when I

Re: Problems with 4.1 PHP5 modules

2008-04-25 Thread Daniel Anderson
Stupid question here, did you uncomment them in php.ini? --- On Friday 25 April 2008 10:58:25 am you wrote: > One of my development machine has been upgraded many times over the years, > of couse, .. now trying to setup a php test site for a new project (have >

Re: SSD drives: performance gain

2008-04-14 Thread Daniel Anderson
I am using a Memtech AT2515-2048 (2GB) drive with a Soekris 4801, and have been very happy. Boot is on-par with just about any ATA drive. I set it up for limited writes out of longevity concerns which I imagine are not well-founded in the case of SSD. It's a router..not a desktop, so my speed o

Re: Separate traffic go over certain interfaces gateways?

2008-03-27 Thread Daniel Anderson
Here is an excerpt from a pf.conf I have doing exactly what you're asking. Use this as a base. You will need to add more and adjust some to your setup, bittorrent_tcp_ports is obviously not defined here. And some of the options for the rules may not really be needed, but they remained after I se

Re: loadbalancing on OpeBsd

2008-03-20 Thread Daniel Anderson
I found myself in a similar situtation and just set all icmp to go out a single interface: pass in on $int_if route-to { ($dsl_2_if $dsl_2_gw) } proto { icmp } from any to any keep state And for incoming connections for ssh that go to a given interface I added these: pass in quick on $dsl_

Re: openbsd hosting services

2008-03-17 Thread Daniel Anderson
I suggest letting the OpenBSD donation page ( http://openbsd.org/donations.html ) be your first step in this process, since they've donated something to the project and it's always nice to reciprocate. Personally, I chose M5 Computer Security (U.S.-based) and have been very happy with the serv

Re: OT: Wireframe Puffy 3D model for Lego's

2008-03-09 Thread Daniel Anderson
If nobody responds to this with a quality file, I will gladly make a 2D version of it as an SVG for you and all of us. On Sunday 09 March 2008 03:29:49 pm Daniel Ouellet wrote: > Hi, > > Sorry about this off topic request. My Sun keep asking me to get a > "Wireframe P

Re: Apache box behind Openbsd

2008-01-08 Thread Daniel Anderson
Aside from missing pass, you seem to be using network notation on this rule, not sure why..but do this instead: rdr pass on $ext_if proto tcp to $ext_if port 80 -> 172.15.254.207 Assuming your $ext_if has one IP and you want that IP to go internal. If your $ext_if has multiple addresses, well t