Re: Is natd the right tool?

2002-04-13 Thread Rogier R. Mulhuijzen
Two tips 1) did you set up the divert to natd in your ipfw rules? 2) if you do the dig on the machine where natd is running and the external IP is routed over lo0 locally, ipfw will not see the packets as incoming on the interface where the IP is bound. So that means they will not match the

Re: Is natd the right tool?

2002-04-12 Thread Matt Simerson
For starters, I don't use named. Furthermore, it wouldn't matter because this is for a cluster of load balanced name servers. There is a series of public interfaces (VIPs) that all of the boxes share. That series of Virtual addresses is on each real servers loopback interface. However, since

Is natd the right tool?

2002-04-11 Thread Matt Simerson
Natd is a very cool tool for doing stuff like redirecting connections from an external network to an internal one but I'm have a slightly different problem. I have a single host with one public interface: host - fxp0 = 192.168.7.251 Also on this same host is a bunch more IP's on the loopback

Re: Is natd the right tool?

2002-04-11 Thread Doug White
On Thu, 11 Apr 2002, Matt Simerson wrote: natd -n fxp0 -redirect_port udp 127.0.0.2:53 192.168.7.251:55 However, doing so simply get's me a connection refused when I send it a query like this: matt@matt: {102} % dig -p 55 @192.168.7.251 www.foo.com ; DiG 8.3 -p @192.168.7.251

RE: Is natd the right tool?

2002-04-11 Thread Asenchi
could you please not send emails to the list in html. thank you. asenchi. To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-hackers in the body of the message

Re: Is natd the right tool?

2002-04-11 Thread Matt Simerson
My apologies, I didn't realize the default format on my new client was rich text format. Matt On Thursday, April 11, 2002, at 01:17 PM, Asenchi wrote: could you please not send emails to the list in html. thank you. asenchi. To Unsubscribe: send mail to [EMAIL PROTECTED] with

Re: Is natd the right tool?

2002-04-11 Thread Matt Simerson
On Thursday, April 11, 2002, at 01:39 PM, Julian Elischer wrote: check out ipfw's 'fwd' command Cool, never realized that was there. So, I tried it: I recompiled my kernel after adding IPFIREWALL_FORWARD to it. Then: ipfw add fwd 127.0.0.2,53 udp from any to 192.168.7.251 55 ipfw add fwd

Re: Is natd the right tool?

2002-04-11 Thread Crist J. Clark
On Thu, Apr 11, 2002 at 09:24:24AM -0400, Matt Simerson wrote: Natd is a very cool tool for doing stuff like redirecting connections from an external network to an internal one but I'm have a slightly different problem. I have a single host with one public interface: host - fxp0