All of lore.kernel.org
 help / color / mirror / Atom feed
* IP Issue
@ 2003-07-14 11:34 Paulo Andre
  0 siblings, 0 replies; 6+ messages in thread
From: Paulo Andre @ 2003-07-14 11:34 UTC (permalink / raw)
  To: netfilter

I have a firewall with 6 network cards, now 2 of the cards have IP address'es 
within a range that is subnetted  (DMZa and DMZb). When I try to http browse 
a server on DMZa then I get and error unless I ping it first.
I have heard from someone that linux has a arp problem with IP's within the 
same range, is this true or someone know what the issue could be?

Paulo


^ permalink raw reply	[flat|nested] 6+ messages in thread

* IP issue
@ 2005-11-23 20:58 Thamara Wanigatunga
  2005-11-23 21:08 ` Sandro Dentella
  2005-11-23 21:46 ` John A. Sullivan III
  0 siblings, 2 replies; 6+ messages in thread
From: Thamara Wanigatunga @ 2005-11-23 20:58 UTC (permalink / raw)
  To: netfilter

Dear Gurus,

I need to have 4 web servers behind a iptables packet
filter, could i achive this through alised ips. Or
what could you recomend. Please help ..

Regards



	
		
__________________________________ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: IP issue
  2005-11-23 20:58 IP issue Thamara Wanigatunga
@ 2005-11-23 21:08 ` Sandro Dentella
  2005-11-23 21:46 ` John A. Sullivan III
  1 sibling, 0 replies; 6+ messages in thread
From: Sandro Dentella @ 2005-11-23 21:08 UTC (permalink / raw)
  To: netfilter

On Wed, Nov 23, 2005 at 12:58:59PM -0800, Thamara Wanigatunga wrote:
> Dear Gurus,
> 
> I need to have 4 web servers behind a iptables packet
> filter, could i achive this through alised ips. Or
> what could you recomend. Please help ..


I normally do that with proxy arp. I think I read about it on LARTC Howto
some years ago. It works just fine. I don't know if it's the best way. 

So no need to use alias, just two interfaces w/ same IP, a little bit of
routing info and just iptables to forward what you need/like.

sandro
*:-)


-- 
Sandro Dentella  *:-)
e-mail: sandro@e-den.it 
http://www.tksql.org                    TkSQL Home page - My GPL work


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: IP issue
  2005-11-23 20:58 IP issue Thamara Wanigatunga
  2005-11-23 21:08 ` Sandro Dentella
@ 2005-11-23 21:46 ` John A. Sullivan III
  2005-11-24  0:48   ` Edmundo Carmona
  2005-11-24  7:22   ` Bhavatosh
  1 sibling, 2 replies; 6+ messages in thread
From: John A. Sullivan III @ 2005-11-23 21:46 UTC (permalink / raw)
  To: Thamara Wanigatunga; +Cc: netfilter

On Wed, 2005-11-23 at 12:58 -0800, Thamara Wanigatunga wrote:
> Dear Gurus,
> 
> I need to have 4 web servers behind a iptables packet
> filter, could i achive this through alised ips. Or
> what could you recomend. Please help ..
> 
<snip>
I assume you want each to have a unique public IP and perform NAT on the
iptables firewall.  If that is the case, One typically adds the NAT
rule(s), the access control rules in the FORWARD chain and binds the IP
address to the public interface of the iptables firewall using iproute2.
There is a slide show training session about using iproute2 in the
training section of http://iscs.sourceforge.net
Hope this helps - John
-- 
John A. Sullivan III
Open Source Development Corporation
+1 207-985-7880
jsullivan@opensourcedevel.com

Financially sustainable open source development
http://www.opensourcedevel.com



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: IP issue
  2005-11-23 21:46 ` John A. Sullivan III
@ 2005-11-24  0:48   ` Edmundo Carmona
  2005-11-24  7:22   ` Bhavatosh
  1 sibling, 0 replies; 6+ messages in thread
From: Edmundo Carmona @ 2005-11-24  0:48 UTC (permalink / raw)
  To: netfilter

Well.. maybe this can work:

You could set apache on the iptables box, and set four separate
virtual hosts to simply rewrite the request to forward them to the
four inner servers.

Check Apache's ProxyPass.

On 11/23/05, John A. Sullivan III <jsullivan@opensourcedevel.com> wrote:
> On Wed, 2005-11-23 at 12:58 -0800, Thamara Wanigatunga wrote:
> > Dear Gurus,
> >
> > I need to have 4 web servers behind a iptables packet
> > filter, could i achive this through alised ips. Or
> > what could you recomend. Please help ..
> >
> <snip>
> I assume you want each to have a unique public IP and perform NAT on the
> iptables firewall.  If that is the case, One typically adds the NAT
> rule(s), the access control rules in the FORWARD chain and binds the IP
> address to the public interface of the iptables firewall using iproute2.
> There is a slide show training session about using iproute2 in the
> training section of http://iscs.sourceforge.net
> Hope this helps - John
> --
> John A. Sullivan III
> Open Source Development Corporation
> +1 207-985-7880
> jsullivan@opensourcedevel.com
>
> Financially sustainable open source development
> http://www.opensourcedevel.com
>
>
>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: IP issue
  2005-11-23 21:46 ` John A. Sullivan III
  2005-11-24  0:48   ` Edmundo Carmona
@ 2005-11-24  7:22   ` Bhavatosh
  1 sibling, 0 replies; 6+ messages in thread
From: Bhavatosh @ 2005-11-24  7:22 UTC (permalink / raw)
  To: John A. Sullivan III; +Cc: nnampoothiri, netfilter

On Wed, 2005-11-23 at 16:46 -0500, John A. Sullivan III wrote:
> On Wed, 2005-11-23 at 12:58 -0800, Thamara Wanigatunga wrote:
> > Dear Gurus,
> > 
> > I need to have 4 web servers behind a iptables packet
> > filter, could i achive this through alised ips. Or
> > what could you recomend. Please help ..
> > 
> <snip>
> I assume you want each to have a unique public IP and perform NAT on the
> iptables firewall.  If that is the case, One typically adds the NAT
> rule(s), the access control rules in the FORWARD chain and binds the IP
> address to the public interface of the iptables firewall using iproute2.
> There is a slide show training session about using iproute2 in the
> training section of http://iscs.sourceforge.net
> Hope this helps - John

You can use the reverse proxy functionality of squid also.

With that create the acceleration services for all the web servers in
reverse proxy.

Regards,
Bhavatosh




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-11-24  7:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-23 20:58 IP issue Thamara Wanigatunga
2005-11-23 21:08 ` Sandro Dentella
2005-11-23 21:46 ` John A. Sullivan III
2005-11-24  0:48   ` Edmundo Carmona
2005-11-24  7:22   ` Bhavatosh
  -- strict thread matches above, loose matches on Subject: below --
2003-07-14 11:34 IP Issue Paulo Andre

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.