Date: Fri, 11 Jun 2004 11:16:00 -0500 From: Ben Timby <asp@webexc.com> To: leon@trusc.net, freebsd-questions@freebsd.org Subject: Re: Routing question Message-ID: <40C9DAC0.9030001@webexc.com> In-Reply-To: <E1BYnlO-000LeI-IW@gladiator.trusc.net> References: <E1BYnlO-000LeI-IW@gladiator.trusc.net>
next in thread | previous in thread | raw e-mail | index | archive | help
Perhaps if you post more info, we can come up with creative solutions for you. My big question is why? AFAIK, you cannot have more than one default gateway, unless you are using netgraph to balance between network interfaces. However, you could NAT C & D to their respective "public" interfaces. If E is a real IP, then the NATed traffic should flow to that interface. I would suggest using pf, as it is a most excellent firewall package. Here is the section of a PF guide regarding NAT. http://www.openbsd.org/faq/pf/nat.html Your rules would look like this (these are from memory, so sanity check them): -- #define your interfaces as macros: A = "fxp0" B = "fxp1" C = "fxp2" D = "fxp3" E = "fxp4" #define your NAT translations using our macros: nat on $A from ($C:network) to any -> $A nat on $B from ($D:network) to any -> $B #define your filtering rules: ... -- However, you will find that route add will not allow multiple default routes. You must use another package to allow for that, or at least it is beyond my knowledge. Let me know if you figure it out, I would be very interested. Leon Botes wrote: > I have a box with 5 nics. > Cal them A,B,C,D,E. > A & B are different internet connections. > E is a connection to a mail server on a public /29 > C & D are connections for 2 differnet client networks. > > Is it possible to have all traffic coming in via C sent to a default gateway > on A's network and > all traffic coming in via D sent to a default gateway on B's network. > And secondly will both client networks be able to see the E/29? > > If so how? > > Thanks > Leon > > _______________________________________________ > 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?40C9DAC0.9030001>
